Skip to content
Snippets Groups Projects
  1. Oct 17, 2012
  2. Oct 15, 2012
    • Marek Vasut's avatar
      kerneldoc: Add myself to the git-mailrc for kerneldoc · 34e24b62
      Marek Vasut authored
      
      Add entry for kerneldoc into the git-mailrc pointing to the U-Boot ML
      and myself.
      
      Signed-off-by: default avatarMarek Vasut <marex@denx.de>
      34e24b62
    • Marek Vasut's avatar
      kerneldoc: Add nicer CSS stylesheet for HTML docs · 8d5d89e2
      Marek Vasut authored
      Import basic CSS stylesheet for the HTML documentation. The base for
      the stylesheet is taken from:
      
      	http://ds9a.nl/docbook/minimal-page.html
      
      
      
      I customized the CSS a bit further, for example to add curvy corners
      to example section and change the tint of gray. The HTML documentation
      does not look that crude anymore.
      
      Signed-off-by: default avatarMarek Vasut <marex@denx.de>
      8d5d89e2
    • Marek Vasut's avatar
      kerneldoc: Implant DocBook from Linux kernel · 30ff8918
      Marek Vasut authored
      
      Pull slightly modified version of Documentation/DocBook, the related perl
      script scripts/kernel-doc and the scripts/docproc.c from Linux kernel and
      implant it into U-Boot. This will allow smooth generation of kerneldoc
      style documentation.
      
      It was necessary to modify the DocBook/Makefile to work with U-Boot build
      system. The changes were only minor though and involved replacing the kbuild
      specific parts.
      
      It was also necessary to replace use of variables like KERNEL_VERSION with
      U_BOOT_VERSION, strings like Linux kernel with U-Boot Bootloader etc. so
      the generated result actually matches.
      
      Finally, it was necessary to adjust docproc.c, since the documentation in
      U-Boot is located in doc/DocBook instead of Documentation/DocBook as is in
      case of the Linux kernel.
      
      Some parts of the DocBook Makefile are unused, but to allow easier sync with
      Linux kernel, these parts are still left in. The targets enabled now are
      "htmldocs" "pdfdocs" "psdocs" "xmldocs" and "cleandocs" to remove the results
      of documentation build.
      
      Linux scripts/docproc.c:
      commit f0f3ca8d967462dafb815412b14ca3339b9817a6
      Date:   Wed Jun 15 11:53:13 2011 +0200
      
      Linux scripts/kernel-doc:
      commit 1b40c1944db445c1de1c47ffd8cd426167f488e8
      Date:   Sun Aug 12 10:46:15 2012 +0200
      
      Linux Documentation/DocBook:
      commit bb8187d35f820671d6dd76700d77a6b55f95e2c5
      Date:   Thu May 17 19:06:13 2012 -0400
      
      Signed-off-by: default avatarMarek Vasut <marex@denx.de>
      30ff8918
    • Albert ARIBAUD's avatar
      ARM: prevent misaligned array inits · b823fd9b
      Albert ARIBAUD authored
      
      Under option -munaligned-access, gcc can perform local char
      or 16-bit array initializations using misaligned native
      accesses which will throw a data abort exception. Fix files
      where these array initializations were unneeded, and for
      files known to contain such initializations, enforce gcc
      option -mno-unaligned-access.
      
      Signed-off-by: default avatarAlbert ARIBAUD <albert.u.boot@aribaud.net>
      [trini: Switch to usign call cc-option for -mno-unaligned-access as
      Albert had done previously as that's really correct]
      Signed-off-by: default avatarTom Rini <trini@ti.com>
      b823fd9b
  3. Oct 05, 2012
    • Wolfgang Denk's avatar
      MPC85xx: remove support for TQM85xx boards · d923a5d5
      Wolfgang Denk authored
      
      Due to grown code sizes the TQM85xx boards don't build any more with
      some older tool chains (like ELDK 4.2).  As these boards have long
      reached EOL it seems a waste of effort trying to fix them.  The vendor
      has agreed to drop support for them, too.  So let's get rid of them.
      
      Signed-off-by: default avatarWolfgang Denk <wd@denx.de>
      Cc: Stefan Roese <sr@denx.de>
      cc: Kim Phillips <kim.phillips@freescale.com>
      Acked-by: default avatarStefan Roese <sr@denx.de>
      d923a5d5
  4. Oct 03, 2012
  5. Sep 27, 2012
    • Pavel Machek's avatar
      SPL: Add support for loading image from ram in SPL. · c57b953d
      Pavel Machek authored
      
      Signed-off-by: default avatarPavel Machek <pavel@denx.de>
      Signed-off-by: default avatarTom Rini <trini@ti.com>
      c57b953d
    • Chander Kashyap's avatar
      PXE: FDT: Add support for fdt in PXE · a655938a
      Chander Kashyap authored
      
      Now DT support is becoming common for all new SoC's. Hence it is better
      to have option for getting specific FDT from the remote server.
      
      This patch adds support for new label i.e. 'fdt'. This will allow to
      retrieve 'fdt blob' from the remote server. This patch take care for
      the following scenarios.
      
      The usage of fdt is optional.
      The 'fdt blob' can be retrieved from tftp or can be available locally
      or can be absent.
      
      If 'fdt_addr_r' environment variable is set and 'fdt' label is defined
      retrieve 'fdt blob' from tftp. 'fdt_addr_r' is then passed along bootm
      command.
      
      If 'fdt_addr' is set and 'fdt blob' is not retrieved from the tftp pass
      'fdt_addr' to bootm command. In this case 'fdt blob' will be available
      at 'fdt_addr'.
      
      If 'fdt_addr' is not set and 'fdt blob' is not retrieve from tftp pass
      NULL to boot command. In this case 'fdt blob' is not required and absent.
      
      Signed-off-by: default avatarChander Kashyap <chander.kashyap@linaro.org>
      Acked-by: default avatarJason Hobbs <jason.hobbs@calxeda.com>
      a655938a
  6. Sep 26, 2012
  7. Sep 24, 2012
  8. Sep 18, 2012
    • Marek Vasut's avatar
      ARM: Remove apollon board · 535c74f8
      Marek Vasut authored
      
      This board is the only board that still sticks to OneNAND IPL.
      Remove this board, since we have SPL around for a while and
      OneNAND is well supported in the SPL framework. The board can
      be revived if necessary.
      
      Signed-off-by: default avatarMarek Vasut <marex@denx.de>
      Cc: Albert Aribaud <albert.u.boot@aribaud.net>
      Cc: Kyungmin Park <kyungmin.park@samsung.com>
      Cc: Tom Rini <trini@ti.com>
      535c74f8
  9. Sep 17, 2012
  10. Sep 07, 2012
  11. Sep 03, 2012
  12. Sep 02, 2012
  13. Sep 01, 2012
  14. Aug 23, 2012
Loading