]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
ls1028a: use default scan_dev_for_boot
authorMian Yousaf Kaukab <ykaukab@suse.de>
Thu, 23 Jul 2020 13:41:16 +0000 (15:41 +0200)
committerPriyanka Jain <priyanka.jain@nxp.com>
Wed, 23 Sep 2020 14:03:43 +0000 (19:33 +0530)
scan_dev_for_efi is supposed to be called from scan_dev_for_boot.
However this call is missing for ls1028ardb and ls1028aqds boards. As
a result EFI boot doesn’t work. Fix this issue by removing custom
definition of scan_dev_for_boot and use the default definition
instead.

Signed-off-by: Mian Yousaf Kaukab <ykaukab@suse.de>
Reviewed-by: andy.tang@nxp.com
Reviewed-by: Priyanka Jain <priyanka.jain@nxp.com>
include/configs/ls1028aqds.h
include/configs/ls1028ardb.h

index 7bb740f48e362d487773a9783ebeab41012b96b2..8ab943cc640a79bbb872d8105f9a089afc5bf7bf 100644 (file)
                        "run scan_dev_for_boot; " \
                  "fi; " \
                "done\0" \
-       "scan_dev_for_boot=" \
-               "echo Scanning ${devtype} " \
-                               "${devnum}:${distro_bootpart}...; " \
-               "for prefix in ${boot_prefixes}; do " \
-                       "run scan_dev_for_scripts; " \
-               "done;" \
-               "\0" \
        "boot_a_script=" \
                "load ${devtype} ${devnum}:${distro_bootpart} " \
                        "${scriptaddr} ${prefix}${script}; " \
index e6f38f5d00ef6e0be1c4cf0b454eba993584b0f1..1a80cb945dfb5329e2b346f6237f6fc518fd5082 100644 (file)
                        "run scan_dev_for_boot; "            \
                  "fi; "                                   \
                "done\0"                                   \
-       "scan_dev_for_boot="                              \
-               "echo Scanning ${devtype} "               \
-                               "${devnum}:${distro_bootpart}...; "  \
-               "for prefix in ${boot_prefixes}; do "     \
-                       "run scan_dev_for_scripts; "      \
-               "done;"                                   \
-               "\0"                                      \
        "boot_a_script="                                  \
                "load ${devtype} ${devnum}:${distro_bootpart} "  \
                        "${scriptaddr} ${prefix}${script}; "    \