1. 07 3月, 2007 1 次提交
  2. 20 2月, 2007 1 次提交
  3. 09 2月, 2007 1 次提交
  4. 02 2月, 2007 1 次提交
  5. 31 1月, 2007 2 次提交
  6. 24 1月, 2007 1 次提交
  7. 18 1月, 2007 2 次提交
  8. 17 1月, 2007 1 次提交
  9. 11 1月, 2007 1 次提交
  10. 10 1月, 2007 1 次提交
  11. 07 1月, 2007 1 次提交
  12. 22 12月, 2006 1 次提交
  13. 21 12月, 2006 1 次提交
  14. 20 12月, 2006 1 次提交
  15. 01 12月, 2006 1 次提交
  16. 29 11月, 2006 1 次提交
  17. 04 11月, 2006 4 次提交
  18. 02 11月, 2006 1 次提交
  19. 01 11月, 2006 1 次提交
  20. 27 10月, 2006 1 次提交
  21. 26 10月, 2006 2 次提交
  22. 25 10月, 2006 1 次提交
  23. 24 10月, 2006 3 次提交
  24. 20 10月, 2006 1 次提交
  25. 14 10月, 2006 1 次提交
  26. 09 10月, 2006 1 次提交
  27. 13 9月, 2006 2 次提交
  28. 12 9月, 2006 1 次提交
  29. 07 9月, 2006 2 次提交
    • M
      Fix LOG_DIR directory creation error. · 4f0645eb
      Marian Balakowicz 提交于
      Add support for automatic creation of BUILD_DIR directory.
      4f0645eb
    • S
      Add support for AMCC Sequoia PPC440EPx eval board · 887e2ec9
      Stefan Roese 提交于
      - Add support for PPC440EPx & PPC440GRx
      - Add support for PPC440EP(x)/GR(x) NAND controller
        in cpu/ppc4xx directory
      - Add NAND boot functionality for Sequoia board,
        please see doc/README.nand-boot-ppc440 for details
      - This Sequoia NAND image doesn't support environment
        in NAND for now. This will be added in a short while.
      Patch by Stefan Roese, 07 Sep 2006
      887e2ec9
  30. 02 9月, 2006 1 次提交
    • M
      Add support for a saving build objects in a separate directory. · f9328639
      Marian Balakowicz 提交于
      Modifications are based on the linux kernel approach and
      support two use cases:
      
        1) Add O= to the make command line
        'make O=/tmp/build all'
      
        2) Set environement variable BUILD_DIR to point to the desired location
        'export BUILD_DIR=/tmp/build'
        'make'
      
      The second approach can also be used with a MAKEALL script
      'export BUILD_DIR=/tmp/build'
      './MAKEALL'
      
      Command line 'O=' setting overrides BUILD_DIR environent variable.
      
      When none of the above methods is used the local build is performed and
      the object files are placed in the source directory.
      f9328639