Skip to content
Snippets Groups Projects
  1. Aug 09, 2012
  2. May 22, 2012
  3. May 18, 2012
  4. Apr 30, 2012
    • Andy Fleming's avatar
      Allow for parallel builds and saved output · f588bb03
      Andy Fleming authored
      
      The MAKEALL script cleverly runs make with the appropriate options
      to use all of the cores on the system, but your average U-Boot build
      can't make much use of more than a few cores.  If you happen to have
      a many-core server, your builds will leave most of the system idle.
      
      In order to make full use of such a system, we need to build multiple
      targets in parallel, and this requires directing make output into
      multiple directories. We add a BUILD_NBUILDS variable, which allows
      users to specify how many builds to run in parallel.
      When BUILD_NBUILDS is set greater than 1, we redefine BUILD_DIR for
      each build to be ${BUILD_DIR}/${target}. Also, we make "./build" the
      default BUILD_DIR when BUILD_NBUILDS is greater than 1.
      
      MAKEALL now tracks which builds are still running, and when one
      finishes, it starts a new build.
      
      Once each build finishes, we run "make tidy" on its directory, to reduce
      the footprint.
      
      As a result, we are left with a build directory with all of the built
      targets still there for use, which means anyone who wanted to use
      MAKEALL as part of a test harness can now do so.
      
      Signed-off-by: default avatarAndy Fleming <afleming@freescale.com>
      f588bb03
  5. Mar 30, 2012
    • Marek Vasut's avatar
      MAKEALL: Add -m/-M option to determine maintainers · 9b96c6b1
      Marek Vasut authored
      
      The -m option tries to find the board in MAINTAINERS file and figure out the
      email. The -M option lists boards including their maintainers emails and all
      affiliated emails. There are multiple strategies used to retrieve these emails:
      
      1) Check board/<boardname> with git log and use three most recent emails
      2) Check board/<boardname> with git log and use three most used emails
      3) Try finding board in MAINTAINERS file and retrieve all emails from there
      
      The result is then sorted and unique results are retrieved and reported.
      
      For -m option, only strategy 3) is used.
      
      Signed-off-by: default avatarMarek Vasut <marex@denx.de>
      Cc: Wolfgang Denk <wd@denx.de>
      9b96c6b1
  6. Mar 26, 2012
  7. Jan 13, 2012
  8. Dec 10, 2011
  9. Dec 09, 2011
  10. Dec 06, 2011
  11. Nov 29, 2011
  12. Nov 27, 2011
  13. Oct 21, 2011
  14. Oct 18, 2011
  15. Oct 12, 2011
  16. Oct 05, 2011
  17. Sep 09, 2011
  18. Sep 07, 2011
  19. Sep 04, 2011
  20. Sep 03, 2011
Loading