Commit c82f3bef0aa0cba4937eb6c39501e446dca01746

Authored by Peter Chen
Committed by Ye Li
1 parent b7bb615158

MLK-13547 configs: mx7ulp_evk: enable ethernet boot support

Since we can use USB ethernet instead of local ethernet, add ethernet support
for it. To use USB ethernet function at u-boot, just plug in Micro-AB cable
at USBOTG1 port with USB2Ethernet adapter connected.

Signed-off-by: Peter Chen <peter.chen@nxp.com>
(cherry picked from commit 60ffddf87cf6b8502c5d5fc6540364adfd66ebb3)
Signed-off-by: Ye Li <ye.li@nxp.com>
(cherry picked from commit 63c2e1de37e1e24f35279f50efa5a330e2cb3d07)

Showing 3 changed files with 5 additions and 0 deletions Side-by-side Diff

configs/mx7ulp_evk_defconfig
... ... @@ -10,6 +10,8 @@
10 10 CONFIG_CMD_I2C=y
11 11 CONFIG_CMD_MMC=y
12 12 CONFIG_CMD_FAT=y
  13 +CONFIG_CMD_PING=y
  14 +CONFIG_CMD_DHCP=y
13 15 CONFIG_OF_CONTROL=y
14 16 CONFIG_ENV_IS_IN_MMC=y
15 17 CONFIG_DM=y
configs/mx7ulp_evk_plugin_defconfig
... ... @@ -10,6 +10,8 @@
10 10 CONFIG_CMD_I2C=y
11 11 CONFIG_CMD_MMC=y
12 12 CONFIG_CMD_FAT=y
  13 +CONFIG_CMD_PING=y
  14 +CONFIG_CMD_DHCP=y
13 15 CONFIG_OF_CONTROL=y
14 16 CONFIG_ENV_IS_IN_MMC=y
15 17 CONFIG_DM=y
include/configs/mx7ulp_evk.h
... ... @@ -161,6 +161,7 @@
161 161 "else " \
162 162 "if run loadimage; then " \
163 163 "run mmcboot; " \
  164 + "else run netboot; " \
164 165 "fi; " \
165 166 "fi; " \
166 167 "fi"