File build-all.sh of Package xenpaging-scripts
#!/bin/bash
set -ex
topdir="$(dirname $0)"
project=home_olh_xen-unstable
if test -z "${topdir}"
then
exit 1
fi
if pushd "${topdir}"
then
cd ..
if pushd kernel-source
then
time for i in \
build-kernel-xen.sh \
build-kernel-default.sh \
build-kernel-source.sh \
build-kernel-syms.sh \
;
do
echo $i
rm -f /dev/shm/$i.log
time bash $i --no-checks --debug=no &> /dev/shm/${project}-${i}.log
done
popd
if pushd xen-unstable
then
time bash build-xen-unstable.sh --no-checks --debug=yes &> /dev/shm/${project}-build-xen-unstable.sh.log
popd
fi
fi
fi