1. 01 8月, 2011 1 次提交
    • W
      fpga: constify to fix build warning · e6a857da
      Wolfgang Denk 提交于
      Fix compiler warning:
      
      cmd_fpga.c:318: warning: passing argument 3 of 'fit_image_get_data'
      from incompatible pointer type
      
      Adding the needed 'const' here entails a whole bunch of additonal
      changes all over the FPGA code.
      Signed-off-by: NWolfgang Denk <wd@denx.de>
      Cc: Andre Schwarz <andre.schwarz@matrix-vision.de>
      Cc: Murray Jensen <Murray.Jensen@csiro.au>
      Acked-by: Andre Schwarz<andre.schwarz@matrix-vision.de>
      e6a857da
  2. 20 10月, 2010 1 次提交
  3. 25 7月, 2010 1 次提交
  4. 05 7月, 2010 1 次提交
    • W
      Make sure that argv[] argument pointers are not modified. · 54841ab5
      Wolfgang Denk 提交于
      The hush shell dynamically allocates (and re-allocates) memory for the
      argument strings in the "char *argv[]" argument vector passed to
      commands.  Any code that modifies these pointers will cause serious
      corruption of the malloc data structures and crash U-Boot, so make
      sure the compiler can check that no such modifications are being done
      by changing the code into "char * const argv[]".
      
      This modification is the result of debugging a strange crash caused
      after adding a new command, which used the following argument
      processing code which has been working perfectly fine in all Unix
      systems since version 6 - but not so in U-Boot:
      
      int main (int argc, char **argv)
      {
      	while (--argc > 0 && **++argv == '-') {
      /* ====> */	while (*++*argv) {
      			switch (**argv) {
      			case 'd':
      				debug++;
      				break;
      			...
      			default:
      				usage ();
      			}
      		}
      	}
      	...
      }
      
      The line marked "====>" will corrupt the malloc data structures and
      usually cause U-Boot to crash when the next command gets executed by
      the shell.  With the modification, the compiler will prevent this with
      an
      	error: increment of read-only location '*argv'
      
      N.B.: The code above can be trivially rewritten like this:
      
      	while (--argc > 0 && **++argv == '-') {
      		char *arg = *argv;
      		while (*++arg) {
      			switch (*arg) {
      			...
      Signed-off-by: NWolfgang Denk <wd@denx.de>
      Acked-by: NMike Frysinger <vapier@gentoo.org>
      54841ab5
  5. 13 6月, 2009 1 次提交
    • W
      General help message cleanup · a89c33db
      Wolfgang Denk 提交于
      Many of the help messages were not really helpful; for example, many
      commands that take no arguments would not print a correct synopsis
      line, but "No additional help available." which is not exactly wrong,
      but not helpful either.
      
      Commit ``Make "usage" messages more helpful.'' changed this
      partially. But it also became clear that lots of "Usage" and "Help"
      messages (fields "usage" and "help" in struct cmd_tbl_s respective)
      were actually redundant.
      
      This patch cleans this up - for example:
      
      Before:
      	=> help dtt
      	dtt - Digital Thermometer and Thermostat
      
      	Usage:
      	dtt         - Read temperature from digital thermometer and thermostat.
      
      After:
      	=> help dtt
      	dtt - Read temperature from Digital Thermometer and Thermostat
      
      	Usage:
      	dtt
      Signed-off-by: NWolfgang Denk <wd@denx.de>
      a89c33db
  6. 28 1月, 2009 2 次提交
  7. 14 7月, 2008 1 次提交
  8. 12 3月, 2008 1 次提交
  9. 29 2月, 2008 1 次提交
  10. 25 2月, 2008 1 次提交
    • M
      [new uImage] Add dual format uImage support framework · d5934ad7
      Marian Balakowicz 提交于
      This patch adds framework for dual format images. Format detection is added
      and the bootm controll flow is updated to include cases for new FIT format
      uImages.
      
      When the legacy (image_header based) format is detected appropriate
      legacy specific handling is invoked. For the new (FIT based) format uImages
      dual boot framework has a minial support, that will only print out a
      corresponding debug messages. Implementation of the FIT specific handling will
      be added in following patches.
      Signed-off-by: NMarian Balakowicz <m8@semihalf.com>
      d5934ad7
  11. 07 2月, 2008 1 次提交
  12. 09 1月, 2008 2 次提交
  13. 21 11月, 2007 1 次提交
  14. 26 9月, 2007 1 次提交
  15. 09 7月, 2007 1 次提交
  16. 04 7月, 2007 1 次提交
  17. 07 10月, 2006 1 次提交
  18. 15 8月, 2006 1 次提交
  19. 13 10月, 2005 1 次提交
  20. 10 8月, 2005 1 次提交
  21. 08 8月, 2005 1 次提交
  22. 23 1月, 2005 1 次提交
  23. 10 1月, 2005 2 次提交
  24. 04 1月, 2004 1 次提交
  25. 02 1月, 2004 1 次提交
    • W
      * Cleanup lowboot code for MPC5200 · d4ca31c4
      wdenk 提交于
      * Minor code cleanup (coding style)
      
      * Patch by Reinhard Meyer, 30 Dec 2003:
        - cpu/mpc5xxx/fec.c: added CONFIG_PHY_ADDR, added CONFIG_PHY_TYPE,
        - added CONFIG_PHY_ADDR to include/configs/IceCube.h,
        - turned debug print of PHY registers into a function (called in two places)
        - added support for EMK MPC5200 based modules
      
      * Fix MPC8xx PLPRCR_MFD_SHIFT typo
      
      * Add support for TQM866M modules
      
      * Fixes for TQM855M with 4 MB flash (Am29DL163 = _no_ mirror bit flash)
      
      * Fix a few compiler warnings
      d4ca31c4
  26. 08 12月, 2003 1 次提交
    • W
      * Patch by Pierre Aubert, 24 Nov 2003: · 9fd5e31f
      wdenk 提交于
        - add a return value for the fpga command
        - add ide_preinit() function called in ide_init if CONFIG_IDE_PREINIT
          is defined. If ide_preinit fails, ide_init is aborted.
        - fix an endianess problem in fat.h
      9fd5e31f
  27. 02 7月, 2003 1 次提交
  28. 30 6月, 2003 1 次提交
  29. 28 6月, 2003 1 次提交
    • W
      * Code cleanup: · 8bde7f77
      wdenk 提交于
        - remove trailing white space, trailing empty lines, C++ comments, etc.
        - split cmd_boot.c (separate cmd_bdinfo.c and cmd_load.c)
      
      * Patches by Kenneth Johansson, 25 Jun 2003:
        - major rework of command structure
          (work done mostly by Michal Cendrowski and Joakim Kristiansen)
      8bde7f77
  30. 27 8月, 2002 1 次提交