diff options
author | Peter Chen <peter.chen@nxp.com> | 2016-10-11 16:10:23 +0800 |
---|---|---|
committer | Robby Cai <robby.cai@nxp.com> | 2016-11-16 16:58:24 +0800 |
commit | b7db2831f38220d6c54f5ba0f4fa01a51ffab4aa (patch) | |
tree | 978fbe57fc3d2e441a220348e210eb049a06f891 | |
parent | cf99e33f2dc6ff04a8d431a2bf98f87f2fa875f1 (diff) | |
download | u-boot-imx-b7db2831f38220d6c54f5ba0f4fa01a51ffab4aa.zip u-boot-imx-b7db2831f38220d6c54f5ba0f4fa01a51ffab4aa.tar.gz u-boot-imx-b7db2831f38220d6c54f5ba0f4fa01a51ffab4aa.tar.bz2 |
MLK-13311 configs: mx6sll_lpddr3_arm2: Enable network function
Since mx6sll has no ethernet controller, we take USB ethernet device as
network device by default.
Signed-off-by: Peter Chen <peter.chen@nxp.com>
(cherry picked from commit f6c75d019afb2b4a59b10649b95bde8b7723a30b)
-rw-r--r-- | include/configs/mx6sll_arm2.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/configs/mx6sll_arm2.h b/include/configs/mx6sll_arm2.h index 526c992..ca76972 100644 --- a/include/configs/mx6sll_arm2.h +++ b/include/configs/mx6sll_arm2.h @@ -109,6 +109,7 @@ "root=/dev/nfs " \ "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \ "netboot=echo Booting from net ...; " \ + "usb start; " \ "run netargs; " \ "if test ${ip_dyn} = yes; then " \ "setenv get_cmd dhcp; " \ @@ -192,6 +193,10 @@ #define CONFIG_ENV_SPI_MAX_HZ CONFIG_SF_DEFAULT_SPEED #endif +/* Network */ +#define CONFIG_CMD_PING +#define CONFIG_CMD_DHCP + /* USB Configs */ #define CONFIG_CMD_USB #ifdef CONFIG_CMD_USB |