diff options
Diffstat (limited to 'include/configs/ebony.h')
| -rw-r--r-- | include/configs/ebony.h | 16 | 
1 files changed, 8 insertions, 8 deletions
| diff --git a/include/configs/ebony.h b/include/configs/ebony.h index 8eb4697df..a26af6952 100644 --- a/include/configs/ebony.h +++ b/include/configs/ebony.h @@ -155,17 +155,17 @@  	"netdev=eth0\0"							\  	"hostname=ebony\0"						\  	"nfsargs=setenv bootargs root=/dev/nfs rw "			\ -		"nfsroot=$(serverip):$(rootpath)\0"			\ +		"nfsroot=${serverip}:${rootpath}\0"			\  	"ramargs=setenv bootargs root=/dev/ram rw\0"			\ -	"addip=setenv bootargs $(bootargs) "				\ -		"ip=$(ipaddr):$(serverip):$(gatewayip):$(netmask)"	\ -		":$(hostname):$(netdev):off panic=1\0"			\ -	"addtty=setenv bootargs $(bootargs) console=ttyS0,$(baudrate)\0"\ +	"addip=setenv bootargs ${bootargs} "				\ +		"ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}"	\ +		":${hostname}:${netdev}:off panic=1\0"			\ +	"addtty=setenv bootargs ${bootargs} console=ttyS0,${baudrate}\0"\  	"flash_nfs=run nfsargs addip addtty;"				\ -		"bootm $(kernel_addr)\0"				\ +		"bootm ${kernel_addr}\0"				\  	"flash_self=run ramargs addip addtty;"				\ -		"bootm $(kernel_addr) $(ramdisk_addr)\0"		\ -	"net_nfs=tftp 200000 $(bootfile);run nfsargs addip addtty;"     \ +		"bootm ${kernel_addr} ${ramdisk_addr}\0"		\ +	"net_nfs=tftp 200000 ${bootfile};run nfsargs addip addtty;"     \  	        "bootm\0"						\  	"rootpath=/opt/eldk/ppc_4xx\0"					\  	"bootfile=/tftpboot/ebony/uImage\0"				\ |