Skip to content
Snippets Groups Projects
  1. Jun 12, 2009
  2. Apr 05, 2009
  3. Jan 29, 2009
  4. May 20, 2008
    • Wolfgang Denk's avatar
      Big white-space cleanup. · 53677ef1
      Wolfgang Denk authored
      
      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: default avatarWolfgang Denk <wd@denx.de>
      53677ef1
  5. Jan 02, 2008
    • Wolfgang Denk's avatar
      Make scripts and Makefiles POSIX compliant · 1aaab9bf
      Wolfgang Denk authored
      
      The bash builtin versions of the "test" (resp. "[") command allow
      using "==" for string comparisons, but POSIX compatible implemen-
      tations (like /usr/bin/test) insist on using "=" only. On such systems
      you will see:
      
      	$ /usr/bin/test a == a && echo OK
      	/usr/bin/test: ==: binary operator expected
      
      This patch fixes Makefiles and scripts to use POSIX style.
      
      Signed-off-by: default avatarWolfgang Denk <wd@denx.de>
      1aaab9bf
  6. Sep 01, 2006
    • Marian Balakowicz's avatar
      Add support for a saving build objects in a separate directory. · f9328639
      Marian Balakowicz authored
      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
  7. Oct 08, 2005
  8. Oct 06, 2005
Loading