aboutsummaryrefslogtreecommitdiff
path: root/ld
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2012-12-17 16:56:12 +0000
committerNick Clifton <nickc@redhat.com>2012-12-17 16:56:12 +0000
commit5bf135a788d468003cb2502d0a2239fd92d1ac25 (patch)
tree132a84edfc61cff6b50ea91ff766c08af3244abf /ld
parent387894ff90a1048844cd81b9c190787d27d4faf9 (diff)
downloadgdb-5bf135a788d468003cb2502d0a2239fd92d1ac25.zip
gdb-5bf135a788d468003cb2502d0a2239fd92d1ac25.tar.gz
gdb-5bf135a788d468003cb2502d0a2239fd92d1ac25.tar.bz2
Add copyright notices
Diffstat (limited to 'ld')
-rw-r--r--ld/ChangeLog16
-rw-r--r--ld/MAINTAINERS6
-rw-r--r--ld/Makefile.am17
-rw-r--r--ld/Makefile.in18
-rw-r--r--ld/NEWS6
-rw-r--r--ld/README6
-rw-r--r--ld/configure.host17
-rw-r--r--ld/configure.in17
-rw-r--r--ld/emulparams/README6
-rw-r--r--ld/emultempl/README6
-rw-r--r--ld/gen-doc.texi4
-rw-r--r--ld/h8-doc.texi4
-rw-r--r--ld/ldlex-wrapper.c20
-rw-r--r--ld/scripttempl/README6
-rw-r--r--ld/testsuite/ChangeLog7
-rw-r--r--ld/testsuite/ld-elf/frame.exp2
-rw-r--r--ld/testsuite/ld-scripts/section-flags.exp2
-rw-r--r--ld/testsuite/ld-scripts/size-2.d2
-rw-r--r--ld/testsuite/ld-tic6x/tic6x.exp21
19 files changed, 181 insertions, 2 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog
index 1dd68f0..1e6b7cc 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,3 +1,19 @@
+2012-12-17 Nick Clifton <nickc@redhat.com>
+
+ * MAINTAINERS: Add copyright notice.
+ * Makefile.am: Likewise.
+ * NEWS: Likewise.
+ * README: Likewise.
+ * configure.host: Likewise.
+ * configure.in: Likewise.
+ * gen-doc.texi: Likewise.
+ * h8-doc.texi: Likewise.
+ * ldlex-wrapper.c: Likewise.
+ * emulparams/README: Likewise.
+ * emultempl/README: Likewise.
+ * scripttempl/README: Likewise.
+ * Makefile.in: Regenerate.
+
2012-12-17 Alan Modra <amodra@gmail.com>
PR ld/14962
diff --git a/ld/MAINTAINERS b/ld/MAINTAINERS
index d59a3bd..e7d8ff8 100644
--- a/ld/MAINTAINERS
+++ b/ld/MAINTAINERS
@@ -1 +1,7 @@
See ../binutils/MAINTAINERS
+
+Copyright (C) 2012 Free Software Foundation, Inc.
+
+Copying and distribution of this file, with or without modification,
+are permitted in any medium without royalty provided the copyright
+notice and this notice are preserved.
diff --git a/ld/Makefile.am b/ld/Makefile.am
index 32f3d51..995e748 100644
--- a/ld/Makefile.am
+++ b/ld/Makefile.am
@@ -1,4 +1,21 @@
## Process this file with automake to generate Makefile.in
+#
+# Copyright 2012 Free Software Foundation
+#
+# This file 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; see the file COPYING3. If not see
+# <http://www.gnu.org/licenses/>.
+#
AUTOMAKE_OPTIONS = dejagnu no-texinfo.tex no-dist foreign
ACLOCAL_AMFLAGS = -I .. -I ../config -I ../bfd
diff --git a/ld/Makefile.in b/ld/Makefile.in
index ce31edf..4e61665 100644
--- a/ld/Makefile.in
+++ b/ld/Makefile.in
@@ -15,6 +15,24 @@
@SET_MAKE@
+#
+# Copyright 2012 Free Software Foundation
+#
+# This file 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; see the file COPYING3. If not see
+# <http://www.gnu.org/licenses/>.
+#
+
VPATH = @srcdir@
pkgdatadir = $(datadir)/@PACKAGE@
diff --git a/ld/NEWS b/ld/NEWS
index 6180f75..653e8d9 100644
--- a/ld/NEWS
+++ b/ld/NEWS
@@ -559,6 +559,12 @@ Changes in version 2.1:
other utilities should work on Risc/Ultrix and Irix.
+Copyright (C) 2012 Free Software Foundation, Inc.
+
+Copying and distribution of this file, with or without modification,
+are permitted in any medium without royalty provided the copyright
+notice and this notice are preserved.
+
Local variables:
fill-column: 79
End:
diff --git a/ld/README b/ld/README
index a953e42..64fc2cb 100644
--- a/ld/README
+++ b/ld/README
@@ -65,3 +65,9 @@ workarounds to this:
* Replace "(. ${srcdir}/scripttempl/${SCRIPT_NAME}.sc)" in
genscripts.sh with "sh ${srcdir}..." (no parens) and make sure the
emulparams script used exports any shell variables it sets.
+
+Copyright (C) 2012 Free Software Foundation, Inc.
+
+Copying and distribution of this file, with or without modification,
+are permitted in any medium without royalty provided the copyright
+notice and this notice are preserved.
diff --git a/ld/configure.host b/ld/configure.host
index f47b961..baf79b8 100644
--- a/ld/configure.host
+++ b/ld/configure.host
@@ -2,6 +2,23 @@
# autoconf generated configure script. Putting it in a separate shell
# file lets us skip running autoconf when modifying host specific
# information.
+#
+# Copyright 2012 Free Software Foundation
+#
+# This file 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; see the file COPYING3. If not see
+# <http://www.gnu.org/licenses/>.
+#
# This file sets the following shell variables:
# HDEFINES host specific compiler flags
diff --git a/ld/configure.in b/ld/configure.in
index 34d1b96..0cdef93 100644
--- a/ld/configure.in
+++ b/ld/configure.in
@@ -1,5 +1,22 @@
dnl Process this file with autoconf to produce a configure script
dnl
+dnl Copyright 2012 Free Software Foundation
+dnl
+dnl This file is free software; you can redistribute it and/or modify
+dnl it under the terms of the GNU General Public License as published by
+dnl the Free Software Foundation; either version 3 of the License, or
+dnl (at your option) any later version.
+dnl
+dnl This program is distributed in the hope that it will be useful,
+dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
+dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+dnl GNU General Public License for more details.
+dnl
+dnl You should have received a copy of the GNU General Public License
+dnl along with this program; see the file COPYING3. If not see
+dnl <http://www.gnu.org/licenses/>.
+dnl
+
AC_PREREQ(2.59)
AC_INIT
AC_CONFIG_SRCDIR(ldmain.c)
diff --git a/ld/emulparams/README b/ld/emulparams/README
index b3d6d26..58e3170 100644
--- a/ld/emulparams/README
+++ b/ld/emulparams/README
@@ -1,2 +1,8 @@
The files in this directory are read by genscripts.sh as shell commands.
They set parameters for the emulations.
+
+Copyright (C) 2012 Free Software Foundation, Inc.
+
+Copying and distribution of this file, with or without modification,
+are permitted in any medium without royalty provided the copyright
+notice and this notice are preserved.
diff --git a/ld/emultempl/README b/ld/emultempl/README
index 30ec0ab..c3c7472 100644
--- a/ld/emultempl/README
+++ b/ld/emultempl/README
@@ -1,3 +1,9 @@
The files in this directory are sourced by genscripts.sh, after
setting some variables to substitute in, to produce
C source files that contain jump tables for each emulation.
+
+Copyright (C) 2012 Free Software Foundation, Inc.
+
+Copying and distribution of this file, with or without modification,
+are permitted in any medium without royalty provided the copyright
+notice and this notice are preserved.
diff --git a/ld/gen-doc.texi b/ld/gen-doc.texi
index 5a6bfd5..46fc92f 100644
--- a/ld/gen-doc.texi
+++ b/ld/gen-doc.texi
@@ -1,3 +1,7 @@
+@c Copyright 2012
+@c Free Software Foundation, Inc.
+@c For copying conditions, see the file ld.texinfo.
+
@c ------------------------------ CONFIGURATION VARS:
@c 1. Inclusiveness of this manual
@set GENERIC
diff --git a/ld/h8-doc.texi b/ld/h8-doc.texi
index bbb1fd9..023f2cc 100644
--- a/ld/h8-doc.texi
+++ b/ld/h8-doc.texi
@@ -1,3 +1,7 @@
+@c Copyright 2012
+@c Free Software Foundation, Inc.
+@c For copying conditions, see the file ld.texinfo.
+
@c ------------------------------ CONFIGURATION VARS:
@c 1. Inclusiveness of this manual
@clear GENERIC
diff --git a/ld/ldlex-wrapper.c b/ld/ldlex-wrapper.c
index ef2beba..0e5eba8 100644
--- a/ld/ldlex-wrapper.c
+++ b/ld/ldlex-wrapper.c
@@ -1,6 +1,26 @@
+/* Copyright 2012 Free Software Foundation, Inc.
+
+ This file is part of the GNU Binutils.
+
+ 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 Street - Fifth Floor, Boston,
+ MA 02110-1301, USA. */
+
/* The flex output (ldlex.c) includes stdio.h before any of the C code
in ldlex.l. Make sure we include sysdep.h first, so that config.h
can select the correct value of things like _FILE_OFFSET_BITS and
_LARGE_FILES. */
+
#include "sysdep.h"
#include "ldlex.c"
diff --git a/ld/scripttempl/README b/ld/scripttempl/README
index 26ad2e9..e20f931 100644
--- a/ld/scripttempl/README
+++ b/ld/scripttempl/README
@@ -2,3 +2,9 @@ The files in this directory are linker script templates.
genscripts.sh sets some shell variables, then sources
EMULATION.sc, to generate EMULATION.{x,xr,xu,xn,xbn} -- the script
files for default, -r, -Ur, -n, -N.
+
+Copyright (C) 2012 Free Software Foundation, Inc.
+
+Copying and distribution of this file, with or without modification,
+are permitted in any medium without royalty provided the copyright
+notice and this notice are preserved.
diff --git a/ld/testsuite/ChangeLog b/ld/testsuite/ChangeLog
index 9350540..66fd0c7 100644
--- a/ld/testsuite/ChangeLog
+++ b/ld/testsuite/ChangeLog
@@ -1,3 +1,10 @@
+2012-12-17 Nick Clifton <nickc@redhat.com>
+
+ * ld-elf/frame.exp: Add copyright notice.
+ * ld-scripts/section-flags.exp: Likewise.
+ * ld-scripts/size-2.d: Likewise.
+ * ld-tic6x/tic6x.exp: Likewise.
+
2012-12-17 H.J. Lu <hongjiu.lu@intel.com>
PR ld/14962
diff --git a/ld/testsuite/ld-elf/frame.exp b/ld/testsuite/ld-elf/frame.exp
index 66e6ac5..b9307d4 100644
--- a/ld/testsuite/ld-elf/frame.exp
+++ b/ld/testsuite/ld-elf/frame.exp
@@ -40,7 +40,7 @@ if { [istarget "sh*-*-elf*"] } {
# ??? These targets have their own .tbss section, with different meaning
# to the usual ELF .tbss.
-if { [istarget "hppa64-*-*"] || [istarget "v850-*-*"] } {
+if { [istarget "hppa64-*-*"] || [istarget "v850*-*-*"] } {
return
}
diff --git a/ld/testsuite/ld-scripts/section-flags.exp b/ld/testsuite/ld-scripts/section-flags.exp
index 4186449..0d36f65 100644
--- a/ld/testsuite/ld-scripts/section-flags.exp
+++ b/ld/testsuite/ld-scripts/section-flags.exp
@@ -2,6 +2,8 @@
#
# This file is part of the GNU Binutils.
#
+# Copyright 2012 Free Software Foundation, 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
diff --git a/ld/testsuite/ld-scripts/size-2.d b/ld/testsuite/ld-scripts/size-2.d
index beb18e4..c925673 100644
--- a/ld/testsuite/ld-scripts/size-2.d
+++ b/ld/testsuite/ld-scripts/size-2.d
@@ -1,7 +1,7 @@
#source: size-2.s
#ld: -T size-2.t
#readelf: -l --wide
-#xfail: "hppa64-*-*" "v850-*-*"
+#xfail: "hppa64-*-*" "v850*-*-*"
#...
Program Headers:
diff --git a/ld/testsuite/ld-tic6x/tic6x.exp b/ld/testsuite/ld-tic6x/tic6x.exp
index 5d7b107..858e879 100644
--- a/ld/testsuite/ld-tic6x/tic6x.exp
+++ b/ld/testsuite/ld-tic6x/tic6x.exp
@@ -1,3 +1,24 @@
+# Expect script for ld-tic6x tests
+#
+# Copyright 2012 Free Software Foundation, Inc.
+#
+# This file is part of the GNU Binutils.
+#
+# 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 Street - Fifth Floor, Boston,
+# MA 02110-1301, USA.
+
if { ! [istarget tic6x-*-*] } {
return
}