diff options
| author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2009-09-25 22:45:59 +0000 |
|---|---|---|
| committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2009-09-25 22:45:59 +0000 |
| commit | 0fbc5fbedf3eeaac0575646816c8f9cf0e937861 (patch) | |
| tree | 394fcfe01b613c0b5b5edbfc414a17c73481ad5d /sys/modules | |
| parent | 0bb2e5de607991a2c9d5ed9e27956ddd8d60fb35 (diff) | |
| parent | ebb2b0f28aff46e1e7413fe370156c4a4a1d0874 (diff) | |
Notes
Diffstat (limited to 'sys/modules')
| -rw-r--r-- | sys/modules/Makefile | 5 | ||||
| -rw-r--r-- | sys/modules/procfs/Makefile | 1 | ||||
| -rw-r--r-- | sys/modules/x86bios/Makefile | 10 | ||||
| -rw-r--r-- | sys/modules/x86emu/Makefile | 8 |
4 files changed, 15 insertions, 9 deletions
diff --git a/sys/modules/Makefile b/sys/modules/Makefile index 8f37b61954f4d..49d88600d1a61 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -298,7 +298,7 @@ SUBDIR= ${_3dfx} \ wlan_xauth \ ${_wpi} \ ${_wpifw} \ - x86emu \ + ${_x86bios} \ ${_xe} \ xfs \ xl \ @@ -456,6 +456,7 @@ _padlock= padlock _s3= s3 _twa= twa _vesa= vesa +_x86bios= x86bios .elif ${MACHINE} == "pc98" _canbepm= canbepm _canbus= canbus @@ -528,6 +529,7 @@ _padlock= padlock .endif _pccard= pccard _rdma= rdma +_s3= s3 _safe= safe _scsi_low= scsi_low _smbfs= smbfs @@ -538,6 +540,7 @@ _sppp= sppp _tmpfs= tmpfs _twa= twa _vesa= vesa +_x86bios= x86bios _wi= wi _wpi= wpi _wpifw= wpifw diff --git a/sys/modules/procfs/Makefile b/sys/modules/procfs/Makefile index 6c840edcfc041..c3b36337f02e8 100644 --- a/sys/modules/procfs/Makefile +++ b/sys/modules/procfs/Makefile @@ -13,6 +13,7 @@ SRCS+= procfs_ioctl.c SRCS+= procfs_map.c SRCS+= procfs_mem.c SRCS+= procfs_note.c +SRCS+= procfs_osrel.c SRCS+= procfs_regs.c SRCS+= procfs_rlimit.c SRCS+= procfs_status.c diff --git a/sys/modules/x86bios/Makefile b/sys/modules/x86bios/Makefile new file mode 100644 index 0000000000000..8b5fa302a78f4 --- /dev/null +++ b/sys/modules/x86bios/Makefile @@ -0,0 +1,10 @@ +# $FreeBSD$ + +KMOD= x86bios +SRCS= opt_x86bios.h + +.PATH: ${.CURDIR}/../../contrib/x86emu +.PATH: ${.CURDIR}/../../compat/x86bios +SRCS+= x86bios.c x86bios_alloc.c x86emu.c x86emu_util.c + +.include <bsd.kmod.mk> diff --git a/sys/modules/x86emu/Makefile b/sys/modules/x86emu/Makefile deleted file mode 100644 index 3991d6c70d056..0000000000000 --- a/sys/modules/x86emu/Makefile +++ /dev/null @@ -1,8 +0,0 @@ -# $FreeBSD$ - -.PATH: ${.CURDIR}/../../contrib/x86emu - -KMOD= x86emu -SRCS= x86emu.c x86emu_util.c - -.include <bsd.kmod.mk> |
