]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
qa: download linux tarball from ceph.newdream.net for kernel compile test
authorSage Weil <sage@newdream.net>
Fri, 26 Feb 2010 22:50:54 +0000 (14:50 -0800)
committerSage Weil <sage@newdream.net>
Fri, 26 Feb 2010 22:50:54 +0000 (14:50 -0800)
qa/workunits/11_kernel_untar_build.sh

index d51a51d3b48dd08797a4ab5e6c1e2f4f27e394a2..2e07d0c7f53e7705c579050ee9dd4ec885f15b65 100755 (executable)
@@ -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*