From 424400a7949f9cc2f617fdaef832482da775daf8 Mon Sep 17 00:00:00 2001 From: jbjohnso Date: Tue, 29 Apr 2008 17:51:53 +0000 Subject: [PATCH] -Fix genimage support of 32-bit x86, addressing problem 1953892 git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@1223 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server-2.0/share/xcat/netboot/rh/genimage | 3 +++ 1 file changed, 3 insertions(+) diff --git a/xCAT-server-2.0/share/xcat/netboot/rh/genimage b/xCAT-server-2.0/share/xcat/netboot/rh/genimage index df3bfcbb1..459c0b59d 100755 --- a/xCAT-server-2.0/share/xcat/netboot/rh/genimage +++ b/xCAT-server-2.0/share/xcat/netboot/rh/genimage @@ -14,6 +14,9 @@ my $netdriver; my @yumdirs; my $arch = `uname -m`; chomp($arch); +if ($arch =~ /i.86$/) { + $arch = x86; +} my %libhash; my @filestoadd; my $profile;