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 /board/esd | |
parent | 5a164c8ca909f170354ea66835b8145c930b2807 (diff) | |
download | u-boot-fe126d8b34d2e7c3c2dc1d4e61086018e016768c.tar.gz u-boot-fe126d8b34d2e7c3c2dc1d4e61086018e016768c.tar.xz u-boot-fe126d8b34d2e7c3c2dc1d4e61086018e016768c.zip |
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 'board/esd')
-rw-r--r-- | board/esd/hh405/hh405.c | 2 | ||||
-rw-r--r-- | board/esd/plu405/plu405.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/board/esd/hh405/hh405.c b/board/esd/hh405/hh405.c index 5c0d070a7f..3158803f0c 100644 --- a/board/esd/hh405/hh405.c +++ b/board/esd/hh405/hh405.c @@ -263,7 +263,7 @@ unsigned char logo_bmp_1024[] = au_image_t au_image[] = { {"hh405/preinst.img", 0, -1, AU_SCRIPT}, {"hh405/u-boot.img", 0xfff80000, 0x00080000, AU_FIRMWARE}, - {"hh405/pImage_$(bd_type)", 0x00000000, 0x00100000, AU_NAND}, + {"hh405/pImage_${bd_type}", 0x00000000, 0x00100000, AU_NAND}, {"hh405/pImage.initrd", 0x00100000, 0x00200000, AU_NAND}, {"hh405/yaffsmt2.img", 0x00300000, 0x01c00000, AU_NAND}, {"hh405/postinst.img", 0, 0, AU_SCRIPT}, diff --git a/board/esd/plu405/plu405.c b/board/esd/plu405/plu405.c index 16f2360dcc..5b9d0631f8 100644 --- a/board/esd/plu405/plu405.c +++ b/board/esd/plu405/plu405.c @@ -54,7 +54,7 @@ const unsigned char fpgadata[] = au_image_t au_image[] = { {"plu405/preinst.img", 0, -1, AU_SCRIPT}, {"plu405/u-boot.img", 0xfffc0000, 0x00040000, AU_FIRMWARE}, - {"plu405/pImage_$(bd_type)", 0x00000000, 0x00100000, AU_NAND}, + {"plu405/pImage_${bd_type}", 0x00000000, 0x00100000, AU_NAND}, {"plu405/pImage.initrd", 0x00100000, 0x00200000, AU_NAND}, {"plu405/yaffsmt2.img", 0x00300000, 0x01c00000, AU_NAND}, {"plu405/postinst.img", 0, 0, AU_SCRIPT}, |