ceph/qa/workunits/kernel_untar_build.sh

14 lines
205 B
Bash
Raw Normal View History

#!/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
2010-03-08 21:35:56 +00:00
make -j`grep -c processor /proc/cpuinfo`
cd ..
rm -r linux*
cd ..
rm -r t linux*