diff mbox series

[U-Boot,11/12] nxp: ls1043a: enable dhcp boot

Message ID 20190129153841.23430-12-ykaukab@suse.de
State Accepted
Commit 688cdf4caddd0cb03de13b00a700a3b6fd8ce8d2
Delegated to: Prabhakar Kushwaha
Headers show
Series nxp: fix dhcp and efi boot support for various socs | expand

Commit Message

Yousaf Kaukab Jan. 29, 2019, 3:38 p.m. UTC
dhcp boot is a useful feature and works out-of-the-box on these
platforms. Enable it as a boot source.

Signed-off-by: Mian Yousaf Kaukab <ykaukab@suse.de>
---
 include/configs/ls1043a_common.h | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/include/configs/ls1043a_common.h b/include/configs/ls1043a_common.h
index 49b014181e..27bbfb4c95 100644
--- a/include/configs/ls1043a_common.h
+++ b/include/configs/ls1043a_common.h
@@ -239,7 +239,8 @@ 
 #ifndef CONFIG_SPL_BUILD
 #define BOOT_TARGET_DEVICES(func) \
 	func(MMC, mmc, 0) \
-	func(USB, usb, 0)
+	func(USB, usb, 0) \
+	func(DHCP, dhcp, na)
 #include <config_distro_bootcmd.h>
 #endif