aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Savoye <rob.savoye@linaro.org>2014-03-03 00:43:22 -0700
committerRob Savoye <rob.savoye@linaro.org>2014-03-03 00:43:22 -0700
commit5b15614785752fba813cf86c2d07b217cae64c68 (patch)
tree582acfcb881828dc334bb58b5fb49ec29befdf0a
parent103e44394cefb50f91e87d2cffa49ed1b9118604 (diff)
add GPLv3 copyright block
Change-Id: Id42359fc1f5324ea2dd6fa18eaf6a4c4fb79fb3a
-rwxr-xr-xcbuild2.sh16
-rw-r--r--configure.ac17
-rwxr-xr-xjenkins.sh16
-rw-r--r--lib/checkout.sh16
-rw-r--r--lib/common.sh16
-rwxr-xr-xlib/configure.sh16
-rwxr-xr-xlib/depend.sh16
-rwxr-xr-xlib/fetch.sh16
-rw-r--r--lib/git-parser.sh16
-rw-r--r--lib/globals.sh16
-rwxr-xr-xlib/make.sh16
-rw-r--r--lib/merge.sh16
-rw-r--r--lib/package.sh16
-rwxr-xr-xlib/release.sh16
-rw-r--r--lib/stamp.sh16
-rwxr-xr-xsum2junit.sh16
-rwxr-xr-xtcwgweb.sh16
17 files changed, 273 insertions, 0 deletions
diff --git a/cbuild2.sh b/cbuild2.sh
index 9293c0f2..616c7601 100755
--- a/cbuild2.sh
+++ b/cbuild2.sh
@@ -1,4 +1,20 @@
#!/bin/bash
+#
+# Copyright (C) 2013, 2014 Linaro, Inc
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+#
# load the configure file produced by configure
if test -e "${PWD}/host.conf"; then
diff --git a/configure.ac b/configure.ac
index 12111fa0..bd7b6a32 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,3 +1,20 @@
+#
+# Copyright (C) 2013, 2014 Linaro, Inc
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+#
+
dnl
dnl This script configures the build machine to have what it needs to
dnl build and test a GNU toolchain.
diff --git a/jenkins.sh b/jenkins.sh
index 076fdccd..9c6fbde2 100755
--- a/jenkins.sh
+++ b/jenkins.sh
@@ -1,4 +1,20 @@
#!/bin/bash
+#
+# Copyright (C) 2013, 2014 Linaro, Inc
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+#
# Test the config parameters from the Jenkins Build Now page
diff --git a/lib/checkout.sh b/lib/checkout.sh
index 6f51b396..e2ef4c0d 100644
--- a/lib/checkout.sh
+++ b/lib/checkout.sh
@@ -1,4 +1,20 @@
#!/bin/sh
+#
+# Copyright (C) 2013, 2014 Linaro, Inc
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+#
#
# This does a checkout from a source code repository
diff --git a/lib/common.sh b/lib/common.sh
index b24c15b4..5b3c64e2 100644
--- a/lib/common.sh
+++ b/lib/common.sh
@@ -1,4 +1,20 @@
#!/bin/sh
+#
+# Copyright (C) 2013, 2014 Linaro, Inc
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+#
#cbuild="`which cbuild2.sh`"
#topdir="`dirname ${cbuild}`"
diff --git a/lib/configure.sh b/lib/configure.sh
index 685c8680..af44c062 100755
--- a/lib/configure.sh
+++ b/lib/configure.sh
@@ -1,4 +1,20 @@
#!/bin/sh
+#
+# Copyright (C) 2013, 2014 Linaro, Inc
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+#
# Configure a source directory
# $1 - the directory to configure
diff --git a/lib/depend.sh b/lib/depend.sh
index 766c26b4..ea43e0d3 100755
--- a/lib/depend.sh
+++ b/lib/depend.sh
@@ -1,4 +1,20 @@
#!/bin/sh
+#
+# Copyright (C) 2013, 2014 Linaro, Inc
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+#
#
# Build the dependencies needed to build the toolchain
diff --git a/lib/fetch.sh b/lib/fetch.sh
index 3d086dc9..5c75152b 100755
--- a/lib/fetch.sh
+++ b/lib/fetch.sh
@@ -1,4 +1,20 @@
#!/bin/sh
+#
+# Copyright (C) 2013, 2014 Linaro, Inc
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+#
# Fetch a file from a remote machine
fetch()
diff --git a/lib/git-parser.sh b/lib/git-parser.sh
index 6845edef..8a3b52a8 100644
--- a/lib/git-parser.sh
+++ b/lib/git-parser.sh
@@ -1,4 +1,20 @@
#!/bin/sh
+#
+# Copyright (C) 2013, 2014 Linaro, Inc
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+#
# NOTICE: This service is most reliable when passed a full URL (including
# service identifier, e.g., lp:, svn://, http://, git://).
diff --git a/lib/globals.sh b/lib/globals.sh
index e79106d1..e54ade63 100644
--- a/lib/globals.sh
+++ b/lib/globals.sh
@@ -1,4 +1,20 @@
#!/bin/sh
+#
+# Copyright (C) 2013, 2014 Linaro, Inc
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+#
# These store all the data used for this test run that can be overwritten by
# command line options.
diff --git a/lib/make.sh b/lib/make.sh
index 805f208b..fa7cc29d 100755
--- a/lib/make.sh
+++ b/lib/make.sh
@@ -1,4 +1,20 @@
#!/bin/sh
+#
+# Copyright (C) 2013, 2014 Linaro, Inc
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+#
#
#
diff --git a/lib/merge.sh b/lib/merge.sh
index 66f25f36..83fadc92 100644
--- a/lib/merge.sh
+++ b/lib/merge.sh
@@ -1,4 +1,20 @@
#!/bin/sh
+#
+# Copyright (C) 2013, 2014 Linaro, Inc
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+#
# FIXME: this is a hack while in development. These need to be configurable
trunk_top=/linaro/src/gnu/gcc/trunk
diff --git a/lib/package.sh b/lib/package.sh
index f2093876..394f6c84 100644
--- a/lib/package.sh
+++ b/lib/package.sh
@@ -1,4 +1,20 @@
#!/bin/bash
+#
+# Copyright (C) 2013, 2014 Linaro, Inc
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+#
# This script contains functions for building binary packages.
diff --git a/lib/release.sh b/lib/release.sh
index 38b8de81..e3d381b7 100755
--- a/lib/release.sh
+++ b/lib/release.sh
@@ -1,4 +1,20 @@
#!/bin/sh
+#
+# Copyright (C) 2013, 2014 Linaro, Inc
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+#
#
# This makes a a release tarball Linaro style. Note that this does NOT
diff --git a/lib/stamp.sh b/lib/stamp.sh
index 5d84207f..807417a9 100644
--- a/lib/stamp.sh
+++ b/lib/stamp.sh
@@ -1,4 +1,20 @@
#!/bin/bash
+#
+# Copyright (C) 2013, 2014 Linaro, Inc
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+#
# Given a git url or a tarball name, this function will return a stamp name.
#
diff --git a/sum2junit.sh b/sum2junit.sh
index a238165a..02fd40c7 100755
--- a/sum2junit.sh
+++ b/sum2junit.sh
@@ -1,4 +1,20 @@
#!/bin/sh
+#
+# Copyright (C) 2013, 2014 Linaro, Inc
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+#
#
# This script converts a DejaGnu .sum file into a Junit copatible
diff --git a/tcwgweb.sh b/tcwgweb.sh
index d49130dd..bb78e6ce 100755
--- a/tcwgweb.sh
+++ b/tcwgweb.sh
@@ -1,4 +1,20 @@
#!/bin/bash
+#
+# Copyright (C) 2013, 2014 Linaro, Inc
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+#
#
# diffall dir1 dir2