ceph/qa/client/11_kernel_untar_build.sh
2009-10-09 12:19:35 -07:00

19 lines
205 B
Bash
Executable File

#!/bin/bash
basedir=`echo $0 | sed 's/[^/]*$//g'`
basedir="${basedir}."
. $basedir/common.sh
mount
enter_mydir
tar jxvf /root/linux*
cd linux*
make defconfig
make
cd ..
rm -r linux*
leave_mydir
umount