1
0
mirror of https://xff.cz/git/u-boot/ synced 2026-01-06 12:09:21 +01:00

board: ls1043a: enable dhcp boot

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>
Reviewed-by: Prabhakar Kushwaha <prabhakar.kushwaha@nxp.com>
This commit is contained in:
Mian Yousaf Kaukab
2019-01-29 16:38:40 +01:00
committed by Prabhakar Kushwaha
parent c504b0d62c
commit 688cdf4cad

View File

@@ -238,7 +238,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