Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 28 Nov 2003 01:57:17 +0100
From:      Mark Weinem <mark.weinem@uni-duisburg.de>
To:        freebsd-questions@freebsd.org
Subject:   Re: Novice needs advice building new kernel: UPG 4.7-RELEASE  ---> 4.9-RELEASE
Message-ID:  <20031128005717.GC4502@pandora.plagegeister.de>
In-Reply-To: <200311232008.25845.ecrist@adtechintegrated.com>
References:  <OEEMKOCDHDPMBKFFEDHFOECNCHAA.jbogari@msn.com> <200311232008.25845.ecrist@adtechintegrated.com>

next in thread | previous in thread | raw e-mail | index | archive | help
On Sun, 23 Nov 2003, Eric F Crist wrote:

> Here's what works for me:
>[...] 
> #cvsup -g -L2 /root/cvs-supfile

and then:
 
 # mergemaster -p
 # cd /usr/obj
 # chflags -R noschg *
 # rm -rf *


> #cd /usr/src
> #make clean
> #make world

Should be:

 # cd /usr/src
 # make -j4 buildworld 


> #config GENERIC
> #cd ../../compile/GENERIC 
> #make
> #make depend 
> #make install

Should be:

 # make kernel KERNCONF=GENERIC


Continue with:
 
 # shutdown now
 # fsck -p
 # mount -u /
 # mount -a -t ufs
 # swapon -a
 # cd /usr/src
 # make installworld
 # (Backup of /etc !!!)
 # mergemaster -svia
 # mergemaster -vr
 # fastboot

Finished!


Read about the "official" way to upgrade here:

	/usr/share/doc/en_US.ISO8859-1/books/handbook/makeworld.html

	http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html


Ciao, Mark Weinem



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20031128005717.GC4502>