ceph/qa/workunits/kernel_untar_build.sh

22 lines
355 B
Bash
Raw Normal View History

#!/bin/bash
2010-04-14 17:08:42 +00:00
set -e
#wget -q http://ceph.newdream.net/qa/linux-2.6.33.tar.bz2
wget -q http://ceph.com/qa/linux-3.2.9.tar.bz2
mkdir t
cd t
tar jxvf ../linux*.bz2
cd linux*
make defconfig
2010-03-08 21:35:56 +00:00
make -j`grep -c processor /proc/cpuinfo`
cd ..
if ! rm -rv linux* ; then
echo "uh oh rm -r failed, it left behind:"
find .
exit 1
fi
cd ..
rm -rv t linux*