diff options
author | Wolfgang Denk <wd@pollux.(none)> | 2005-11-20 20:40:11 (GMT) |
---|---|---|
committer | Wolfgang Denk <wd@pollux.(none)> | 2005-11-20 20:40:11 (GMT) |
commit | fe126d8b34d2e7c3c2dc1d4e61086018e016768c (patch) | |
tree | cf98c7ecc453853f3d8ec4093b5db2587931905b /include/configs/TQM5200.h | |
parent | 5a164c8ca909f170354ea66835b8145c930b2807 (diff) | |
download | u-boot-fsl-qoriq-fe126d8b34d2e7c3c2dc1d4e61086018e016768c.tar.xz |
Change all '$(...)' variable references into '${...}'
which makes the environment compatible with the hush shell.
WARNING: Support for the old '$(...)' syntax will be
discontinued in a later version.
Diffstat (limited to 'include/configs/TQM5200.h')
-rw-r--r-- | include/configs/TQM5200.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/include/configs/TQM5200.h b/include/configs/TQM5200.h index 1236ce3..e23fd77 100644 --- a/include/configs/TQM5200.h +++ b/include/configs/TQM5200.h @@ -208,21 +208,21 @@ "rootpath=/opt/eldk/ppc_6xx\0" \ "ramargs=setenv bootargs root=/dev/ram rw\0" \ "nfsargs=setenv bootargs root=/dev/nfs rw " \ - "nfsroot=$(serverip):$(rootpath)\0" \ - "addip=setenv bootargs $(bootargs) " \ - "ip=$(ipaddr):$(serverip):$(gatewayip):$(netmask)" \ - ":$(hostname):$(netdev):off panic=1\0" \ + "nfsroot=${serverip}:${rootpath}\0" \ + "addip=setenv bootargs ${bootargs} " \ + "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}" \ + ":${hostname}:${netdev}:off panic=1\0" \ "flash_self=run ramargs addip;" \ - "bootm $(kernel_addr) $(ramdisk_addr)\0" \ + "bootm ${kernel_addr} ${ramdisk_addr}\0" \ "flash_nfs=run nfsargs addip;" \ - "bootm $(kernel_addr)\0" \ - "net_nfs=tftp 200000 $(bootfile);run nfsargs addip;bootm\0" \ + "bootm ${kernel_addr}\0" \ + "net_nfs=tftp 200000 ${bootfile};run nfsargs addip;bootm\0" \ "bootfile=/tftpboot/tqm5200/uImage\0" \ - "load=tftp 200000 $(u-boot)\0" \ + "load=tftp 200000 ${u-boot}\0" \ "u-boot=/tftpboot/tqm5200/u-boot.bin" CONFIG_U_BOOT_SUFFIX \ "update=protect off FC000000 FC05FFFF;" \ "erase FC000000 FC05FFFF;" \ - "cp.b 200000 FC000000 $(filesize);" \ + "cp.b 200000 FC000000 ${filesize};" \ "protect on FC000000 FC05FFFF\0" \ "" |