2005-04-21 16:53:53 +02:00
|
|
|
#!/bin/sh
|
|
|
|
export PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin
|
|
|
|
cd /usr/src || exit 1
|
|
|
|
make world install || exit 1
|
|
|
|
cd tools || exit 1
|
2005-06-17 18:28:36 +02:00
|
|
|
rm revision
|
2005-08-12 14:34:56 +02:00
|
|
|
rm /boot/image/*
|
2005-05-03 10:54:36 +02:00
|
|
|
make hdboot || exit 1
|
|
|
|
cp ../boot/boot /boot/boot || exit 1
|
2005-08-30 19:11:36 +02:00
|
|
|
make clean
|
|
|
|
make image_small || exit 1
|
|
|
|
cp image_small /boot || exit 1
|
2005-05-03 17:37:34 +02:00
|
|
|
cd /usr/src || exit 1
|
|
|
|
make clean
|
2005-08-15 11:42:40 +02:00
|
|
|
# Let man find the manpages
|
|
|
|
makewhatis /usr/man
|
|
|
|
makewhatis /usr/local/man
|
2005-04-21 16:53:53 +02:00
|
|
|
exit 0
|
|
|
|
|