1. 03 7月, 2008 2 次提交
  2. 21 5月, 2008 1 次提交
    • W
      Big white-space cleanup. · 53677ef1
      Wolfgang Denk 提交于
      This commit gets rid of a huge amount of silly white-space issues.
      Especially, all sequences of SPACEs followed by TAB characters get
      removed (unless they appear in print statements).
      
      Also remove all embedded "vim:" and "vi:" statements which hide
      indentation problems.
      Signed-off-by: NWolfgang Denk <wd@denx.de>
      53677ef1
  3. 18 4月, 2008 1 次提交
  4. 13 1月, 2008 1 次提交
    • W
      Fix linker scripts: add NOLOAD atribute to .bss/.sbss sections · 64134f01
      Wolfgang Denk 提交于
      With recent toolchain versions, some boards would not build because
      or errors like this one (here for ocotea board when building with
      ELDK 4.2 beta):
      ppc_4xx-ld: section .bootpg [fffff000 -> fffff23b] overlaps section .bss [fffee900 -> fffff8ab]
      
      For many boards, the .bss section is big enough that it wraps around
      at the end of the address space (0xFFFFFFFF), so the problem will not
      be visible unless you use a 64 bit tool chain for development. On
      some boards however, changes to the code size (due to different
      optimizations) we bail out with section overlaps like above.
      
      The fix is to add the NOLOAD attribute to the .bss and .sbss
      sections, telling the linker that .bss does not consume any space in
      the image.
      Signed-off-by: NWolfgang Denk <wd@denx.de>
      64134f01
  5. 01 11月, 2007 1 次提交
    • S
      ppc4xx: Rework of 4xx serial driver (2) · 882ae412
      Stefan Roese 提交于
      Change all linker scripts to reference the changed driver name 4xx_uart.o.
      
      Note: In most cased all these explicit referencing of these object files
      in the linker scripts is not neccessary. Only for manually embedded
      environment into the U-Boot image, which is not done is most cases.
      Signed-off-by: NStefan Roese <sr@denx.de>
      882ae412
  6. 09 10月, 2006 1 次提交
  7. 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
  8. 12 12月, 2005 1 次提交
  9. 28 11月, 2005 1 次提交
    • S
      Changed PPC44x startup message (cpu info, speed...) to common style: · 3d9569b2
      Stefan Roese 提交于
      On PPC44x platforms, the startup message generated in "cpu.c" only
      comprised the ppc type and revision but not additional informations
      like speed etc. Those speed infos where printed in the board specific
      code. This new implementation now prints all CPU infos in the common
      cpu specific code. No board specific code is needed anymore and
      therefore removed from all current 44x implementations.
      
      Patch by Stefan Roese, 27 Nov 2005
      3d9569b2
  10. 13 10月, 2005 1 次提交
  11. 25 9月, 2005 1 次提交
  12. 31 8月, 2005 1 次提交
  13. 17 8月, 2005 1 次提交
  14. 15 8月, 2005 2 次提交