From: Sage Weil Date: Fri, 26 Feb 2010 22:50:54 +0000 (-0800) Subject: qa: download linux tarball from ceph.newdream.net for kernel compile test X-Git-Tag: v0.20~385 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=038a8eba44d56c71fd7eb09f3653e07971a8903c;p=ceph.git qa: download linux tarball from ceph.newdream.net for kernel compile test --- diff --git a/qa/workunits/11_kernel_untar_build.sh b/qa/workunits/11_kernel_untar_build.sh index d51a51d3b48d..2e07d0c7f53e 100755 --- a/qa/workunits/11_kernel_untar_build.sh +++ b/qa/workunits/11_kernel_untar_build.sh @@ -1,8 +1,13 @@ #!/bin/bash -tar jxvf /root/linux* +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*