Build both old boot and new boot (for setup).
This commit is contained in:
parent
5a46076652
commit
d4ddfeb2c0
1 changed files with 10 additions and 1 deletions
|
@ -8,13 +8,22 @@ then make $@
|
||||||
exit $?
|
exit $?
|
||||||
fi
|
fi
|
||||||
|
|
||||||
CC=clang make world
|
make world
|
||||||
|
|
||||||
cd tools
|
cd tools
|
||||||
rm revision
|
rm revision
|
||||||
|
rm /boot/image/*
|
||||||
|
make install
|
||||||
|
cp /boot/image/* /boot/image_big # Make big image accessible by this name
|
||||||
|
cp ../boot/boot/boot /boot/boot
|
||||||
|
|
||||||
|
CC=clang make cleandepend clean depend image
|
||||||
|
rm revision
|
||||||
rm -rf /boot/minix/* # on old systems might not be present
|
rm -rf /boot/minix/* # on old systems might not be present
|
||||||
CC=clang make install
|
CC=clang make install
|
||||||
cp ../sys/arch/i386/stand/boot/biosboot/boot_monitor /
|
cp ../sys/arch/i386/stand/boot/biosboot/boot_monitor /
|
||||||
cp -rf /boot/minix/* /boot/minix_default
|
cp -rf /boot/minix/* /boot/minix_default
|
||||||
|
|
||||||
cd /usr/src
|
cd /usr/src
|
||||||
if [ $MAKEMAP -ne 0 ]; then
|
if [ $MAKEMAP -ne 0 ]; then
|
||||||
find . -type f -perm 755 | xargs nm -n 2> /dev/null > symbols.txt
|
find . -type f -perm 755 | xargs nm -n 2> /dev/null > symbols.txt
|
||||||
|
|
Loading…
Reference in a new issue