Skip to content
Snippets Groups Projects
  1. Mar 17, 2012
  2. Mar 06, 2012
  3. Feb 12, 2012
  4. Feb 11, 2012
  5. Jan 16, 2012
  6. Jan 13, 2012
  7. Jan 05, 2012
  8. Dec 24, 2011
  9. Dec 22, 2011
  10. Dec 20, 2011
  11. Dec 17, 2011
    • Kyle Moffett's avatar
      tools/setlocalversion: Update from the Linux Kernel · a7b39185
      Kyle Moffett authored
      
      Several bugfixes have occurred upstream since this script was imported
      into U-Boot.  In particular, the script currently in U-Boot does not
      describe commit f8bbb4da correctly,
      resulting in a version of "2011.09" instead of "2011.09-01460-gf8bbb4d".
      
      With that commit checked out, the command "git name-rev --tags HEAD"
      gives this result:
        HEAD tags/v2011.12-rc1~30^2
      
      Then the "changes" regex does not match because of the trailing '^2':
        grep -E '^HEAD[[:space:]]+(.*~[0-9]*|undefined)$'
      
      The new version of tools/setlocalversion in the kernel correctly handles
      those situations by using different plumbing commands.
      
      The version from the kernel is not directly usable as it does not append
      the full GIT version that U-Boot expects unless the right config options
      are set (CONFIG_LOCALVERSION_AUTO=y).  Other than a few minor changes
      for Kconfig, the imported version is very similar to Linux v3.2-rc4.
      
      Signed-off-by: default avatarKyle Moffett <Kyle.D.Moffett@boeing.com>
      Cc: Wolfgang Denk <wd@denx.de>
      Cc: Mike Frysinger <vapier@gentoo.org>
      Acked-by: default avatarMike Frysinger <vapier@gentoo.org>
      a7b39185
  12. Dec 06, 2011
  13. Dec 05, 2011
  14. Dec 02, 2011
    • Andreas Bießmann's avatar
      tools/os_support: add OS X Lion support · 6f261854
      Andreas Bießmann authored
      
      OS X Lion's c-library implements getline(), therefore prevent including the old
      helper implementation for __DARWIN_C_LEVEL < 200809L.
      
      Without this patch following error occours:
      
      ---8<---
      In file included from os_support.h:32,
                       from img2srec.c:55:
      getline.h:1: error: conflicting types for ‘getline’
      /usr/include/stdio.h:449: error: previous declaration of ‘getline’ was
      here
      --->8---
      
      Signed-off-by: default avatarAndreas Bießmann <andreas.devel@googlemail.com>
      6f261854
  15. Dec 01, 2011
    • Stephen Warren's avatar
      image: Implement IH_TYPE_KERNEL_NOLOAD · b9b50e89
      Stephen Warren authored
      
      The legacy uImage format includes an absolute load and entry-point
      address. When bootm operates on a kernel uImage in memory that isn't
      loaded at the address in the image's load address, U-Boot will copy
      the image to its address in the header.
      
      Some kernel images can actually be loaded and used at any arbitrary
      address. An example is an ARM Linux kernel zImage file. To represent
      this capability, IH_TYPE_KERNEL_NOLOAD is implemented, which operates
      just like IH_TYPE_KERNEL, except that the load address header is
      ignored, and U-Boot does not copy the image to its load address, but
      rather uses it in-place.
      
      This is useful when sharing a single (uImage-wrapped) zImage across
      multiple boards with different memory layouts; in this case, a specific
      load address need not be picked when creating the uImage, but instead
      is selected by the board-specific U-Boot environment used to load and
      boot that image.
      
      v2: Rename from IH_TYPE_KERNEL_ANYLOAD to IH_TYPE_KERNEL_NOLOAD.
      
      Signed-off-by: default avatarStephen Warren <swarren@nvidia.com>
      Signed-off-by: default avatarStefan Roese <sr@denx.de>
      b9b50e89
  16. Nov 27, 2011
  17. Nov 22, 2011
  18. Nov 17, 2011
  19. Nov 15, 2011
  20. Nov 11, 2011
  21. Nov 03, 2011
    • Heiko Schocher's avatar
      arm, davinci: add cam_enc_4xx support · 4dd83490
      Heiko Schocher authored
      
      - DM368 SOC
      - booting with spl not with UBL from TI
      - before loading u-boot from NAND into RAM, test
        the RAM with the post memory test. If error
        is found, switch all LEDs on and halt system.
      - SPI Flash
        Dataflash Typ: M25PE80
      - Ethernet DM9161BI
      - MMC
      - USB
      
      Signed-off-by: default avatarHeiko Schocher <hs@denx.de>
      Cc: Sandeep Paulraj <s-paulraj@ti.com>
      Cc: Albert ARIBAUD <albert.u.boot@aribaud.net>
      Cc: Igor Grinberg <grinberg@compulab.co.il>
      Signed-off-by: default avatarSandeep Paulraj <s-paulraj@ti.com>
      4dd83490
  22. Oct 23, 2011
    • Stefano Babic's avatar
      mkimage: adding support for Davinci AIS image · 4962e38e
      Stefano Babic authored
      
      Some Davinci processors supports the Application
      Image Script (AIS) boot process. The patch adds the generation
      of the AIS image inside the mkimage tool to make possible
      to generate a bootable U-boot without external tools
      (TI Davinci AIS Generator).
      
      Signed-off-by: default avatarStefano Babic <sbabic@denx.de>
      CC: Wolfgang Denk <wd@denx.de>
      4962e38e
  23. Oct 21, 2011
  24. Oct 06, 2011
    • Loïc Minier's avatar
      ublimage: NAND block size isn't set at build-time · 9f876580
      Loïc Minier authored
      
      mkimage's ublimage support can't depend of build-time board configs;
      instead, this should be set in ublimage.cfg.  Since currently no configs
      in u-boot override the NAND block size, hardcode it as such in
      ublimage.h to fix a build failure with "make tools":
      gcc [...] -o ublimage.o ublimage.c -c
      In file included from ublimage.c:37:0:
      ublimage.h:31:20: fatal error: config.h: No such file or directory
      
      Cc: Heiko Schocher <hs@denx.de>
      Cc: patches@linaro.org
      Signed-off-by: default avatarLoïc Minier <loic.minier@linaro.org>
      Acked-by: default avatarHeiko Schocher <hs@denx.de>
      9f876580
  25. Oct 05, 2011
Loading