Skip to content
Snippets Groups Projects
  1. Feb 14, 2013
  2. Feb 12, 2013
  3. Dec 14, 2012
  4. Dec 13, 2012
  5. Dec 12, 2012
  6. Dec 05, 2012
  7. Dec 04, 2012
  8. Dec 03, 2012
  9. Nov 23, 2012
  10. Nov 22, 2012
  11. Nov 21, 2012
  12. Nov 01, 2012
    • Alessandro Rubini's avatar
      Merge branch 'licensing' · 89d6347d
      Alessandro Rubini authored
      89d6347d
    • Alessandro Rubini's avatar
      general: add copyright notes · 394d1405
      Alessandro Rubini authored
      This adds copyright notes to all non-trivial source files,
      unless they where already there (i.e. dev/endpoint.c alone).
      
      I found authorship using the following script, run on commit "a2721762
      
      
      documentation updated" (i.e, before automatic reindentation and other
      trivial stuff by me):
      
        git grep -l . | grep -v sockitowm/ | \
        while read F; do
             echo "##### $F"
             git blame -w $F | \
               sed -e 's/^[^ ]* .//' -e 's/-[0-9][0-9]-[0-9][0-9] .*$//' | \
               sort | uniq -c | sort -rn
        done
      
      Then I augmented each file with this boilerplate:
      
      /*
       * This work is part of the White Rabbit project
       *
       * Copyright (C) 2011 CERN (www.cern.ch)
       * Copyright (C) 2011,2012 CERN (www.cern.ch)
       * Copyright (C) 2012 CERN (www.cern.ch)
       * Copyright (C) 2011 GSI (www.gsi.de)
       * Copyright (C) 2011,2012 GSI (www.gsi.de)
       * Copyright (C) 2012 GSI (www.gsi.de)
       * Author: Tomasz Wlostowski <tomasz.wlostowski@cern.ch>
       * Author: Grzegorz Daniluk <grzegorz.daniluk@cern.ch>
       * Author: Wesley W. Terpstra <w.terpstra@gsi.de>
       *
       * Released according to the GNU GPL, version 2 or any later version.
       */
      
      Then I removed all the lines that didn't apply. Sometimes I reordered
      the authors to reflect who is the main author.
      
      Signed-off-by: default avatarAlessandro Rubini <rubini@gnudd.com>
      394d1405
    • Alessandro Rubini's avatar
      GNU GPL 2, our overall license · c15590bd
      Alessandro Rubini authored
      
      Some individual files are LGPL, some are public domain,
      some are GPL 2-only and most are GPL 2-or-later. You can
      pick parts according to the respective license (marked
      in the files themselves), but this one (GNU GPL version 2)
      is what applies to the work as a whole.
      
      Signed-off-by: default avatarAlessandro Rubini <rubini@gnudd.com>
      c15590bd
    • Alessandro Rubini's avatar
      Merge branch 'pp_printf' · 16208332
      Alessandro Rubini authored
      16208332
    • Alessandro Rubini's avatar