From owner-freebsd-current@FreeBSD.ORG Thu Feb 10 19:49:13 2005 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3103C16A4CE for ; Thu, 10 Feb 2005 19:49:13 +0000 (GMT) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id CBAC343D41 for ; Thu, 10 Feb 2005 19:49:12 +0000 (GMT) (envelope-from swhetzel@gmail.com) Received: by wproxy.gmail.com with SMTP id 58so1347147wri for ; Thu, 10 Feb 2005 11:48:36 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:references; b=amm3egzARYXiMrW6Nz/v2wXajEbpXMLzOvj/B7O28gfwGs4PyX49f6rFsI0Bfbr+Ql7FOrksnO3MIP3besz49bJlWw+X+YW5FugthVnIvGLXKfooUBLhwm+/FH3Lp/Spn54uffj1bkojIp6STbRtdwwlJpJmyuIaamL89UzjTRk= Received: by 10.54.57.8 with SMTP id f8mr344593wra; Thu, 10 Feb 2005 11:48:36 -0800 (PST) Received: by 10.54.29.8 with HTTP; Thu, 10 Feb 2005 11:48:35 -0800 (PST) Message-ID: <790a9fff05021011487e1724a5@mail.gmail.com> Date: Thu, 10 Feb 2005 13:48:35 -0600 From: Scot Hetzel To: Jiawei Ye In-Reply-To: Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: cc: freebsd-current@freebsd.org Subject: Re: -current config(8) problem X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Scot Hetzel List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Feb 2005 19:49:13 -0000 On Fri, 11 Feb 2005 03:21:21 +0800, Jiawei Ye wrote: > When trying to compile the kernel to day, I get this weird message: > root@chihiro:/usr/src# make kernel > > -------------------------------------------------------------- > >>> Kernel build for CHIHIRO started on Fri Feb 11 03:19:47 CST 2005 > -------------------------------------------------------------- > ===> CHIHIRO > mkdir -p /usr/obj/usr/src/sys > > -------------------------------------------------------------- > >>> stage 1: configuring the kernel > -------------------------------------------------------------- > cd /usr/src/sys/i386/conf; > PATH=/usr/obj/usr/src/i386/legacy/usr/sbin:/usr/obj/usr/src/i386/legacy/usr/bin:/usr/obj/usr/src/i386/legacy/usr/games:/usr/obj/usr/src/i386/usr/sbin:/usr/obj/usr/src/i386/usr/bin:/usr/obj/usr/src/i386/usr/games:/sbin:/bin:/usr/sbin:/usr/bin > config -d /usr/obj/usr/src/sys/CHIHIRO > /usr/src/sys/i386/conf/CHIHIRO > ERROR: version of config(8) does not match kernel! > config version = 600001, version required = 600000 > > Make sure that /usr/src/usr.sbin/config is in sync > with your /usr/src/sys and install a new config binary > before trying this again. > > If running the new config fails check your config > file against the GENERIC or LINT config files for > changes in config syntax, or option/device naming > conventions > Did you do a "make buildworld" before your "make kernel"? If you did, then do as the error messages says above: cd /usr/src/usr.sbin/config make obj make make install cd /usr/src/ make buildkernel If this fails, try re-cvsuping your sources and try a new buildworld, buildkernel. Scot