summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 {