minix/tools/chrootmake.sh
Ben Gras aa3932eb8b Added 'xxl' binsizes size for x.
Leave sh and make at normal size for 'big'.
Call binsizes normal after creating release.
2006-03-03 12:44:22 +00:00

24 lines
568 B
Bash
Executable file

#!/bin/sh
export PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin
cd /usr/src || exit 1
make etcfiles
su bin -c 'make world install' || exit 1
cd tools || exit 1
rm revision
rm /boot/image/*
make install || exit 1
cp ../boot/boot /boot/boot || exit 1
make clean
make image_small || exit 1
#cp image_small /boot || exit 1
cd /usr/src || exit 1
make clean
# Let man find the manpages
su bin -c 'makewhatis /usr/man'
su bin -c 'makewhatis /usr/gnu/man'
su bin -c 'makewhatis /usr/local/man'
mv /usr/src/commands /usr/src.commands
binsizes normal
exit 0