summaryrefslogtreecommitdiffstats
path: root/board/mousse
diff options
context:
space:
mode:
authorWolfgang Denk <wd@pollux.(none)>2005-11-20 21:40:11 +0100
committerWolfgang Denk <wd@pollux.(none)>2005-11-20 21:40:11 +0100
commitfe126d8b34d2e7c3c2dc1d4e61086018e016768c (patch)
treecf98c7ecc453853f3d8ec4093b5db2587931905b /board/mousse
parent5a164c8ca909f170354ea66835b8145c930b2807 (diff)
downloadblackbird-obmc-uboot-fe126d8b34d2e7c3c2dc1d4e61086018e016768c.tar.gz
blackbird-obmc-uboot-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/mousse')
-rw-r--r--board/mousse/README6
1 files changed, 3 insertions, 3 deletions
diff --git a/board/mousse/README b/board/mousse/README
index 61aacce5db..d5dda7a8e7 100644
--- a/board/mousse/README
+++ b/board/mousse/README
@@ -132,7 +132,7 @@ pins 1-2 and follow the procedure below to FLASH a bootrom
tftp 100000 u-boot.bin
protect off FFF00000 FFF7FFFF
erase FFF00000 FFF7FFFF
-cp.b 100000 FFF00000 \$(filesize)\
+cp.b 100000 FFF00000 \${filesize}\
Here is an example:
@@ -169,7 +169,7 @@ into the onboard FLASH region (AMD29LV160DB 2MB FLASH):
tftp 100000 u-boot.bin
protect off FFF80000 FFFFFFFF
erase FFF80000 FFFFFFFF
-cp.b 100000 FFF80000 \$(filesize)\
+cp.b 100000 FFF80000 \${filesize}\
C. FLASH KERNEL REGION (960KB)
@@ -183,7 +183,7 @@ The following commands will FLASH a kernel image to 0xffe10000
tftp 100000 vmlinux.img
protect off FFE10000 FFEFFFFF
erase FFE10000 FFEFFFFF
-cp.b 100000 FFE10000 \$(filesize)\
+cp.b 100000 FFE10000 \${filesize}\
reset
Here is an example:
OpenPOWER on IntegriCloud