From owner-cvs-sys Tue Apr 30 21:58:50 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id VAA14428 for cvs-sys-outgoing; Tue, 30 Apr 1996 21:58:50 -0700 (PDT) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.7.3/8.7.3) with SMTP id VAA14421 Tue, 30 Apr 1996 21:58:41 -0700 (PDT) Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.12/8.6.9) id OAA08188; Wed, 1 May 1996 14:56:11 +1000 Date: Wed, 1 May 1996 14:56:11 +1000 From: Bruce Evans Message-Id: <199605010456.OAA08188@godzilla.zeta.org.au> To: bde@freefall.freebsd.org, peter@spinner.DIALix.COM Subject: Re: cvs commit: src/sys/i386/conf LINT options.i386 Cc: CVS-committers@freefall.freebsd.org, cvs-all@freefall.freebsd.org, cvs-sys@freefall.freebsd.org Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >> Modified: sys/i386/conf LINT options.i386 >> Log: >> Removed nonexistent option "LINUX" (what's that :-). >> >> Revision Changes Path >> 1.252 +1 -2 src/sys/i386/conf/LINT >> 1.12 +1 -2 src/sys/i386/conf/options.i386 >No!!!! Put it back!!! >$ grep linux sys/i386/files.i386 I somehow missed LINT/Makefile changing and LINT/linux*.o not getting built. They remained identical to the old versions so my regression tests passed :-]. >It (like "IBCS2") statically links the emulator into the kernel so you >dont have to modload it (I dont build any LKM's anymore on development >systems as I've been burned too many times!) opt_linux.h and `#if[def] LINUX' aren't used, and probably can't be used without breaking the lkm'ability. opt_ibcs2.h and `#if[def] IBCS2' aren't used either. Just as well. How about putting unusable options in opt_dontuse.h and obsolete options in opt_bogus.h? The latter could be checked to warn people to stop using things like DODUMP. Bruce