Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 07 Sep 2000 22:35:08 -0600
From:      Warner Losh <imp@village.org>
To:        The Hermit Hacker <scrappy@hub.org>
Cc:        freebsd-current@FreeBSD.ORG
Subject:   Re: docs on how to upgraded boot loader ... 
Message-ID:  <200009080435.WAA52280@harmony.village.org>
In-Reply-To: Your message of "Fri, 08 Sep 2000 01:06:07 -0300." <Pine.BSF.4.21.0009080104270.493-100000@thelab.hub.org> 
References:  <Pine.BSF.4.21.0009080104270.493-100000@thelab.hub.org>  

next in thread | previous in thread | raw e-mail | index | archive | help
In message <Pine.BSF.4.21.0009080104270.493-100000@thelab.hub.org> The Hermit Hacker writes:
: How do I upgrade it 'with the new kernel', as the UPDATING file
: suggests?  I've looked at the man pages for loader, and it doesn't suggest
: anything ... help?

cd /usr/src
make buildworld
make buildkernel
make installkernel
cd sys
make install
cd ..
			Optionally reboot in single user mode
cd /usr/src
make installworld

Or if you like taking chances, and with the fixes I just committed:
# assume that /usr/obj exists from prior run
cd /usr/src/lib/libstand
make depend && make all		# add install here w/o my fixes
cd ../../sys
make depend && make all install
cd i386/conf
config FOO
cd ../../compile/FOO
make depend && make all install
<reboot>

But we've had enough changes in sys recently that you'll need new
libkvm utilities, so you might as well do the first series of
commands.

Warner



To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-current" in the body of the message




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