diff options
author | Alexandre Pereira da Silva <aletes.xgr@gmail.com> | 2013-03-25 18:23:45 +0000 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2013-04-03 11:28:40 +0200 |
commit | 50cea244fe6bd62d65fd3379e24e5fc5ac016658 (patch) | |
tree | 156503dd9d66706460abf90fddfbb9e91b7d943d /include/configs | |
parent | aad4659a2fde4b69e8124d6fe8b57bf28d3c747d (diff) | |
download | u-boot-imx-50cea244fe6bd62d65fd3379e24e5fc5ac016658.zip u-boot-imx-50cea244fe6bd62d65fd3379e24e5fc5ac016658.tar.gz u-boot-imx-50cea244fe6bd62d65fd3379e24e5fc5ac016658.tar.bz2 |
mx23_olinuxino: Fix netboot console
The netargs variable was referencing the non-existing variable
console_mainline. Change that to console variable instead.
Signed-off-by: Alexandre Pereira da Silva <aletes.xgr@gmail.com>
Acked-by: Otavio Salvador <otavio@ossystems.com.br>
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/mx23_olinuxino.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/mx23_olinuxino.h b/include/configs/mx23_olinuxino.h index 2ace10d..38ad7f4 100644 --- a/include/configs/mx23_olinuxino.h +++ b/include/configs/mx23_olinuxino.h @@ -227,7 +227,7 @@ "else " \ "bootm; " \ "fi;\0" \ - "netargs=setenv bootargs console=${console_mainline},${baudrate} " \ + "netargs=setenv bootargs console=${console},${baudrate} " \ "root=/dev/nfs " \ "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \ "netboot=echo Booting from net ...; " \ |