summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authormdodd <mdodd@FreeBSD.org>2003-03-29 15:20:45 +0000
committermdodd <mdodd@FreeBSD.org>2003-03-29 15:20:45 +0000
commit6e4ae437d30dbbdb7422f941075751b1883598f8 (patch)
tree4e02a01590004714d34667d1f3ea84e14fb481cf /sys
parent32c9a8b0bdd8b9e940a8a785201551710c4524bc (diff)
downloadFreeBSD-src-6e4ae437d30dbbdb7422f941075751b1883598f8.zip
FreeBSD-src-6e4ae437d30dbbdb7422f941075751b1883598f8.tar.gz
Add module infrastructure for 'vpd' and 'smbios' and move 'smbios'
to new home.
Diffstat (limited to 'sys')
-rw-r--r--sys/modules/Makefile2
-rw-r--r--sys/modules/bios/Makefile6
-rw-r--r--sys/modules/bios/smapi/Makefile (renamed from sys/modules/smapi/Makefile)3
-rw-r--r--sys/modules/bios/smbios/Makefile10
-rw-r--r--sys/modules/bios/vpd/Makefile10
5 files changed, 29 insertions, 2 deletions
diff --git a/sys/modules/Makefile b/sys/modules/Makefile
index 6fbae27..6a337af 100644
--- a/sys/modules/Makefile
+++ b/sys/modules/Makefile
@@ -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"
diff --git a/sys/modules/bios/Makefile b/sys/modules/bios/Makefile
new file mode 100644
index 0000000..d150806
--- /dev/null
+++ b/sys/modules/bios/Makefile
@@ -0,0 +1,6 @@
+# $FreeBSD$
+#
+
+SUBDIR= smapi smbios vpd
+
+.include <bsd.subdir.mk>
diff --git a/sys/modules/smapi/Makefile b/sys/modules/bios/smapi/Makefile
index 3e2d77c..30c9058 100644
--- a/sys/modules/smapi/Makefile
+++ b/sys/modules/bios/smapi/Makefile
@@ -1,6 +1,7 @@
# $FreeBSD$
+#
-.PATH: ${.CURDIR}/../../i386/bios
+.PATH: ${.CURDIR}/../../../i386/bios
KMOD= smapi
SRCS= smapi.c smapi_bios.S \
diff --git a/sys/modules/bios/smbios/Makefile b/sys/modules/bios/smbios/Makefile
new file mode 100644
index 0000000..40df8e8
--- /dev/null
+++ b/sys/modules/bios/smbios/Makefile
@@ -0,0 +1,10 @@
+# $FreeBSD$
+#
+
+.PATH: ${.CURDIR}/../../../i386/bios
+
+KMOD= smbios
+SRCS= smbios.c \
+ bus_if.h device_if.h
+
+.include <bsd.kmod.mk>
diff --git a/sys/modules/bios/vpd/Makefile b/sys/modules/bios/vpd/Makefile
new file mode 100644
index 0000000..d1dd8f1
--- /dev/null
+++ b/sys/modules/bios/vpd/Makefile
@@ -0,0 +1,10 @@
+# $FreeBSD$
+#
+
+.PATH: ${.CURDIR}/../../../i386/bios
+
+KMOD= vpd
+SRCS= vpd.c \
+ bus_if.h device_if.h
+
+.include <bsd.kmod.mk>
OpenPOWER on IntegriCloud