diff options
author | peter <peter@FreeBSD.org> | 1999-01-17 19:02:39 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1999-01-17 19:02:39 +0000 |
commit | 64db241b95161d68dd95c03720a8c495e5082cd6 (patch) | |
tree | a85d28434f14824c640e8fa5a786ebe45475198e /sys/conf | |
parent | f507f3d7b082acfd36928029399991f5dfa12c9a (diff) | |
download | FreeBSD-src-64db241b95161d68dd95c03720a8c495e5082cd6.zip FreeBSD-src-64db241b95161d68dd95c03720a8c495e5082cd6.tar.gz |
LKM kernel support becomes optional on "options LKM". (Bear in mind
that the default kernel is now ELF and cannot load these LKM's).
Diffstat (limited to 'sys/conf')
-rw-r--r-- | sys/conf/files | 2 | ||||
-rw-r--r-- | sys/conf/options | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/sys/conf/files b/sys/conf/files index afc336a..795f6f8 100644 --- a/sys/conf/files +++ b/sys/conf/files @@ -276,7 +276,7 @@ kern/kern_exec.c standard kern/kern_exit.c standard kern/kern_fork.c standard kern/kern_ktrace.c standard -kern/kern_lkm.c standard +kern/kern_lkm.c optional lkm kern/kern_lock.c standard kern/kern_lockf.c standard kern/kern_malloc.c standard diff --git a/sys/conf/options b/sys/conf/options index 5dd760c..6089840 100644 --- a/sys/conf/options +++ b/sys/conf/options @@ -1,4 +1,4 @@ -# $Id: options,v 1.118 1999/01/14 03:30:48 kjc Exp $ +# $Id: options,v 1.119 1999/01/15 10:00:10 bde Exp $ # # On the handling of kernel options # @@ -329,3 +329,6 @@ USBVERBOSE opt_usb.h # Vinum options VINUMDEBUG opt_vinum.h + +# Include LKM compatability module +LKM |