X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=README;h=6f610082224e54fc0a31246cdea7ad688df1e6d1;hb=f8785e96c9f7249328b267d4c82e2218748e3729;hp=b0e1fb27c492dc477a6fc9a23dba3f0b86207a28;hpb=84bd92bdda05e6aaae3150ed6ef957b3a67398b7;p=platform%2Fkernel%2Fu-boot.git diff --git a/README b/README index b0e1fb2..6f61008 100644 --- a/README +++ b/README @@ -1377,7 +1377,7 @@ The following options need to be configured: remaining RAM in a form that can be passed as boot argument to Linux, for instance like that: - setenv bootargs ... mem=\$(mem) + setenv bootargs ... mem=\${mem} saveenv This way you can tell Linux not to use this memory, @@ -1766,6 +1766,12 @@ Configuration Settings: This option also enables the building of the cfi_flash driver in the drivers directory +- CFG_FLASH_QUIET_TEST + If this option is defined, the common CFI flash doesn't + print it's warning upon not recognized FLASH banks. This + is useful, if some of the configured banks are only + optionally available. + - CFG_RX_ETH_BUFFER: Defines the number of ethernet receive buffers. On some ethernet controllers it is recommended to set this value @@ -2546,10 +2552,10 @@ Old, simple command line parser: - supports environment variables (through setenv / saveenv commands) - several commands on one line, separated by ';' -- variable substitution using "... $(name) ..." syntax +- variable substitution using "... ${name} ..." syntax - special characters ('$', ';') can be escaped by prefixing with '\', for example: - setenv bootcmd bootm \$(address) + setenv bootcmd bootm \${address} - You can also escape text by enclosing in single apostrophes, for example: setenv addip 'setenv bootargs $bootargs ip=$ipaddr:$serverip:$gatewayip:$netmask:$hostname::off'