From: q66 Date: Sat, 25 Jul 2020 15:20:40 +0000 (+0200) Subject: dracut.sh: fix ia32 detection for uefi executables X-Git-Tag: 051~132 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=63b05a8e6787301dce435bd414a37a8f3ae9cdde;p=thirdparty%2Fdracut.git dracut.sh: fix ia32 detection for uefi executables --- diff --git a/dracut.sh b/dracut.sh index d5dfa77d7..8f78da06f 100755 --- a/dracut.sh +++ b/dracut.sh @@ -1153,7 +1153,7 @@ if [[ ! $print_cmdline ]]; then case $(uname -m) in x86_64) EFI_MACHINE_TYPE_NAME=x64;; - ia32) + i?86) EFI_MACHINE_TYPE_NAME=ia32;; *) dfatal "Architecture '$(uname -m)' not supported to create a UEFI executable"