diff options
author | Mian Yousaf Kaukab <ykaukab@suse.de> | 2019-01-29 16:38:37 +0100 |
---|---|---|
committer | Prabhakar Kushwaha <prabhakar.kushwaha@nxp.com> | 2019-03-03 20:56:00 +0530 |
commit | f43cc40289ae33a8184e3cf446c0775958ee7a67 (patch) | |
tree | 91533cbd8c524f4d7f8d8f4b292af02d61f58ba5 | |
parent | 1eb41fca085bd2633195dd724acc0df11cd9887c (diff) |
board: ls1046a: 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>
-rw-r--r-- | include/configs/ls1046a_common.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/configs/ls1046a_common.h b/include/configs/ls1046a_common.h index 0266681c52..560ac1d13d 100644 --- a/include/configs/ls1046a_common.h +++ b/include/configs/ls1046a_common.h @@ -212,7 +212,8 @@ #define BOOT_TARGET_DEVICES(func) \ func(SCSI, scsi, 0) \ func(MMC, mmc, 0) \ - func(USB, usb, 0) + func(USB, usb, 0) \ + func(DHCP, dhcp, na) #include <config_distro_bootcmd.h> #endif |