diff options
Diffstat (limited to 'ldso')
-rw-r--r-- | ldso/Makefile | 22 | ||||
-rw-r--r-- | ldso/ldso/Makefile | 1 | ||||
-rw-r--r-- | ldso/libdl/Makefile | 1 | ||||
-rw-r--r-- | ldso/man/Makefile | 22 | ||||
-rw-r--r-- | ldso/util/Makefile | 22 | ||||
-rw-r--r-- | ldso/util/ldd.c | 7 | ||||
-rw-r--r-- | ldso/util/readelf.c | 7 |
7 files changed, 76 insertions, 6 deletions
diff --git a/ldso/Makefile b/ldso/Makefile index c606a9fba..722757ebd 100644 --- a/ldso/Makefile +++ b/ldso/Makefile @@ -1,3 +1,25 @@ +# Makefile for uClibc +# +# Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org> +# +# This program is free software; you can redistribute it and/or modify it under +# the terms of the GNU Library General Public License as published by the Free +# Software Foundation; either version 2 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 Library General Public License for more +# details. +# +# You should have received a copy of the GNU Library General Public License +# along with this program; if not, write to the Free Software Foundation, Inc., +# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# +# Derived in part from the Linux-8086 C library, the GNU C Library, and several +# other sundry sources. Files within this library are copyright by their +# respective copyright holders. + TOPDIR=../ include $(TOPDIR)Rules.mak diff --git a/ldso/ldso/Makefile b/ldso/ldso/Makefile index 617784ec9..a61998b10 100644 --- a/ldso/ldso/Makefile +++ b/ldso/ldso/Makefile @@ -1,6 +1,7 @@ # Makefile for uClibc # # Copyright (C) 2000 by Lineo, inc. +# Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org> # # This program is free software; you can redistribute it and/or modify it under # the terms of the GNU Library General Public License as published by the Free diff --git a/ldso/libdl/Makefile b/ldso/libdl/Makefile index 24e53fb69..3187ee340 100644 --- a/ldso/libdl/Makefile +++ b/ldso/libdl/Makefile @@ -1,6 +1,7 @@ # Makefile for uClibc # # Copyright (C) 2000 by Lineo, inc. +# Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org> # # This program is free software; you can redistribute it and/or modify it under # the terms of the GNU Library General Public License as published by the Free diff --git a/ldso/man/Makefile b/ldso/man/Makefile index a701e1513..de6aef512 100644 --- a/ldso/man/Makefile +++ b/ldso/man/Makefile @@ -1,3 +1,25 @@ +# Makefile for uClibc +# +# Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org> +# +# This program is free software; you can redistribute it and/or modify it under +# the terms of the GNU Library General Public License as published by the Free +# Software Foundation; either version 2 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 Library General Public License for more +# details. +# +# You should have received a copy of the GNU Library General Public License +# along with this program; if not, write to the Free Software Foundation, Inc., +# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# +# Derived in part from the Linux-8086 C library, the GNU C Library, and several +# other sundry sources. Files within this library are copyright by their +# respective copyright holders. + include ../Config.mk ALL = #ld.so.info diff --git a/ldso/util/Makefile b/ldso/util/Makefile index baa3fa897..6e3d5530b 100644 --- a/ldso/util/Makefile +++ b/ldso/util/Makefile @@ -1,3 +1,25 @@ +# Makefile for uClibc +# +# Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org> +# +# This program is free software; you can redistribute it and/or modify it under +# the terms of the GNU Library General Public License as published by the Free +# Software Foundation; either version 2 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 Library General Public License for more +# details. +# +# You should have received a copy of the GNU Library General Public License +# along with this program; if not, write to the Free Software Foundation, Inc., +# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# +# Derived in part from the Linux-8086 C library, the GNU C Library, and several +# other sundry sources. Files within this library are copyright by their +# respective copyright holders. + TOPDIR=../../ include $(TOPDIR)Rules.mak diff --git a/ldso/util/ldd.c b/ldso/util/ldd.c index 482c74f17..aea135e60 100644 --- a/ldso/util/ldd.c +++ b/ldso/util/ldd.c @@ -2,13 +2,14 @@ /* * A small little ldd implementation for uClibc * - * Copyright (C) 2001 by Lineo, inc. - * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org> + * Copyright (C) 2000 by Lineo, inc. + * Copyright (C) 2000,2001 Erik Andersen <andersee@debian.org> + * Written by Erik Andersen <andersee@debian.org> * * Several functions in this file (specifically, elf_find_section_type(), * elf_find_phdr_type(), and elf_find_dynamic(), were stolen from elflib.c from * elfvector (http://www.BitWagon.com/elfvector.html) by John F. Reiser - * <jreiser@BitWagon.com>, and which is copyright 2000 BitWagon Software LLC + * <jreiser@BitWagon.com>, which is copyright 2000 BitWagon Software LLC * (GPL2). * * This program is free software; you can redistribute it and/or modify diff --git a/ldso/util/readelf.c b/ldso/util/readelf.c index 0006f5f9e..4467fc684 100644 --- a/ldso/util/readelf.c +++ b/ldso/util/readelf.c @@ -2,13 +2,14 @@ /* * A small little readelf implementation for uClibc * - * Copyright (C) 2001 by Lineo, inc. - * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org> + * Copyright (C) 2000 by Lineo, inc. + * Copyright (C) 2000,2001 Erik Andersen <andersee@debian.org> + * Written by Erik Andersen <andersee@debian.org> * * Several functions in this file (specifically, elf_find_section_type(), * elf_find_phdr_type(), and elf_find_dynamic(), were stolen from elflib.c from * elfvector (http://www.BitWagon.com/elfvector.html) by John F. Reiser - * <jreiser@BitWagon.com>, and which is copyright 2000 BitWagon Software LLC + * <jreiser@BitWagon.com>, which is copyright 2000 BitWagon Software LLC * (GPL2). * * This program is free software; you can redistribute it and/or modify |