From 01dc221f280ad25aa556f246414e3c3c42762956 Mon Sep 17 00:00:00 2001 From: Greg Farnum Date: Tue, 16 Jun 2015 08:13:41 -0700 Subject: [PATCH] qa: update to newer Linux tarball This should make newer gcc releases happier in their default configuration. kernel.org is now distributing tarballs as .xz files so we change to that as well when decompressing (it is supported by Ubuntu Precise so we should be all good). Fixes: #11758 Signed-off-by: Greg Farnum (cherry picked from commit 1ea3f47ab806d48ca7b045c2731d344eae3900e1) Conflicts: qa/workunits/kernel_untar_build.sh trivial resolution --- qa/workunits/kernel_untar_build.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/qa/workunits/kernel_untar_build.sh b/qa/workunits/kernel_untar_build.sh index 279335200e3..cdab906432e 100755 --- a/qa/workunits/kernel_untar_build.sh +++ b/qa/workunits/kernel_untar_build.sh @@ -2,12 +2,11 @@ set -e -#wget -q http://ceph.newdream.net/qa/linux-2.6.33.tar.bz2 -wget -q http://ceph.com/qa/linux-3.2.9.tar.bz2 +wget -q http://ceph.com/qa/linux-4.0.5.tar.xz mkdir t cd t -tar jxvf ../linux*.bz2 +tar Jxvf ../linux*.xz cd linux* make defconfig make -j`grep -c processor /proc/cpuinfo` -- 2.47.3