1. 30 6月, 2010 1 次提交
  2. 28 5月, 2010 1 次提交
  3. 26 1月, 2010 1 次提交
  4. 22 1月, 2010 3 次提交
  5. 05 12月, 2009 1 次提交
    • P
      add lzop decompression support · 20dde48b
      Peter Korsgaard 提交于
      Add lzop decompression support to the existing lzo bitstream handling
      (think gzip versus zlib), and support it for uImage decompression if
      CONFIG_LZO is enabled.
      
      Lzop doesn't compress as good as gzip (~10% worse), but decompression
      is very fast (~0.7s faster here on a slow ppc). The lzop decompression
      code is based on Albin Tonnerre's recent ARM Linux lzo support patch.
      
      Cc: albin.tonnerre@free-electrons.com
      Signed-off-by: NPeter Korsgaard <jacmet@sunsite.dk>
      20dde48b
  6. 25 11月, 2009 1 次提交
  7. 11 9月, 2009 4 次提交
  8. 20 7月, 2009 1 次提交
    • M
      compiler.h: unify system ifdef cruft here · 37566090
      Mike Frysinger 提交于
      Shove a lot of the HOSTCC and related #ifdef checking crap into the new
      compiler.h header so that we can keep all other headers nice and clean.
      
      Also introduce custom uswap functions so we don't have to rely on the non
      standard implementations that a host may (or may not in the case of OS X)
      provide.  This allows mkimage to finally build cleanly on an OS X system.
      Signed-off-by: NMike Frysinger <vapier@gentoo.org>
      37566090
  9. 04 4月, 2009 1 次提交
    • P
      Add support for building native win32 tools · 2f8d396b
      Peter Tyser 提交于
      Add support for compiling the host tools in the tools directory using
      the MinGW toolchain.  This produces executables which can be used on
      standard Windows computers without requiring cygwin.
      
      One must specify the MinGW compiler and strip utilities as if they
      were the host toolchain in order to build win32 executables, eg:
      
      make HOSTCC=i586-mingw32msvc-gcc HOSTSTRIP=i586-mingw32msvc-strip tools
      Signed-off-by: NPeter Tyser <ptyser@xes-inc.com>
      2f8d396b
  10. 18 2月, 2009 1 次提交
  11. 14 12月, 2008 1 次提交
  12. 29 10月, 2008 1 次提交
    • K
      bootm: Add subcommands · 49c3a861
      Kumar Gala 提交于
      Add the ability to break the steps of the bootm command into several
      subcommands: start, loados, ramdisk, fdt, bdt, cmdline, prep, go.
      
      This allows us to do things like manipulate device trees before
      they are passed to a booting kernel or setup memory for a secondary
      core in multicore situations.
      
      Not all OS types support all subcommands (currently only start, loados,
      ramdisk, fdt, and go are supported).
      Signed-off-by: NKumar Gala <galak@kernel.crashing.org>
      49c3a861
  13. 22 10月, 2008 1 次提交
    • W
      FDT: don't use private kernel header files · def0819e
      Wolfgang Denk 提交于
      On some systems (for example Fedora Core 4) U-Boot builds with the
      following wanrings only:
      
      ...
      In file included from /home/wd/git/u-boot/include/libfdt_env.h:33,
                       from fdt.c:51:
      		 /usr/include/asm/byteorder.h:6:2: warning: #warning using private kernel header; include <endian.h> instead!
      
      This patch fixes this problem.
      Signed-off-by: NWolfgang Denk <wd@denx.de>
      def0819e
  14. 13 9月, 2008 1 次提交
  15. 09 9月, 2008 2 次提交
  16. 27 8月, 2008 5 次提交
  17. 10 8月, 2008 1 次提交
  18. 12 6月, 2008 1 次提交
  19. 25 4月, 2008 1 次提交
  20. 24 4月, 2008 1 次提交
  21. 18 4月, 2008 1 次提交
    • M
      Restore the ability to continue booting after legacy image overwrite · cb1c4896
      Marian Balakowicz 提交于
      Before new uImage code was merged, bootm code allowed for the kernel image to
      get overwritten during decompresion. new uImage introduced a check for image
      overwrites and refused to boot the image that got overwritten. This patch
      restores the old behavior. It also adds a warning when the image overwriten is
      a multi-image file, because in such case accessing componentes other than the
      first one will fail.
      Signed-off-by: NMarian Balakowicz <m8@semihalf.com>
      cb1c4896
  22. 08 4月, 2008 1 次提交
  23. 21 3月, 2008 1 次提交
    • B
      [new uImage] Do not compile new uImage format support by default · 95f4ec2b
      Bartlomiej Sieka 提交于
      Disable default building of new uImage format support in preparation
      for merge with the master. Support for new format can be enabled on
      a per-board basis, by defining the following in the board's config file:
      
      #define CONFIG_FIT             1
      #define CONFIG_OF_LIBFDT       1
      
      This can be optionally defined to give more verbose output:
      
      #define CONFIG_FIT_VERBOSE     1 /* enable fit_format_{error,warning}() */
      Signed-off-by: NBartlomiej Sieka <tur@semihalf.com>
      95f4ec2b
  24. 14 3月, 2008 1 次提交
  25. 12 3月, 2008 4 次提交
  26. 11 3月, 2008 2 次提交