An upgrade that went wrong

You'll probably need to set an IP address with ifconfig(8), a default gateway with route(8) and /etc/resolv.conf must contain a valid DNS server.

For example:
Code:
ifconfig rl0 192.168.1.44 netmask 255.255.255.0
route add default 192.168.1.1
echo nameserver 192.168.1.1 > /etc/resolv.conf

Or if you have a DHCP server on the network you can use dhclient(8):
# dhclient rl0
 
Ok, I solved this by creating a resolv.conf under /src. So I have downloaded all the sources for 8.2 to /mnt/usr/src.

In order to rebuild everything, is this simply a matter of linking /usr/src to /mnt/usr/src?

Or is there another way?
 
It might even build from there but I've never tried to use an alternate location for the sources. Setting a symlink is probably the easiest solution.
 
DESTDIR is probably needed because the real 'root' is mounted under /mnt/. OBJDIR shouldn't really matter but it does need a place to write and the livecd probably has a read-only /usr/.
 
Back
Top