Skip to content
Snippets Groups Projects
  1. Oct 18, 2010
  2. Oct 13, 2010
    • mark.vels@team-embedded.nl's avatar
      Fix define for MPC5121 ADS board. · 812493ad
      mark.vels@team-embedded.nl authored
      
      Originally the Makefile defines CONFIG_ADS5121_REV2 when configuring
      for board mpc5121ads_rev2. The config in include/configs/mpc5121ads.h
      expects a define CONFIG_MPC5121ADS_REV2 for this.
      Therefore there are two defines used but only 1 is defined.
      This patch renames references to CONFIG_ADS5121_REV2 to CONFIG_MPC5121ADS_REV2
      to have one common define.
      
      This patch fixes faulty mem size detection caused by wrong config in
      include/configs/mpc5121ads.h
      
      Signed-off-by: default avatarMark Vels <mark.vels@team-embedded.nl>
      812493ad
  3. Sep 28, 2010
  4. Sep 19, 2010
    • Mike Frysinger's avatar
      unify toplevel tools targets · 0358df42
      Mike Frysinger authored
      
      Most tool subdirs do not rely on a configured tree, so move those targets
      out of the config checks and unify them in the process.
      
      Also add an easylogo target so people can easily build that.
      
      Also add these new tool targets to the 'tools-all' target.
      
      Signed-off-by: default avatarMike Frysinger <vapier@gentoo.org>
      0358df42
    • Mike Frysinger's avatar
      Makefile: restore support for board shortcut targets · 727ebd9f
      Mike Frysinger authored
      
      The helpful shortcut for doing a board config + make was dropped recently
      as it conflicted with some new build code.  However, the reason for using
      pattern targets originally was to avoid managing a duplicate list of
      boards.  Since we now have one centralized place for a list of boards (the
      new boards.cfg), we don't need a pattern target -- we can generate the
      exact list of boards on the fly.  So do just that.
      
      When cleaning things up, the top level gitignore file ignores all things
      that end with ".depend", but the clean target only deletes files that are
      named exactly ".depend".  Keep these in sync by having the clean target
      punt all files that match the pattern that gitignore is using.
      
      Signed-off-by: default avatarMike Frysinger <vapier@gentoo.org>
      Acked-by: default avatarDetlev Zundel <dzu@denx.de>
      727ebd9f
    • Wolfgang Denk's avatar
      Prepare v2010.09-rc2 · 07517e7f
      Wolfgang Denk authored
      
      Signed-off-by: default avatarWolfgang Denk <wd@denx.de>
      07517e7f
  5. Sep 09, 2010
  6. Aug 23, 2010
  7. Aug 20, 2010
  8. Jul 26, 2010
  9. Jul 16, 2010
  10. Jul 14, 2010
  11. Jul 13, 2010
  12. Jul 06, 2010
  13. Jun 29, 2010
  14. Jun 28, 2010
  15. Jun 23, 2010
  16. Jun 22, 2010
  17. Jun 17, 2010
  18. Jun 14, 2010
  19. Jun 13, 2010
    • Wolfgang Denk's avatar
      Makefile/mkconfig: read simple board configurations from boards.cfg · a6862bc1
      Wolfgang Denk authored
      
      Instead of adding explicit build rules for each and every board to the
      top level Makefile (which makes it grow and grow), we now provide a
      simple default rule and extend the "mkconfig" script to read board
      configurations from a plain text file (table), "boards.cfg".
      
      For simple boards it is now sufficient to add a single line of text to
      the "boards.cfg" file, no changes to the top level Makefile are needed
      any more.
      
      To make the table better readable, change the notation for unused
      fields from "NULL" into "-".
      
      Signed-off-by: default avatarWolfgang Denk <wd@denx.de>
      Cc: Peter Tyser <ptyser@xes-inc.com>
      Cc: Mike Frysinger <vapier@gentoo.org>
      a6862bc1
    • Wolfgang Denk's avatar
      Makefile: simplify handling of common board configurations · 8c994630
      Wolfgang Denk authored
      
      Many boards don't need any special handling in the Makefile. Try and
      provide as generic make rules for these as possible.  There are still
      many areas where this does not work out really well, but the changes
      show the direction we should take, and point out which boards or
      architectures need further cleanup.
      
      Signed-off-by: default avatarWolfgang Denk <wd@denx.de>
      8c994630
    • Wolfgang Denk's avatar
      Makefile: simplify handling of build target names · ed7a196c
      Wolfgang Denk authored
      
      Instead of stripping the "_config" part from the make target names in
      each call of the "mkconfig" script let this script strip the string.
      
      This prepares the ground for forther simplification of the top level
      Makefile.
      
      Signed-off-by: default avatarWolfgang Denk <wd@denx.de>
      ed7a196c
    • Wolfgang Denk's avatar
      Fix printing of make targets, simplify Makefile · 0e42ada3
      Wolfgang Denk authored
      
      Make printing the "board names" more useful. So far, we would get
      output like this;
      
      $ ./MAKEALL P2020RDB P2020RDB_NAND P2020RDB_SDCARD P2020RDB_SPIFLASH
      Configuring for P1_P2_RDB board...
         text    data     bss     dec     hex filename
       342612   32656  265212  640480   9c5e0 /work/wd/tmp-ppc/u-boot
      Configuring for P1_P2_RDB board...
         text    data     bss     dec     hex filename
       343160   32704  265212  641076   9c834 /work/wd/tmp-ppc/u-boot
      Configuring for P1_P2_RDB board...
         text    data     bss     dec     hex filename
       341908   32620  265212  639740   9c2fc /work/wd/tmp-ppc/u-boot
      Configuring for P1_P2_RDB board...
         text    data     bss     dec     hex filename
       341908   32620  265212  639740   9c2fc /work/wd/tmp-ppc/u-boot
      
      For all build targets the same board name would be printed, which
      makes is often pretty difficult to find out which exact build target
      caused problems. With this commit, the real make target name gets
      printed instead, which is way more useful:
      
      $ ./MAKEALL P2020RDB P2020RDB_NAND P2020RDB_SDCARD P2020RDB_SPIFLASH
      Configuring for P2020RDB board...
         text    data     bss     dec     hex filename
       342612   32656  265212  640480   9c5e0 /work/wd/tmp-ppc/u-boot
      Configuring for P2020RDB_NAND board...
         text    data     bss     dec     hex filename
       343160   32704  265212  641076   9c834 /work/wd/tmp-ppc/u-boot
      Configuring for P2020RDB_SDCARD board...
         text    data     bss     dec     hex filename
       341908   32620  265212  639740   9c2fc /work/wd/tmp-ppc/u-boot
      Configuring for P2020RDB_SPIFLASH board...
         text    data     bss     dec     hex filename
       341908   32620  265212  639740   9c2fc /work/wd/tmp-ppc/u-boot
      
      Signed-off-by: default avatarWolfgang Denk <wd@denx.de>
      Acked-by: default avatarDetlev Zundel <dzu@denx.de>
      Tested-by: default avatarThomas Chou <thomas@wytron.com.tw>
      0e42ada3
    • Wolfgang Denk's avatar
      Prepare v2010-rc2 · a9046b9e
      Wolfgang Denk authored
      
      Signed-off-by: default avatarWolfgang Denk <wd@denx.de>
      a9046b9e
  20. Jun 10, 2010
  21. Jun 08, 2010
  22. Jun 07, 2010
  23. Jun 06, 2010
    • Asen Dimov's avatar
      add new board pm9g45 · b5d289fc
      Asen Dimov authored
      
      Add the new board PM9G45 from Ronetix GmbH.
      * AT91SAM9G45 MCU at 400Mhz.
      * 128MB DDR2 SDRAM
      * 256MB NAND
      * 10/100 MBits Ethernet DP83848
      * Serial number chip DS2401
      
      The board is made as SODIMM200 module.
      For more info www.ronatix.at or info@ronetix.at.
      
      Signed-off-by: default avatarAsen Dimov <dimov@ronetix.at>
      b5d289fc
  24. Jun 02, 2010
  25. May 28, 2010
  26. May 26, 2010
  27. May 16, 2010
  28. May 06, 2010
  29. Apr 30, 2010
  30. Apr 29, 2010
Loading