1. 08 8月, 2010 1 次提交
  2. 25 7月, 2010 1 次提交
  3. 05 7月, 2010 2 次提交
    • 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
    • W
      cmd_ide.c: fix unused variable warning for SC3 board · cd47a83b
      Wolfgang Denk 提交于
      Signed-off-by: NWolfgang Denk <wd@denx.de>
      cd47a83b
  4. 24 6月, 2010 1 次提交
    • W
      Remove AmigaOneG3SE board · 953b7e62
      Wolfgang Denk 提交于
      The AmigaOneG3SE board has been orphaned or a very long time, and
      broken for more than 12 releases resp. more than 3 years.  As nobody
      seems to be interested any more in this stuff we may as well ged rid
      of it, especially as it clutters many areas of the code so it is a
      continuous pain for all kinds of ongoing work.
      Signed-off-by: NWolfgang Denk <wd@denx.de>
      953b7e62
  5. 09 12月, 2009 1 次提交
  6. 03 10月, 2009 1 次提交
  7. 25 9月, 2009 1 次提交
  8. 13 6月, 2009 2 次提交
    • W
      MPC512x: remove include/mpc512x.h · 3b74e7ec
      Wolfgang Denk 提交于
      Move needed definitions (register descriptions etc.) from
      include/mpc512x.h  into  include/asm-ppc/immap_512x.h.
      
      Instead of using a #define'd register offset, use a function that
      provides the PATA controller's base address.
      
      All the rest of include/mpc512x.h are register offset definitions
      which can be eliminated by proper use of C structures.
      
      There are only a few register offsets remaining that are needed in
      cpu/mpc512x/start.S; for these we provide cpu/mpc512x/asm-offsets.h
      which is intended as a temporary workaround only. In a later patch
      this file will be removed, too, and then auto-generated from the
      respective C structs.
      Signed-off-by: NWolfgang Denk <wd@denx.de>
      Cc: John Rigby <jcrigby@gmail.com>
      3b74e7ec
    • 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
  9. 21 5月, 2009 1 次提交
  10. 28 4月, 2009 1 次提交
  11. 21 3月, 2009 1 次提交
    • M
      vsprintf: pull updates from Linux kernel · 6c6166f5
      Mike Frysinger 提交于
      This brings in support for the %p modifier which allows us to easily print
      out things like ip addresses, mac addresses, and pointers.
      
      It also converts the rarely used 'q' length modifier to the common 'L'
      modifier when dealing with quad types.
      
      While this new code is a bit larger (~1k .text), most of it should be made
      up by converting the existing ip/mac address code to use format modifiers.
      Signed-off-by: NMike Frysinger <vapier@gentoo.org>
      6c6166f5
  12. 04 2月, 2009 1 次提交
  13. 28 1月, 2009 2 次提交
  14. 07 12月, 2008 1 次提交
  15. 19 10月, 2008 1 次提交
  16. 21 8月, 2008 2 次提交
  17. 06 8月, 2008 1 次提交
  18. 30 7月, 2008 1 次提交
  19. 21 7月, 2008 1 次提交
  20. 01 7月, 2008 1 次提交
  21. 21 5月, 2008 1 次提交
    • W
      Big white-space cleanup. · 53677ef1
      Wolfgang Denk 提交于
      This commit gets rid of a huge amount of silly white-space issues.
      Especially, all sequences of SPACEs followed by TAB characters get
      removed (unless they appear in print statements).
      
      Also remove all embedded "vim:" and "vi:" statements which hide
      indentation problems.
      Signed-off-by: NWolfgang Denk <wd@denx.de>
      53677ef1
  22. 10 5月, 2008 1 次提交
  23. 29 4月, 2008 1 次提交
  24. 18 4月, 2008 1 次提交
    • M
      IDE: fix bug in reset sequence · e175eacc
      Martin Krause 提交于
      According to the ata (ata5) specification the RESET- signal
      shall be asserted for at least 25 us. Without this patch,
      the RESET- signal is asserted on some boards for only < 1 us
      (e. g. on the TQM5200). This patch adds a general delay of
      25 us to the RESET- signal.
      
      Without this patch a Platinum 4 GiB CF card is not recognised
      properly on boards with a TQM5200 (STK52xx, TB5200).
      Signed-off-by: NMartin Krause <martin.krause@tqs.de>
      e175eacc
  25. 12 3月, 2008 2 次提交
  26. 29 2月, 2008 1 次提交
  27. 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
  28. 22 2月, 2008 1 次提交
  29. 07 2月, 2008 1 次提交
  30. 21 11月, 2007 1 次提交
  31. 17 11月, 2007 2 次提交
  32. 23 9月, 2007 1 次提交
  33. 28 8月, 2007 1 次提交
  34. 13 7月, 2007 1 次提交