diff options
author | Wolfgang Denk <wd@pollux.(none)> | 2005-11-20 21:40:11 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@pollux.(none)> | 2005-11-20 21:40:11 +0100 |
commit | fe126d8b34d2e7c3c2dc1d4e61086018e016768c (patch) | |
tree | cf98c7ecc453853f3d8ec4093b5db2587931905b /include/configs/voiceblue.h | |
parent | 5a164c8ca909f170354ea66835b8145c930b2807 (diff) | |
download | u-boot-imx-fe126d8b34d2e7c3c2dc1d4e61086018e016768c.zip u-boot-imx-fe126d8b34d2e7c3c2dc1d4e61086018e016768c.tar.gz u-boot-imx-fe126d8b34d2e7c3c2dc1d4e61086018e016768c.tar.bz2 |
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/voiceblue.h')
-rw-r--r-- | include/configs/voiceblue.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/configs/voiceblue.h b/include/configs/voiceblue.h index 72b0a4c..c5ee78f 100644 --- a/include/configs/voiceblue.h +++ b/include/configs/voiceblue.h @@ -163,10 +163,10 @@ #define CFG_AUTOLOAD "n" /* no autoload */ #define CONFIG_PREBOOT "run setup" #define CONFIG_EXTRA_ENV_SETTINGS \ - "setup=setenv bootargs console=ttyS0,$(baudrate) " \ + "setup=setenv bootargs console=ttyS0,${baudrate} " \ "root=/dev/nfs ip=dhcp\0" \ "update=erase c000000 c03ffff; " \ - "cp.b 10400000 c000000 $(filesize)\0" + "cp.b 10400000 c000000 ${filesize}\0" #else #define CONFIG_BOOTDELAY 3 #undef CONFIG_BOOTARGS /* boot command will set bootargs */ |