summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorErwan Velu <erwan@mandriva.org>2003-06-17 13:17:55 +0000
committerErwan Velu <erwan@mandriva.org>2003-06-17 13:17:55 +0000
commitdac03dce023380922120f67052e42ea1c77a98b1 (patch)
tree8ef0dc23c3e0a3369f59ce6d0d9edd0db05a773c
parent94eafd41ed9f7b9ab91d798f6a4ef10a373c1bb2 (diff)
downloaddrakx-dac03dce023380922120f67052e42ea1c77a98b1.tar
drakx-dac03dce023380922120f67052e42ea1c77a98b1.tar.gz
drakx-dac03dce023380922120f67052e42ea1c77a98b1.tar.bz2
drakx-dac03dce023380922120f67052e42ea1c77a98b1.tar.xz
drakx-dac03dce023380922120f67052e42ea1c77a98b1.zip
Fixing make_boot_img for x86_64 (ka stage)
-rwxr-xr-xmake_boot_img5
1 files changed, 4 insertions, 1 deletions
diff --git a/make_boot_img b/make_boot_img
index f67593615..0bb940fd1 100755
--- a/make_boot_img
+++ b/make_boot_img
@@ -103,8 +103,11 @@ sub initrd {
my ($ltype, $I) = $type =~ /(.*?)(64)/; $ltype ||= $type;
my $tmp = "$ENV{HOME}/tmp/initrd";
my $tar = "";
+ my $katarball = "stage1-with-kadeploy";
+ if ($arch eq "x86_64") {$katarball = $katarball . "x86_64";}
+
if ($type eq "ka") {
- $tar = "$instdir/stage1-data/stage1-with-kadeploy.tar.bz2";
+ $tar = "$instdir/stage1-data/" . $katarball . ".tar.bz2";
$mke2fs = $mke2fs . " -N 700";
}
else {