| 418e046d | 09-Feb-2011 |
Andreas Bießmann <biessmann@corscience.de> |
common/cmd_bdinfo.c: fix do_bdinfo() for AVR32
This patch fixes following warning message:
---8<--- cmd_bdinfo.c:458: warning: initialization from incompatible pointer type --->8---
There was a pr
common/cmd_bdinfo.c: fix do_bdinfo() for AVR32
This patch fixes following warning message:
---8<--- cmd_bdinfo.c:458: warning: initialization from incompatible pointer type --->8---
There was a prototype change in 54841ab50c20d6fa6c9cc3eb826989da3a22d934 for argv[] pointer type to const. This change was not made for AVR32 cause this code came in later by a merge.
Signed-off-by: Andreas Bießmann <biessmann@corscience.de>
show more ...
|
| 97039ab9 | 24-Jan-2011 |
Mingkai Hu <Mingkai.hu@freescale.com> |
env_mmc: Allow board code to override the environment address
On some boards the environment may not be located at a fixed address in the MMC/SDHC card. This allows those boards to implement their
env_mmc: Allow board code to override the environment address
On some boards the environment may not be located at a fixed address in the MMC/SDHC card. This allows those boards to implement their own means to report what address the environment is located at.
Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com> Signed-off-by: Jerry Huang <Chang-Ming.Huang@freescale.com> Signed-off-by: Zhao Chenhui <b35336@freescale.com> Acked-by: Andy Fleming <afleming@freescale.com> Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
show more ...
|
| 67fb0622 | 11-Feb-2011 |
Wolfgang Denk <wd@denx.de> |
unzip: return uncompressed size in `filesize', and print it.
The unzip command did not provide a way for the caller to get any information about the uncompressed size. To make it better usable in s
unzip: return uncompressed size in `filesize', and print it.
The unzip command did not provide a way for the caller to get any information about the uncompressed size. To make it better usable in scripts, we now store the uncompressed size in the `filesize' variable, like we do when for example loading a file over the network or when reading it from a file system. Following that analogy, it is only consequent to also print the size.
Signed-off-by: Wolfgang Denk <wd@denx.de>
show more ...
|
| cc22b795 | 08-Feb-2011 |
Wolfgang Denk <wd@denx.de> |
itest: fix result of string compares
The implementation of the string compare function of the "itest" command was weird, as only the length of the shortest argument was included in the compare, with
itest: fix result of string compares
The implementation of the string compare function of the "itest" command was weird, as only the length of the shortest argument was included in the compare, with the result that something like "itest.s abd == abddef" would return TRUE. Fix this.
Signed-off-by: Wolfgang Denk <wd@denx.de> Acked-by: Detlev Zundel <dzu@denx.de>
show more ...
|