diff options
author | Paul Menzel <paulepanter@users.sourceforge.net> | 2013-02-23 18:37:27 +0100 |
---|---|---|
committer | Paul Menzel <paulepanter@users.sourceforge.net> | 2013-03-01 10:16:08 +0100 |
commit | a46a712610c130cdadfe1ebf6bec9ad22e474dac (patch) | |
tree | b8b82c9960630d65fb7f3e5715f8280cc766e067 /payloads/bayou | |
parent | f12e56181788387c560c9b8d0f3d61fce4a4333a (diff) |
GPLv2 notice: Unify all files to just use one space in »MA 02110-1301«
In the file `COPYING` in the coreboot repository and upstream [1]
just one space is used.
The following command was used to convert all files.
$ git grep -l 'MA 02' | xargs sed -i 's/MA 02/MA 02/'
[1] http://www.gnu.org/licenses/gpl-2.0.txt
Change-Id: Ic956dab2820a9e2ccb7841cab66966ba168f305f
Signed-off-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-on: http://review.coreboot.org/2490
Tested-by: build bot (Jenkins)
Reviewed-by: Anton Kochkov <anton.kochkov@gmail.com>
Diffstat (limited to 'payloads/bayou')
-rw-r--r-- | payloads/bayou/Makefile | 2 | ||||
-rw-r--r-- | payloads/bayou/bayou.h | 2 | ||||
-rw-r--r-- | payloads/bayou/bayou.xml.example | 2 | ||||
-rw-r--r-- | payloads/bayou/config.c | 2 | ||||
-rw-r--r-- | payloads/bayou/main.c | 2 | ||||
-rw-r--r-- | payloads/bayou/menu.c | 2 | ||||
-rw-r--r-- | payloads/bayou/payload.c | 2 | ||||
-rw-r--r-- | payloads/bayou/self.c | 2 | ||||
-rw-r--r-- | payloads/bayou/self.h | 2 | ||||
-rw-r--r-- | payloads/bayou/util/pbuilder/Makefile | 2 | ||||
-rw-r--r-- | payloads/bayou/util/pbuilder/config.c | 2 | ||||
-rw-r--r-- | payloads/bayou/util/pbuilder/create.c | 2 | ||||
-rw-r--r-- | payloads/bayou/util/pbuilder/liblar/Makefile | 2 | ||||
-rw-r--r-- | payloads/bayou/util/pbuilder/liblar/lib.c | 2 | ||||
-rw-r--r-- | payloads/bayou/util/pbuilder/liblar/liblar.h | 2 | ||||
-rw-r--r-- | payloads/bayou/util/pbuilder/liblar/self.h | 2 | ||||
-rw-r--r-- | payloads/bayou/util/pbuilder/lzma/C/LGPL.txt | 4 | ||||
-rw-r--r-- | payloads/bayou/util/pbuilder/lzma/Makefile | 2 | ||||
-rw-r--r-- | payloads/bayou/util/pbuilder/main.c | 2 | ||||
-rw-r--r-- | payloads/bayou/util/pbuilder/pbuilder.h | 2 | ||||
-rw-r--r-- | payloads/bayou/util/pbuilder/show.c | 2 |
21 files changed, 22 insertions, 22 deletions
diff --git a/payloads/bayou/Makefile b/payloads/bayou/Makefile index 4ad9d0de03..0280ef5243 100644 --- a/payloads/bayou/Makefile +++ b/payloads/bayou/Makefile @@ -14,7 +14,7 @@ ## ## 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 +## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA ## CONFIG_LZMA=y diff --git a/payloads/bayou/bayou.h b/payloads/bayou/bayou.h index d3d58a6dbd..e3df08c932 100644 --- a/payloads/bayou/bayou.h +++ b/payloads/bayou/bayou.h @@ -14,7 +14,7 @@ * * 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 + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #ifndef BAYOU_H_ diff --git a/payloads/bayou/bayou.xml.example b/payloads/bayou/bayou.xml.example index 60fa783010..53dfd52fa9 100644 --- a/payloads/bayou/bayou.xml.example +++ b/payloads/bayou/bayou.xml.example @@ -14,7 +14,7 @@ ## ## 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 +## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA --> <!-- Sample Bayou config file. Adapt as needed, then rename to bayou.xml. --> diff --git a/payloads/bayou/config.c b/payloads/bayou/config.c index 3aba88f9a4..3b69c4c8de 100644 --- a/payloads/bayou/config.c +++ b/payloads/bayou/config.c @@ -14,7 +14,7 @@ * * 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 + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #include "bayou.h" diff --git a/payloads/bayou/main.c b/payloads/bayou/main.c index a9e76d7c97..f7bcceff9c 100644 --- a/payloads/bayou/main.c +++ b/payloads/bayou/main.c @@ -14,7 +14,7 @@ * * 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 + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #include "bayou.h" diff --git a/payloads/bayou/menu.c b/payloads/bayou/menu.c index cf881c724b..7e0e72962d 100644 --- a/payloads/bayou/menu.c +++ b/payloads/bayou/menu.c @@ -14,7 +14,7 @@ * * 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 + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #include <libpayload.h> diff --git a/payloads/bayou/payload.c b/payloads/bayou/payload.c index 20ea74b3d4..6b031bab83 100644 --- a/payloads/bayou/payload.c +++ b/payloads/bayou/payload.c @@ -14,7 +14,7 @@ * * 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 + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #include "bayou.h" diff --git a/payloads/bayou/self.c b/payloads/bayou/self.c index 0de2a62260..94b4623494 100644 --- a/payloads/bayou/self.c +++ b/payloads/bayou/self.c @@ -14,7 +14,7 @@ * * 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 + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #include "bayou.h" diff --git a/payloads/bayou/self.h b/payloads/bayou/self.h index 3c5552e6b7..f329381c39 100644 --- a/payloads/bayou/self.h +++ b/payloads/bayou/self.h @@ -14,7 +14,7 @@ * * 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 + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #ifndef SELF_H_ diff --git a/payloads/bayou/util/pbuilder/Makefile b/payloads/bayou/util/pbuilder/Makefile index bd26b0c658..fe850ba0f8 100644 --- a/payloads/bayou/util/pbuilder/Makefile +++ b/payloads/bayou/util/pbuilder/Makefile @@ -14,7 +14,7 @@ ## ## 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 +## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA ## PBUILDOBJS := config.o create.o show.o main.o diff --git a/payloads/bayou/util/pbuilder/config.c b/payloads/bayou/util/pbuilder/config.c index a1d49fb69c..b815d808bf 100644 --- a/payloads/bayou/util/pbuilder/config.c +++ b/payloads/bayou/util/pbuilder/config.c @@ -14,7 +14,7 @@ * * 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 + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #define _GNU_SOURCE diff --git a/payloads/bayou/util/pbuilder/create.c b/payloads/bayou/util/pbuilder/create.c index 313283c302..24b972db0c 100644 --- a/payloads/bayou/util/pbuilder/create.c +++ b/payloads/bayou/util/pbuilder/create.c @@ -14,7 +14,7 @@ * * 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 + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #include <stdlib.h> diff --git a/payloads/bayou/util/pbuilder/liblar/Makefile b/payloads/bayou/util/pbuilder/liblar/Makefile index 27585dc89d..9bb4b683ad 100644 --- a/payloads/bayou/util/pbuilder/liblar/Makefile +++ b/payloads/bayou/util/pbuilder/liblar/Makefile @@ -14,7 +14,7 @@ ## ## 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 +## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA ## HOSTCC = gcc diff --git a/payloads/bayou/util/pbuilder/liblar/lib.c b/payloads/bayou/util/pbuilder/liblar/lib.c index f0e0a41bd4..fd34d851c1 100644 --- a/payloads/bayou/util/pbuilder/liblar/lib.c +++ b/payloads/bayou/util/pbuilder/liblar/lib.c @@ -14,7 +14,7 @@ * * 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 + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #include <stdio.h> diff --git a/payloads/bayou/util/pbuilder/liblar/liblar.h b/payloads/bayou/util/pbuilder/liblar/liblar.h index bd60e1e31b..93a6eee52f 100644 --- a/payloads/bayou/util/pbuilder/liblar/liblar.h +++ b/payloads/bayou/util/pbuilder/liblar/liblar.h @@ -14,7 +14,7 @@ * * 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 + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #ifndef _LIBLAR_H_ diff --git a/payloads/bayou/util/pbuilder/liblar/self.h b/payloads/bayou/util/pbuilder/liblar/self.h index 0667373d3d..fd0c4903bb 100644 --- a/payloads/bayou/util/pbuilder/liblar/self.h +++ b/payloads/bayou/util/pbuilder/liblar/self.h @@ -14,7 +14,7 @@ * * 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 + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #ifndef SELF_H_ diff --git a/payloads/bayou/util/pbuilder/lzma/C/LGPL.txt b/payloads/bayou/util/pbuilder/lzma/C/LGPL.txt index f3926a6155..63ac1b61b0 100644 --- a/payloads/bayou/util/pbuilder/lzma/C/LGPL.txt +++ b/payloads/bayou/util/pbuilder/lzma/C/LGPL.txt @@ -2,7 +2,7 @@ Version 2.1, February 1999
Copyright (C) 1991, 1999 Free Software Foundation, Inc.
- 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
@@ -485,7 +485,7 @@ convey the exclusion of warranty; and each file should have at least the You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Also add information on how to contact you by electronic and paper mail.
diff --git a/payloads/bayou/util/pbuilder/lzma/Makefile b/payloads/bayou/util/pbuilder/lzma/Makefile index 0adb341ee9..6c2ecd715e 100644 --- a/payloads/bayou/util/pbuilder/lzma/Makefile +++ b/payloads/bayou/util/pbuilder/lzma/Makefile @@ -15,7 +15,7 @@ ## ## 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 +## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA ## LZMA_OBJ := $(obj)/util/lzma/LZMAEncoder.o $(obj)/util/lzma/LZInWindow.o diff --git a/payloads/bayou/util/pbuilder/main.c b/payloads/bayou/util/pbuilder/main.c index f5ce374b16..a678157c6c 100644 --- a/payloads/bayou/util/pbuilder/main.c +++ b/payloads/bayou/util/pbuilder/main.c @@ -14,7 +14,7 @@ * * 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 + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #include <stdio.h> diff --git a/payloads/bayou/util/pbuilder/pbuilder.h b/payloads/bayou/util/pbuilder/pbuilder.h index 80902bc78f..e903bd165d 100644 --- a/payloads/bayou/util/pbuilder/pbuilder.h +++ b/payloads/bayou/util/pbuilder/pbuilder.h @@ -14,7 +14,7 @@ * * 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 + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #include <stdio.h> diff --git a/payloads/bayou/util/pbuilder/show.c b/payloads/bayou/util/pbuilder/show.c index 9cb0598c50..f06fb95812 100644 --- a/payloads/bayou/util/pbuilder/show.c +++ b/payloads/bayou/util/pbuilder/show.c @@ -14,7 +14,7 @@ * * 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 + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #include <stdio.h> |