ceph/qa/workunits/11_kernel_untar_build.sh

14 lines
169 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
cd ..
rm -r linux*
cd ..
rm -r t linux*