2005-04-21 16:53:53 +02:00
|
|
|
#!/bin/sh
|
2006-03-15 16:34:12 +01:00
|
|
|
set -e
|
2006-03-26 20:08:08 +02:00
|
|
|
export SHELL=/bin/sh
|
2006-04-12 13:32:49 +02:00
|
|
|
cd /usr/src
|
2010-08-05 15:56:51 +02:00
|
|
|
|
|
|
|
if [ $# -gt 0 ]
|
|
|
|
then make $@
|
|
|
|
exit $?
|
|
|
|
fi
|
|
|
|
|
2011-06-07 14:48:31 +02:00
|
|
|
make world
|
2006-04-12 13:32:49 +02:00
|
|
|
cd tools
|
2005-06-17 18:28:36 +02:00
|
|
|
rm revision
|
2005-08-12 14:34:56 +02:00
|
|
|
rm /boot/image/*
|
2010-02-16 15:41:33 +01:00
|
|
|
make install
|
2006-04-13 19:15:40 +02:00
|
|
|
cp /boot/image/* /boot/image_big # Make big image accessible by this name
|
2011-04-25 15:10:57 +02:00
|
|
|
cp ../boot/boot/boot /boot/boot
|
2006-04-12 13:32:49 +02:00
|
|
|
cd /usr/src
|
2010-05-17 18:52:48 +02:00
|
|
|
if [ $MAKEMAP -ne 0 ]; then
|
|
|
|
find . -type f -perm 755 | xargs nm -n 2> /dev/null > symbols.txt
|
|
|
|
fi
|
2005-05-03 17:37:34 +02:00
|
|
|
make clean
|
2010-06-01 16:44:36 +02:00
|
|
|
make cleandepend
|
2011-06-08 16:19:09 +02:00
|
|
|
find . -name 'obj-*' -type d|xargs rm -rf
|