diff mbox series

[U-Boot,u-boot,2/5] config: meson-gx-common: Enable USB boot

Message ID 1528976621-8397-3-git-send-email-narmstrong@baylibre.com
State Accepted
Commit 0ba089baab192ea92207977d193c5538edd05169
Delegated to: Tom Rini
Headers show
Series Amlogic Meson GX Updates for v2018.07 | expand

Commit Message

Neil Armstrong June 14, 2018, 11:43 a.m. UTC
Add USB as boot target depending on the configuration.

Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
---
 include/configs/meson-gx-common.h | 7 +++++++
 1 file changed, 7 insertions(+)

Comments

Tom Rini June 19, 2018, 6:43 p.m. UTC | #1
On Thu, Jun 14, 2018 at 01:43:38PM +0200, Neil Armstrong wrote:

> Add USB as boot target depending on the configuration.
> 
> Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>

Applied to u-boot/master, thanks!
diff mbox series

Patch

diff --git a/include/configs/meson-gx-common.h b/include/configs/meson-gx-common.h
index 6e61b70..7435f34 100644
--- a/include/configs/meson-gx-common.h
+++ b/include/configs/meson-gx-common.h
@@ -23,10 +23,17 @@ 
 #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)