diff options
author | Andy Duan <fugang.duan@nxp.com> | 2016-12-16 14:58:35 +0800 |
---|---|---|
committer | Andy Duan <fugang.duan@nxp.com> | 2016-12-16 15:26:58 +0800 |
commit | 9396585ad4b1323b25d14999d8fffae3c4c78d5a (patch) | |
tree | 26c5024cd6fbf874e5ea02bfeb0ca73d7bc18f98 | |
parent | d2192a3909be8ab9433082e7c04c917489b28e25 (diff) | |
download | u-boot-imx-9396585ad4b1323b25d14999d8fffae3c4c78d5a.zip u-boot-imx-9396585ad4b1323b25d14999d8fffae3c4c78d5a.tar.gz u-boot-imx-9396585ad4b1323b25d14999d8fffae3c4c78d5a.tar.bz2 |
MLK-13624 configs: imx7ulp_evk: add net args for USB NFS boot
i.MX7ULP has no ENET controller, and kernel enable wlan0 and USB eth0
interface by default, set the net args interface to eth0 to force kernel
NFS boot from USB ethernet.
Signed-off-by: Fugang Duan <fugang.duan@nxp.com>
-rw-r--r-- | include/configs/mx7ulp_evk.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/mx7ulp_evk.h b/include/configs/mx7ulp_evk.h index 877e266..8371204 100644 --- a/include/configs/mx7ulp_evk.h +++ b/include/configs/mx7ulp_evk.h @@ -202,7 +202,7 @@ "fi;\0" \ "netargs=setenv bootargs console=${console},${baudrate} " \ "root=/dev/nfs " \ - "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \ + "ip=:::::eth0:dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \ "netboot=echo Booting from net ...; " \ "run netargs; " \ "if test ${ip_dyn} = yes; then " \ |