In message <[EMAIL PROTECTED]> 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 [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message