818d48706c
- Update to v2018.11 - Update from arm-trusted-firmware-pine64 to arm-trusted-firmware-sun50ia64 - pineh64: Use new arm-trusted-firmware-sun50ih6 - Add bananapim64 - u-boot.spec.in, u-boot-board.spec.in: Update to use https - Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.11 * Patches added: 0007-Revert-efi_loader-remove-efi_exit_c.patch - Update to v2018.11-rc3 - Update to v2018.11-rc2 - Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.11 * Patches dropped: 0007-rockchip-make_fit_atf-use-elf-entry.patch 0008-rockchip-make_fit_atf-make-python3-.patch 0009-rockchip-make_fit_atf.py-depends-on.patch - Update to v2018.11-rc1 - Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.11 * Patches dropped: 0010-ARM-tegra-reserve-unmapped-RAM-so-E.patch - nanopia64, orangepipc2: Conditionally enable ATF - Add pineh64 (ATF TBD) OBS-URL: https://build.opensuse.org/request/show/649328 OBS-URL: https://build.opensuse.org/package/show/hardware:boot/u-boot?expand=0&rev=28
34 lines
1.6 KiB
Diff
34 lines
1.6 KiB
Diff
From f83e28325231dbc7344dbd1c93e534acd863561e Mon Sep 17 00:00:00 2001
|
|
From: Guillaume GARDET <guillaume.gardet@free.fr>
|
|
Date: Wed, 13 Apr 2016 13:44:29 +0200
|
|
Subject: [PATCH] XXX openSUSE XXX: Prepend partition 2 (and 3 fo chromebook
|
|
snow) to list of boot partition to load DTB before EFI Also add new folders
|
|
to find DTB
|
|
|
|
---
|
|
include/config_distro_bootcmd.h | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/include/config_distro_bootcmd.h b/include/config_distro_bootcmd.h
|
|
index 373fee78a9..9440892931 100644
|
|
--- a/include/config_distro_bootcmd.h
|
|
+++ b/include/config_distro_bootcmd.h
|
|
@@ -141,7 +141,7 @@
|
|
"load ${devtype} ${devnum}:${distro_bootpart} " \
|
|
"${fdt_addr_r} ${prefix}${efi_fdtfile}\0" \
|
|
\
|
|
- "efi_dtb_prefixes=/ /dtb/ /dtb/current/\0" \
|
|
+ "efi_dtb_prefixes=/ /dtb/ /dtb/current/ /boot/ /boot/dtb/ /boot/dtb/current/\0" \
|
|
"scan_dev_for_efi=" \
|
|
"setenv efi_fdtfile ${fdtfile}; " \
|
|
BOOTENV_EFI_SET_FDTFILE_FALLBACK \
|
|
@@ -398,7 +398,7 @@
|
|
"scan_dev_for_boot_part=" \
|
|
"part list ${devtype} ${devnum} -bootable devplist; " \
|
|
"env exists devplist || setenv devplist 1; " \
|
|
- "for distro_bootpart in ${devplist}; do " \
|
|
+ "for distro_bootpart in 2 3 ${devplist}; do " \
|
|
"if fstype ${devtype} " \
|
|
"${devnum}:${distro_bootpart} " \
|
|
"bootfstype; then " \
|