diff options
author | Sjoerd Simons <sjoerd.simons@collabora.co.uk> | 2017-01-11 11:46:15 +0100 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2017-01-11 20:24:19 -0700 |
commit | e9145c55d3248eb6b530d134c4f50cd154842d5d (patch) | |
tree | 0230cc82351155de7009c355e141ea23d26b2dcd /include/configs/rockchip-common.h | |
parent | 7bdedf110d9ad2af6b92e0094393e98136280817 (diff) | |
download | u-boot-e9145c55d3248eb6b530d134c4f50cd154842d5d.tar.gz |
rockchip: Add PXE and DHCP to the default boot targets
Now that at least on the firefly board we have network support, enable
PXE and DHCP boot targets by default.
Signed-off-by: Sjoerd Simons <sjoerd.simons@collabora.co.uk>
Acked-by: Simon Glass <sjg@chromium.org>
Acked-by: Joe Hershberger <joe.hershberger@ni.com>
Diffstat (limited to 'include/configs/rockchip-common.h')
-rw-r--r-- | include/configs/rockchip-common.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/configs/rockchip-common.h b/include/configs/rockchip-common.h index 9ec71c4baa..be53e659ee 100644 --- a/include/configs/rockchip-common.h +++ b/include/configs/rockchip-common.h @@ -14,7 +14,9 @@ /* First try to boot from SD (index 0), then eMMC (index 1 */ #define BOOT_TARGET_DEVICES(func) \ func(MMC, mmc, 0) \ - func(MMC, mmc, 1) + func(MMC, mmc, 1) \ + func(PXE, pxe, na) \ + func(DHCP, dchp, na) /* Enable gpt partition table */ #define CONFIG_CMD_GPT |