From 22890ad67c61d6fed868da9106871e0b11baaa96 Mon Sep 17 00:00:00 2001 From: Benjamin Schieder Date: Tue, 14 Mar 2006 01:21:09 +0000 Subject: [PATCH] Benjamin Schieder: fix livecd build squashfs doesn't contain a patch for linux 2.6.14+ and there is no new release (yet?) [2006022108000419325] (https://www.rocklinux.net/submaster) git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@7209 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc --- target/livecd/pkg_linux.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/target/livecd/pkg_linux.conf b/target/livecd/pkg_linux.conf index f6ec8d9a9..3542786a5 100644 --- a/target/livecd/pkg_linux.conf +++ b/target/livecd/pkg_linux.conf @@ -5,6 +5,7 @@ echo_status "Customizing for LiveCD Target ..." extract_squashfspatch() { my_ver=`echo ${vanilla_ver} | sed -e 's,^\(2\.[46]\.[0-9]*\)\(\..*\)$,\1,'` + [ "${my_ver:0:3}" == "2.6" ] && my_ver=2.6.13 || my_ver=2.4.31 tar --use-compress-program=bzip2 -xOf $base/download/mirror/s/squashfs2.2-r2.tar.bz2 \ squashfs2.2-r2/linux-${my_ver}/squashfs2.2-patch > $archdir/squashfs2.2.patch }