~linaro-toolchain-dev/cortex-strings/trunk

« back to all changes in this revision

Viewing changes to scripts/add-license.sh

  • Committer: Michael Hope
  • Date: 2011-09-02 00:01:14 UTC
  • Revision ID: michael.hope@linaro.org-20110902000114-k4uxak4nrnc3p8lw
Started adding the modified BSD license everywhere.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/bash
 
2
#
 
3
# Add the modified BSD license to a file
 
4
#
 
5
 
 
6
f=`mktemp -d`
 
7
trap "rm -rf $f" EXIT
 
8
 
 
9
year=`date +%Y`
 
10
cat > $f/original <<EOF
 
11
Copyright (c) $year, Linaro Inc.
 
12
All rights reserved.
 
13
 
 
14
Redistribution and use in source and binary forms, with or without
 
15
modification, are permitted provided that the following conditions are met:
 
16
    * Redistributions of source code must retain the above copyright
 
17
      notice, this list of conditions and the following disclaimer.
 
18
    * Redistributions in binary form must reproduce the above copyright
 
19
      notice, this list of conditions and the following disclaimer in the
 
20
      documentation and/or other materials provided with the distribution.
 
21
    * Neither the name of the Linaro nor the
 
22
      names of its contributors may be used to endorse or promote products
 
23
      derived from this software without specific prior written permission.
 
24
 
 
25
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
 
26
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 
27
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 
28
DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
 
29
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 
30
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 
31
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 
32
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
33
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 
34
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
 
35
EOF
 
36
 
 
37
# Translate it to C style
 
38
echo "/*" > $f/c
 
39
sed -r 's/(.*)/ * \1/' $f/original >> $f/c
 
40
echo " */" >> $f/c
 
41
echo >> $f/c
 
42
 
 
43
for name in $@; do
 
44
    if grep -q Copyright $name; then
 
45
        echo $name already has some type of copyright
 
46
        continue
 
47
    fi
 
48
 
 
49
    case $name in
 
50
        *.c)
 
51
            src=$f/c
 
52
            ;;
 
53
        *)
 
54
            echo Unrecognied extension on $name
 
55
            continue
 
56
    esac
 
57
 
 
58
    cat $src $name > $f/next
 
59
    mv $f/next $name
 
60
    echo Updated $name
 
61
done