ceph/qa/workunits/11_kernel_untar_build.sh
2010-03-08 15:10:45 -08:00

14 lines
205 B
Bash
Executable File

#!/bin/bash
wget http://ceph.newdream.net/qa/linux-2.6.33.tar.bz2
mkdir t
cd t
tar jxvf ../linux*
cd linux*
make defconfig
make -j`grep -c processor /proc/cpuinfo`
cd ..
rm -r linux*
cd ..
rm -r t linux*