From 173c60ba81e7e9819422ba0b58a2ad6dc6ba10f0 Mon Sep 17 00:00:00 2001 From: Rene Rebe Date: Tue, 9 Sep 2003 17:01:07 +0000 Subject: [PATCH] fixed the x86/build.sh to use the correct mdlbl version - pointed out by Silvio Godenzi git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@1343 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc --- target/bootdisk/x86/build.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/target/bootdisk/x86/build.sh b/target/bootdisk/x86/build.sh index 27ad52b10..2f80d835c 100644 --- a/target/bootdisk/x86/build.sh +++ b/target/bootdisk/x86/build.sh @@ -1,6 +1,7 @@ use_isolinux=1 use_mdlbl=1 +mdlbl_ver=0.1a cd $disksdir @@ -15,7 +16,8 @@ chmod +x makeimages.sh if [ $use_mdlbl -eq 1 ] then tar --use-compress-program=bzip2 \ - -xf $base/download/bootdisk/mdlbl-0.1.tar.bz2; cd mdlbl-0.1 + -xf $base/download/bootdisk/mdlbl-$mdlbl_ver.tar.bz2 + cd mdlbl-$mdlbl_ver cp ../boot/vmlinuz .; cp ../initrd.img initrd; ./makedisks.sh for x in disk*.img; do mv $x ../floppy${x#disk}; done; cd .. du -sh floppy*.img | while read x; do echo_status $x; done