]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
ti: j721e_evm: Add USB to the default boot order
authorTom Rini <trini@konsulko.com>
Wed, 25 Jan 2023 23:09:55 +0000 (18:09 -0500)
committerTom Rini <trini@konsulko.com>
Mon, 6 Feb 2023 18:04:53 +0000 (13:04 -0500)
This family of platforms typically has a USB port, and so attempting to
boot from it, and making it first, will provide a better overall user
experience.

Signed-off-by: Tom Rini <trini@konsulko.com>
include/configs/j721e_evm.h

index a7210b5cf3ae5666d3ceb8685e507389caa6e24f..48b1cea6e3941984e914f9b91c76bd3db733b869 100644 (file)
 # define BOOT_TARGET_DHCP(func)
 #endif
 
+#ifdef CONFIG_CMD_USB
+# define BOOT_TARGET_USB(func) func(USB, usb, 0)
+#else
+# define BOOT_TARGET_USB(func)
+#endif
+
 #define BOOT_TARGET_DEVICES(func) \
+       BOOT_TARGET_USB(func) \
        func(MMC, mmc, 1) \
        func(MMC, mmc, 0) \
        BOOT_TARGET_PXE(func) \