From owner-freebsd-questions@FreeBSD.ORG Sat Dec 25 12:38:10 2010 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F0EDA1065672 for ; Sat, 25 Dec 2010 12:38:09 +0000 (UTC) (envelope-from spamrefuse@yahoo.com) Received: from web33303.mail.mud.yahoo.com (web33303.mail.mud.yahoo.com [68.142.206.118]) by mx1.freebsd.org (Postfix) with SMTP id 8AA5B8FC14 for ; Sat, 25 Dec 2010 12:38:09 +0000 (UTC) Received: (qmail 22145 invoked by uid 60001); 25 Dec 2010 12:38:08 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1293280688; bh=HBF1tmM2imHwCq43CcH8DiXMplU0SztrIStVHO9n4Kw=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type; b=AcwfW55ykLJjqIgH+JVKjtDBKen4bNJ9JGSZhCubhEvBnHz5P2uAlInjEf1Q4fYI9BF3n1hw6HNvyjCzQiAZHQS2m55vhNH9kVIAcsjRMZ/zlDY3wawc4PYC4yTEv7cTwRDqkRx+fgCKN5HdV2O47VlRL0KS1GtZCBqzIACMsDQ= DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type; b=O67zOwDslHmG43une/fnZjv0flsYCjHQjSC/GPi609qrrkijrxLW+v/hNWj3LbAd3/ts0nUn0D7boAks60DrJllJGmb+62JL0xji1Y0Zhk3PCIdwPg7EwdT7lzlw+4Xm2pIPLPdpG2hslpZcGiT6u8R964BQklXylp6gaTgVNxA=; Message-ID: <876362.21296.qm@web33303.mail.mud.yahoo.com> X-YMail-OSG: DM4DM0oVM1m0Bhh9TOL9DnCJGIyhkUZROijADmb7giLLUaN bJwqgXOr.Y00K3giVHpcZSVlsiLjVXxjRSZFkfA4l1.LA0V3O.FyKLAvtZdv fZrdarMa1hksYE0v9TYfETQlz2QVFxX8FVYvFrsFv0cf_XB_Perh6mRZDAl5 L4K9rP74gAi5XdeBisq7n.CDmIe4j39Ho6lAQdpY7h3x9syS2EI60Ud8DkPK c75eQRl4SwfMCoBn22vDeNq2Sqy05tuDYSht99eVjfNdC3n2rCt2qAF488S_ wjX.8t9GtrKJB5_LXMOGZd6JEcYMiqEoG7hfyFA7J4_ElOjSPD2L.XfkwLsZ .fKTk9RGZZUYKAa45BiOWrrT20z30BqTY.yc2Tfxn1ZXL5BGW7Bx_Qo.CYfT E38LIHXcpPJ.O Received: from [111.118.62.73] by web33303.mail.mud.yahoo.com via HTTP; Sat, 25 Dec 2010 04:38:08 PST X-Mailer: YahooMailRC/553 YahooMailWebService/0.8.107.285259 Date: Sat, 25 Dec 2010 04:38:08 -0800 (PST) From: Rob To: FreeBSD questions MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: kernel config file according to config(5): inconsistent ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Dec 2010 12:38:10 -0000 Hi, I read the guidelines in the man pages of config(5) on how to make a customized kernel config file: nooption name [, name [...]] nooptions name [, name [...]] Remove the specified kernel options from the list of previously defined options. This directive can be used to cancel the effects of option or options directives in files included using include. So I put following in my MYKERNEL config file: include GENERIC nocpu I486_CPU nocpu I586_CPU ident MYKERNEL nomakeoptions DEBUG nooptions MD_ROOT nooptions NFSCLIENT , NFSSERVER , NFSLOCKD , NFS_ROOT nooptions MSDOSFS , CD9660 nooptions PROCFS , PSEUDOFS The comma separated items seemed to cause an error when I do the buildkernel. If I remove the commas and make a 'nooptions' per item, then it is OK. Something seems to be inconsistent here, right? Same inconsistency for "nodevices" with the syntax in the manpages and the real config file.... Rob.