diff options
author | wollman <wollman@FreeBSD.org> | 1994-09-09 22:03:51 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1994-09-09 22:03:51 +0000 |
commit | ded5569beec4c60cf02c4c8bffe3f111b275e24d (patch) | |
tree | 400aaa1b31332bf9dbc84f3307c9fcf16fee2a5d /sys/conf | |
parent | 6c402d3fa0eba03240729d5f6445b1d073c6efce (diff) | |
download | FreeBSD-src-ded5569beec4c60cf02c4c8bffe3f111b275e24d.zip FreeBSD-src-ded5569beec4c60cf02c4c8bffe3f111b275e24d.tar.gz |
Don't include options MULTICAST or MROUTING in generic kernels. MULTICAST
has no effect now, and MROUTING should never be defined by default.
(Eventually the code should be dynamically loadable.)
Also, allow for Pentium CPUs in GENERICBT kernels.
Add an `install' rule to Makefile.i386, which looks like this:
mv /kernel /kernel.old
install -c -m 555 -o root -g root -fschg kernel /
I'd like comments on whether or not you think it's a good idea to have
the kernel be immutable by default; I'm happy either way.
CVS:
Diffstat (limited to 'sys/conf')
-rw-r--r-- | sys/conf/Makefile.i386 | 6 | ||||
-rw-r--r-- | sys/conf/Makefile.powerpc | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/sys/conf/Makefile.i386 b/sys/conf/Makefile.i386 index 2f53b9f..21ef4b4 100644 --- a/sys/conf/Makefile.i386 +++ b/sys/conf/Makefile.i386 @@ -1,6 +1,6 @@ # Copyright 1990 W. Jolitz # from: @(#)Makefile.i386 7.1 5/10/91 -# $Id: Makefile.i386,v 1.34 1994/09/05 19:09:15 jkh Exp $ +# $Id: Makefile.i386,v 1.35 1994/09/05 19:10:01 jkh Exp $ # # Makefile for FreeBSD # @@ -172,6 +172,10 @@ links: tags: @echo "see $S/kern/Makefile for tags" +install: + mv /kernel /kernel.old + install -c -m 555 -o root -g wheel -fschg kernel / + ioconf.o: ioconf.c $S/sys/param.h machine/pte.h $S/sys/buf.h \ ${I386}/isa/isa_device.h ${I386}/isa/isa.h ${I386}/isa/icu.h ${CC} -c ${CFLAGS} ioconf.c diff --git a/sys/conf/Makefile.powerpc b/sys/conf/Makefile.powerpc index 2f53b9f..21ef4b4 100644 --- a/sys/conf/Makefile.powerpc +++ b/sys/conf/Makefile.powerpc @@ -1,6 +1,6 @@ # Copyright 1990 W. Jolitz # from: @(#)Makefile.i386 7.1 5/10/91 -# $Id: Makefile.i386,v 1.34 1994/09/05 19:09:15 jkh Exp $ +# $Id: Makefile.i386,v 1.35 1994/09/05 19:10:01 jkh Exp $ # # Makefile for FreeBSD # @@ -172,6 +172,10 @@ links: tags: @echo "see $S/kern/Makefile for tags" +install: + mv /kernel /kernel.old + install -c -m 555 -o root -g wheel -fschg kernel / + ioconf.o: ioconf.c $S/sys/param.h machine/pte.h $S/sys/buf.h \ ${I386}/isa/isa_device.h ${I386}/isa/isa.h ${I386}/isa/icu.h ${CC} -c ${CFLAGS} ioconf.c |