2e14e5acb8
This is another attempt at getting U-Boot EFI based boot support work with grub2. The major change to the last sr is that this time around I dropped the patch to force uuid setting, since with newer u-boot code we don't need that anymore :). Thanks a lot for the review! Alex - Make mkconfig search for zImage on arm * grub2-mkconfig-arm.patch - Add support to directly pass an EFI FDT table to a kernel on 32bit arm * 0001-arm64-Move-firmware-fdt-search-into-global-function.patch * 0002-arm-efi-Use-fdt-from-firmware-when-available.patch OBS-URL: https://build.opensuse.org/request/show/365018 OBS-URL: https://build.opensuse.org/package/show/Base:System/grub2?expand=0&rev=207
13 lines
625 B
Diff
13 lines
625 B
Diff
Index: grub-2.02~beta3/util/grub.d/10_linux.in
|
|
===================================================================
|
|
--- grub-2.02~beta3.orig/util/grub.d/10_linux.in
|
|
+++ grub-2.02~beta3/util/grub.d/10_linux.in
|
|
@@ -193,6 +193,7 @@ machine=`uname -m`
|
|
case "x$machine" in
|
|
xi?86 | xx86_64) klist="/boot/vmlinuz-* /vmlinuz-* /boot/kernel-*" ;;
|
|
xaarch64) klist="/boot/Image-* /Image-* /boot/kernel-*" ;;
|
|
+ xarm*) klist="/boot/zImage-* /zImage-* /boot/kernel-*" ;;
|
|
xs390 | xs390x) klist="/boot/image-* /boot/kernel-*" ;;
|
|
*) klist="/boot/vmlinuz-* /boot/vmlinux-* /vmlinuz-* /vmlinux-* \
|
|
/boot/kernel-*" ;;
|