]> git.sur5r.net Git - u-boot/commitdiff
config: meson-gx-common: Enable USB boot
authorNeil Armstrong <narmstrong@baylibre.com>
Thu, 14 Jun 2018 11:43:38 +0000 (13:43 +0200)
committerTom Rini <trini@konsulko.com>
Tue, 19 Jun 2018 11:31:46 +0000 (07:31 -0400)
Add USB as boot target depending on the configuration.

Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
include/configs/meson-gx-common.h

index 6e61b704a3caa8d8b0db816175aaa38e57e981bb..7435f3475ea8120cda119aa128b33a1c81cc6a39 100644 (file)
 #define GICD_BASE                      0xc4301000
 #define GICC_BASE                      0xc4302000
 
+#ifdef CONFIG_CMD_USB
+#define BOOT_TARGET_DEVICES_USB(func) func(USB, usb, 0)
+#else
+#define BOOT_TARGET_DEVICES_USB(func)
+#endif
+
 #define BOOT_TARGET_DEVICES(func) \
        func(MMC, mmc, 0) \
        func(MMC, mmc, 1) \
        func(MMC, mmc, 2) \
+       BOOT_TARGET_DEVICES_USB(func) \
        func(PXE, pxe, na) \
        func(DHCP, dhcp, na)