minix/tools/chrootmake.sh
Ben Gras 5415e8280f More polishing to the boot and release process. Highlights:
. Less dependency on scripts to be executable (they're in cvs)
	. issue.install is the /etc/issue that goes on an install CD
	  for instructions (but not on the installed system)
	. /usr/src goes on the CD uncompressed
2005-05-03 15:37:34 +00:00

14 lines
289 B
Bash
Executable file

#!/bin/sh
export PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin
cd /usr || exit 1
cd /usr/src || exit 1
make world install || exit 1
cd tools || exit 1
make hdboot || exit 1
cp ../boot/boot /boot/boot || exit 1
cd /usr || exit 1
cd /usr/src || exit 1
make clean
exit 0