• 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: Alessandro Rubini's avatarAlessandro Rubini <rubini@gnudd.com>
    394d1405
Name
Last commit
Last update
arch/lm32 Loading commit data...
boards Loading commit data...
configs Loading commit data...
dev Loading commit data...
doc Loading commit data...
include Loading commit data...
lib Loading commit data...
monitor Loading commit data...
pp_printf Loading commit data...
ptp-noposix @ 303c8360
scripts Loading commit data...
shell Loading commit data...
sockitowm Loading commit data...
tests Loading commit data...
tools Loading commit data...
.gitignore Loading commit data...
.gitmodules Loading commit data...
COPYING Loading commit data...
Kconfig Loading commit data...
Makefile Loading commit data...
Makefile.kconfig Loading commit data...
revision.c Loading commit data...
wrc_main.c Loading commit data...
wrc_ptp.c Loading commit data...
wrc_ptp.h Loading commit data...