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/lwmon | |
parent | 5a164c8ca909f170354ea66835b8145c930b2807 (diff) |
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/lwmon')
-rw-r--r-- | board/lwmon/README.keybd | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/board/lwmon/README.keybd b/board/lwmon/README.keybd index 788c8644514..54f0aeb81fb 100644 --- a/board/lwmon/README.keybd +++ b/board/lwmon/README.keybd @@ -100,10 +100,10 @@ In U-Boot werden folgende Environment-Variablen gesetzt und abgespei- chert: (1) => setenv magic_keys 01234#X -(2) => setenv key_cmd# setenv addfb setenv bootargs \\$(bootargs) console=tty0 console=ttyS1,\\$(baudrate) -(3) => setenv nfsargs setenv bootargs root=/dev/nfs rw nfsroot=\$(serverip):\$(rootpath) -(4) => setenv addip setenv bootargs \$(bootargs) ip=\$(ipaddr):\$(serverip):\$(gatewayip):\$(netmask):\$(hostname)::off panic=1 -(5) => setenv addfb setenv bootargs \$(bootargs) console=ttyS1,\$(baudrate) +(2) => setenv key_cmd# setenv addfb setenv bootargs \\${bootargs} console=tty0 console=ttyS1,\\${baudrate} +(3) => setenv nfsargs setenv bootargs root=/dev/nfs rw nfsroot=\${serverip}:\${rootpath} +(4) => setenv addip setenv bootargs \${bootargs} ip=\${ipaddr}:\${serverip}:\${gatewayip}:\${netmask}:\${hostname}::off panic=1 +(5) => setenv addfb setenv bootargs \${bootargs} console=ttyS1,\${baudrate} (6) => setenv bootcmd bootp\;run nfsargs\;run addip\;run addfb\;bootm Hierbei wird die Linux Commandline (in der Variablen "bootargs") im |