Skip to content
Snippets Groups Projects
  1. Dec 13, 2013
  2. Jul 12, 2013
  3. Feb 20, 2013
  4. Oct 15, 2012
  5. Mar 18, 2012
    • Reinhard Arlt's avatar
      bootvx: Clear and disable data cache, and call vxWorks with parameter. · 6eee21da
      Reinhard Arlt authored
      
      This patch clear and disable the data cache for vxWorks.
      
      The entry point sysInit(int) intended by Windriver to be called from
      the vxWorks bootrom, a very small vxWorks system.
      The routine is called by the go() handler in the bootrom, that clears
      the cache from start of image to end of usable memory.
      
      The PowerPC implementations only invalidates and disable the cache,
      the ARM implementations also flush it.
      
      U-Boot will be on the safe side, if it disables the data cache before
      calling vxWorks sysInit(int).
      
      Signed-off-by: default avatarReinhard Arlt <reinhard.arlt@esd.eu>
      6eee21da
  6. Oct 26, 2011
  7. Oct 06, 2010
    • Mike Frysinger's avatar
      cmd_elf: add an option for loading ELFs according to PHDRs · f44a928e
      Mike Frysinger authored
      
      The current ELF loading function does a lot of work above and beyond a
      simple "loading".  It ignores the real load addresses and loads things
      into their virtual (runtime) address.  This is undesirable when we just
      want it to load an ELF and let the ELF do the actual C runtime init.
      
      So add a command line option to let people choose to load via either the
      program or section headers.  I'd prefer to have program header loading
      be the default, but this would break historical behavior, so I'll leave
      section header loading as the norm.
      
      Signed-off-by: default avatarMike Frysinger <vapier@gentoo.org>
      f44a928e
  8. Jul 04, 2010
    • Wolfgang Denk's avatar
      Make sure that argv[] argument pointers are not modified. · 54841ab5
      Wolfgang Denk authored
      
      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: default avatarWolfgang Denk <wd@denx.de>
      Acked-by: default avatarMike Frysinger <vapier@gentoo.org>
      54841ab5
  9. Jul 26, 2009
  10. Jun 12, 2009
    • Wolfgang Denk's avatar
      General help message cleanup · a89c33db
      Wolfgang Denk authored
      
      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: default avatarWolfgang Denk <wd@denx.de>
      a89c33db
  11. Mar 27, 2009
  12. Mar 20, 2009
  13. Jan 28, 2009
  14. Dec 06, 2008
  15. Nov 02, 2008
  16. Oct 18, 2008
  17. Apr 18, 2008
    • Mike Frysinger's avatar
      allow ports to override bootelf behavior · 017e9b79
      Mike Frysinger authored
      Change the bootelf setup function into a dedicated weak function called
      do_bootelf_exec.  This way ports can control the behavior however they
      like before/after calling the ELF entry point.
      017e9b79
  18. Apr 13, 2008
    • Mike Frysinger's avatar
      disable caches before booting an app for Blackfin apps · 1f1d88dd
      Mike Frysinger authored
      
      It isn't generally save to execute applications outside of U-Boot with caches
      enabled due to the way the Blackfin processor handles caches (requires
      software assistance).  This patch disables caches before booting an ELF or
      just booting raw code.  The previous discussion on the patch was that we
      wanted to use weaks instead, but that proved to not be feasible when multiple
      symbols are involved, which puts us back at the ifdef solution.  I've
      minimized the ugliness by moving the setup step outside of the main function.
      
      Signed-off-by: default avatarMike Frysinger <vapier@gentoo.org>
      1f1d88dd
  19. Nov 21, 2007
  20. Jul 10, 2007
  21. Jul 08, 2007
  22. Jul 03, 2007
  23. Nov 29, 2006
  24. Mar 31, 2006
  25. Aug 01, 2005
  26. Dec 16, 2004
  27. Mar 23, 2004
    • Wolfgang Denk's avatar
      * Patches by Thomas Viehweger, 16 Mar 2004: · 4b9206ed
      Wolfgang Denk authored
        - show PCI clock frequency on MPC8260 systems
        - add FCC_PSMR_RMII flag for HiP7 processors
        - in do_jffs2_fsload(), take load address from load_addr if not set
          explicit, update load_addr otherwise
        - replaced printf by putc/puts when no formatting is needed
          (smaller code size, faster execution)
      4b9206ed
  28. Jul 01, 2003
  29. Jun 27, 2003
    • Wolfgang Denk's avatar
      * Code cleanup: · 8bde7f77
      Wolfgang Denk authored
        - 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. Feb 28, 2003
    • Wolfgang Denk's avatar
      * Add support for 16 MB flash configuration of TRAB board · 6069ff26
      Wolfgang Denk authored
      * Patch by Erwin Rol, 27 Feb 2003:
        Add support for RTEMS
      
      * Add image information to README
      
      * Fix dual PCMCIA slot support (when running with just one
        slot populated)
      
      * Add VFD type detection to trab board
      
      * extend drivers/cs8900.c driver to synchronize  ethaddr  environment
        variable with value in the EEPROM
      
      * Start adding MIPS support files
      6069ff26
  31. Nov 11, 2002
    • Wolfgang Denk's avatar
      * Patch by Andreas Oberritter, 09 Nov 2002: · eb9401e3
      Wolfgang Denk authored
        Change behaviour of NetLoop(): return -1 for errors, filesize
        otherwise; return code 0 is valid an means no file loaded - in this
        case the environment still gets updated!
      
      * Patches by Jon Diekema, 9 Nov 2002:
        - improve ADC/DAC clocking on the SACSng board to align
          the failing edges of LRCLK and SCLK
        - sbc8260 configuration tweaks
        - add status LED support for 82xx systems
        - wire sspi/sspo commands into command handler; improved error
          handlering
        - add timestamp support and alternate memory test to the
          SACSng configuration
      eb9401e3
  32. Sep 20, 2002
Loading