2005-04-21 16:53:53 +02:00
|
|
|
#!/bin/sh
|
|
|
|
export PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin
|
2005-04-22 18:16:23 +02:00
|
|
|
cd /usr || exit 1
|
2005-04-21 16:53:53 +02:00
|
|
|
cd /usr/src || exit 1
|
|
|
|
make world install || exit 1
|
|
|
|
cd tools || exit 1
|
2005-05-03 10:54:36 +02:00
|
|
|
make hdboot || exit 1
|
|
|
|
cp ../boot/boot /boot/boot || exit 1
|
2005-04-22 18:16:23 +02:00
|
|
|
cd /usr || exit 1
|
2005-05-03 17:37:34 +02:00
|
|
|
cd /usr/src || exit 1
|
|
|
|
make clean
|
2005-04-21 16:53:53 +02:00
|
|
|
exit 0
|
|
|
|
|