minix/tools/chrootmake.sh

14 lines
289 B
Bash
Raw Normal View History

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 || 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
cd /usr || exit 1
cd /usr/src || exit 1
make clean
2005-04-21 16:53:53 +02:00
exit 0