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 | |
| parent | aad4659a2fde4b69e8124d6fe8b57bf28d3c747d (diff) | |
| download | olio-uboot-2014.01-50cea244fe6bd62d65fd3379e24e5fc5ac016658.tar.xz olio-uboot-2014.01-50cea244fe6bd62d65fd3379e24e5fc5ac016658.zip | |
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>
| -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 2ace10d30..38ad7f4d8 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 ...; " \ |