From owner-freebsd-questions@FreeBSD.ORG Tue Feb 28 11:47:24 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D498616A420 for ; Tue, 28 Feb 2006 11:47:24 +0000 (GMT) (envelope-from keramida@ceid.upatras.gr) Received: from igloo.linux.gr (igloo.linux.gr [62.1.205.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9EDD343D5F for ; Tue, 28 Feb 2006 11:47:19 +0000 (GMT) (envelope-from keramida@ceid.upatras.gr) Received: from flame.pc (aris.bedc.ondsl.gr [62.103.39.226]) (authenticated bits=128) by igloo.linux.gr (8.13.5/8.13.5/Debian-3) with ESMTP id k1SBkpjA006711 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Tue, 28 Feb 2006 13:47:06 +0200 Received: from flame.pc (flame [127.0.0.1]) by flame.pc (8.13.4/8.13.4) with ESMTP id k1SBkIpE001557; Tue, 28 Feb 2006 13:46:18 +0200 (EET) (envelope-from keramida@ceid.upatras.gr) Received: (from keramida@localhost) by flame.pc (8.13.4/8.13.4/Submit) id k1SBkHoQ001556; Tue, 28 Feb 2006 13:46:17 +0200 (EET) (envelope-from keramida@ceid.upatras.gr) Date: Tue, 28 Feb 2006 13:46:17 +0200 From: Giorgos Keramidas To: Kristian Vaaf Message-ID: <20060228114617.GB1471@flame.pc> References: <7.0.1.0.2.20060221103409.021a8808@broadpark.no> <43FAFBDC.2000403@dial.pipex.com> <200602210922.38445.duncan.fbsd@gmail.com> <7.0.1.0.2.20060228121217.022172c0@broadpark.no> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <7.0.1.0.2.20060228121217.022172c0@broadpark.no> X-Hellug-MailScanner: Found to be clean X-Hellug-MailScanner-SpamCheck: not spam, SpamAssassin (score=-3.378, required 5, autolearn=not spam, ALL_TRUSTED -1.80, AWL 0.82, BAYES_00 -2.60, DNS_FROM_RFC_ABUSE 0.20) X-Hellug-MailScanner-From: keramida@ceid.upatras.gr Cc: freebsd-questions@freebsd.org, "Donald J. O'Neill" Subject: Re: Haven't been able to make world in about a year 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: Tue, 28 Feb 2006 11:47:24 -0000 On 2006-02-28 12:15, Kristian Vaaf wrote: > >Your buildworld sequence appears to be a little lacking - either in the > >detail you gave, or because some things are missing. > >The buildworld sequence I us is: > >=========================== > > (I use the alternate step 10 when I run the sequence) > > > >1)Script /home/script/buildworld/bw-?date run? > >2)cd /usr/obj pwd > >3)chflags -R noschg * > >4)rm -rf * > >5)cd /usr/src pwd make cleandir make cleandir > >6)make buildworld && make buildkernel KERNCONF=customconfname > >7)make installkernel KERNCONF=customconfname > >8)exit > >9)shutdown now > >10) to accept default location of sh > > > >alternate step 10 > >a) shutdown -r now > >b) at boot menu <6> > >c) boot -s > >d) fsck -p > >e) mount -u / > >f) mount -a -t ufs > >g) swapon -a > >h) cd /usr/src > >i)adjkerntz -i > > > >11) script /home/script/buildworld/iw-?date run" > >12) cd /usr/src pwd > >13) mergemaster -p > >14) make installworld > >15) mergemaster -i ?install everything? > >16) exit > >17)shutdown -r now > >=============================== > > > >This should help a bit. > > Hello Don! > Thank you for some good help. > > My make.conf only had some use.perl stuff. > I added your flags. > > Also I've revised my sequence: > > cvsup -g -L 2 /etc/cvsupfile \ > > && cd /usr/obj \ > && chflags -R noschg * \ > && rm -rf * \ > > && cd /usr/src ; make clean \ > && make buildworld \ > && make buildkernel KERNCONF=NINJA \ > && make installkernel KERNCONF=NINJA \ > && make installworld \ > && mergemaster \ > > And am now ready to give it another go :) Until you are satisfied that everything works without any problems at all, please don't use scripts to run the builds. For instance, your script above lacks a call to ``mergemaster -p'' before the ``make buildworld'' step, which may be necessary.