Add module infrastructure for 'vpd' and 'smbios' and move 'smbios'
to new home.
This commit is contained in:
parent
4586cf9c9f
commit
396a11166e
@ -204,6 +204,7 @@ SUBDIR+=3dfx \
|
||||
SUBDIR+=aac \
|
||||
acpi \
|
||||
asr \
|
||||
bios \
|
||||
cardbus \
|
||||
cbb \
|
||||
ciss \
|
||||
@ -213,7 +214,6 @@ SUBDIR+=aac \
|
||||
iir \
|
||||
mly \
|
||||
s3 \
|
||||
smapi \
|
||||
vesa
|
||||
|
||||
.elif ${MACHINE} == "pc98"
|
||||
|
6
sys/modules/bios/Makefile
Normal file
6
sys/modules/bios/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
SUBDIR= smapi smbios vpd
|
||||
|
||||
.include <bsd.subdir.mk>
|
@ -1,6 +1,7 @@
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
.PATH: ${.CURDIR}/../../i386/bios
|
||||
.PATH: ${.CURDIR}/../../../i386/bios
|
||||
|
||||
KMOD= smapi
|
||||
SRCS= smapi.c smapi_bios.S \
|
10
sys/modules/bios/smbios/Makefile
Normal file
10
sys/modules/bios/smbios/Makefile
Normal file
@ -0,0 +1,10 @@
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
.PATH: ${.CURDIR}/../../../i386/bios
|
||||
|
||||
KMOD= smbios
|
||||
SRCS= smbios.c \
|
||||
bus_if.h device_if.h
|
||||
|
||||
.include <bsd.kmod.mk>
|
10
sys/modules/bios/vpd/Makefile
Normal file
10
sys/modules/bios/vpd/Makefile
Normal file
@ -0,0 +1,10 @@
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
.PATH: ${.CURDIR}/../../../i386/bios
|
||||
|
||||
KMOD= vpd
|
||||
SRCS= vpd.c \
|
||||
bus_if.h device_if.h
|
||||
|
||||
.include <bsd.kmod.mk>
|
Loading…
Reference in New Issue
Block a user