diff options
author | Peter Jones <pjones@redhat.com> | 2009-03-02 17:46:41 -0500 |
---|---|---|
committer | Peter Jones <pjones@vroomfondel.internal.datastacks.com> | 2009-03-02 17:46:41 -0500 |
commit | 97c04f48e948e61902189a9bcfc510cf88d16ec3 (patch) | |
tree | e09549991ac7cb03141ceb7381dba7b94aa51012 /scripts | |
parent | e385fd452e4868864432327817d864ea7e2340b9 (diff) | |
download | anaconda-97c04f48e948e61902189a9bcfc510cf88d16ec3.tar.gz anaconda-97c04f48e948e61902189a9bcfc510cf88d16ec3.tar.xz anaconda-97c04f48e948e61902189a9bcfc510cf88d16ec3.zip |
Use "i?86" instead of i586 _or_ i386.
This way if the experiment fails, we don't have to switch it again.
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/mk-images.efi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/mk-images.efi b/scripts/mk-images.efi index 6c95628d9..e3c1f47ee 100644 --- a/scripts/mk-images.efi +++ b/scripts/mk-images.efi @@ -167,7 +167,7 @@ makeEfiImages() { if [ "$kernelvers" != "$kernelxen" ]; then local grubarch=${efiarch} case ${efiarch} in - ia32) grubarch=i586 ;; + ia32) grubarch=i?86 ;; x64) grubarch=x86_64 ;; esac |