From 39abba1bc2915a5247cced0a2f926991fc04be84 Mon Sep 17 00:00:00 2001 From: Oleg Hahm Date: Sun, 9 Nov 2014 15:06:25 +0100 Subject: [PATCH] licenses: fix miss-spelled & missing boiler plates --- boards/pttu/include/board.h | 8 ++++++++ boards/redbee-econotag/drivers/include/uart.h | 7 +++---- boards/telosb/include/board-conf.h | 13 +++++++------ boards/telosb/include/board.h | 7 ++++--- boards/wsn430-common/include/board-conf.h | 7 +++++-- boards/wsn430-v1_3b/include/board.h | 5 +++-- boards/wsn430-v1_4/include/board.h | 5 +++-- cpu/arm_common/include/arm_cpu.h | 8 ++++++++ cpu/arm_common/include/hwtimer_cpu.h | 8 ++++++++ cpu/arm_common/include/iap.h | 8 ++++++++ cpu/lpc2387/include/lpc2387.h | 6 ++++-- cpu/mc1322x/asm/include/asm.h | 7 +++---- cpu/mc1322x/include/cpu-conf.h | 7 +++---- cpu/mc1322x/include/cpu.h | 5 +++-- cpu/mc1322x/include/mc1322x.h | 9 ++++----- cpu/mc1322x/maca/include/maca.h | 7 +++---- cpu/mc1322x/maca/include/maca_packet.h | 7 +++---- cpu/msp430-common/include/sys/time.h | 8 ++++++++ cpu/x86/include/x86_pci_init.h | 18 ++++++++++++++++++ sys/posix/include/semaphore.h | 8 ++++++++ sys/posix/pthread/include/pthread.h | 8 ++++++++ sys/posix/pthread/include/pthread_barrier.h | 8 ++++++++ .../pthread/include/pthread_cancellation.h | 8 ++++++++ sys/posix/pthread/include/pthread_cleanup.h | 8 ++++++++ sys/posix/pthread/include/pthread_mutex.h | 8 ++++++++ sys/posix/pthread/include/pthread_mutex_attr.h | 8 ++++++++ sys/posix/pthread/include/pthread_once.h | 8 ++++++++ sys/posix/pthread/include/pthread_rwlock.h | 8 ++++++++ .../pthread/include/pthread_rwlock_attr.h | 8 ++++++++ sys/posix/pthread/include/pthread_scheduling.h | 8 ++++++++ sys/posix/pthread/include/pthread_spin.h | 8 ++++++++ sys/posix/pthread/include/pthread_threading.h | 8 ++++++++ .../pthread/include/pthread_threading_attr.h | 8 ++++++++ 33 files changed, 218 insertions(+), 44 deletions(-) diff --git a/boards/pttu/include/board.h b/boards/pttu/include/board.h index 799477718..25f7e65ff 100644 --- a/boards/pttu/include/board.h +++ b/boards/pttu/include/board.h @@ -1,3 +1,11 @@ +/* + * Copyright (C) 2014 Freie Universität Berlin + * + * This file is subject to the terms and conditions of the GNU Lesser + * General Public License v2.1. See the file LICENSE in the top level + * directory for more details. + */ + /** * @defgroup boards_pttu PTTU * @ingroup boards diff --git a/boards/redbee-econotag/drivers/include/uart.h b/boards/redbee-econotag/drivers/include/uart.h index ed898e0e5..546c3fe7e 100644 --- a/boards/redbee-econotag/drivers/include/uart.h +++ b/boards/redbee-econotag/drivers/include/uart.h @@ -2,10 +2,9 @@ * uart.h - UART driver for redbee * Copyright (C) 2013 Thomas Eichinger * - * This source code is licensed under the GNU Lesser General Public License, - * Version 2. See the file LICENSE for more details. - * - * This file is part of RIOT. + * This file is subject to the terms and conditions of the GNU Lesser + * General Public License v2.1. See the file LICENSE in the top level + * directory for more details. */ #ifndef UART_H diff --git a/boards/telosb/include/board-conf.h b/boards/telosb/include/board-conf.h index 86efca08e..bdf1dc619 100644 --- a/boards/telosb/include/board-conf.h +++ b/boards/telosb/include/board-conf.h @@ -1,9 +1,10 @@ -/** - * board-conf.h. - * - * This source code is licensed under the GNU Lesser General Public License, - * Version 2. See the file LICENSE for more details. - */ +/* + * Copyright (C) 2014 INRIA + * + * This file is subject to the terms and conditions of the GNU Lesser + * General Public License v2.1. See the file LICENSE in the top level + * directory for more details. + */ #ifndef BOARD_CONF_H #define BOARD_CONF_H diff --git a/boards/telosb/include/board.h b/boards/telosb/include/board.h index 82a4387d4..c5ff8ac94 100644 --- a/boards/telosb/include/board.h +++ b/boards/telosb/include/board.h @@ -1,8 +1,9 @@ /* - * Copyright (C) 2013 INRIA + * Copyright (C) 2013, 2014 INRIA * - * This source code is licensed under the GNU Lesser General Public License, - * Version 2. See the file LICENSE for more details. + * This file is subject to the terms and conditions of the GNU Lesser + * General Public License v2.1. See the file LICENSE in the top level + * directory for more details. */ /** diff --git a/boards/wsn430-common/include/board-conf.h b/boards/wsn430-common/include/board-conf.h index 87719d992..c6985226d 100644 --- a/boards/wsn430-common/include/board-conf.h +++ b/boards/wsn430-common/include/board-conf.h @@ -1,6 +1,9 @@ /* - * This source code is licensed under the GNU Lesser General Public License, - * Version 2. See the file LICENSE for more details. + * Copyright (C) 2013 Milan Babel + * + * This file is subject to the terms and conditions of the GNU Lesser + * General Public License v2.1. See the file LICENSE in the top level + * directory for more details. */ /** diff --git a/boards/wsn430-v1_3b/include/board.h b/boards/wsn430-v1_3b/include/board.h index 40834091f..685a0f58d 100644 --- a/boards/wsn430-v1_3b/include/board.h +++ b/boards/wsn430-v1_3b/include/board.h @@ -1,8 +1,9 @@ /* * Copyright (C) 2013 Milan Babel * - * This source code is licensed under the GNU Lesser General Public License, - * Version 2. See the file LICENSE for more details. + * This file is subject to the terms and conditions of the GNU Lesser + * General Public License v2.1. See the file LICENSE in the top level + * directory for more details. */ /** diff --git a/boards/wsn430-v1_4/include/board.h b/boards/wsn430-v1_4/include/board.h index 913c8cb0c..409d5d3dc 100644 --- a/boards/wsn430-v1_4/include/board.h +++ b/boards/wsn430-v1_4/include/board.h @@ -1,8 +1,9 @@ /* * Copyright (C) 2013 Milan Babel * - * This source code is licensed under the GNU Lesser General Public License, - * Version 2. See the file LICENSE for more details. + * This file is subject to the terms and conditions of the GNU Lesser + * General Public License v2.1. See the file LICENSE in the top level + * directory for more details. */ /** diff --git a/cpu/arm_common/include/arm_cpu.h b/cpu/arm_common/include/arm_cpu.h index 23a653d0d..6fcc806aa 100644 --- a/cpu/arm_common/include/arm_cpu.h +++ b/cpu/arm_common/include/arm_cpu.h @@ -1,3 +1,11 @@ +/* + * Copyright (C) 2014 Freie Universität Berlin + * + * This file is subject to the terms and conditions of the GNU Lesser + * General Public License v2.1. See the file LICENSE in the top level + * directory for more details. + */ + #ifndef _ARM_CPU_H #define _ARM_CPU_H diff --git a/cpu/arm_common/include/hwtimer_cpu.h b/cpu/arm_common/include/hwtimer_cpu.h index c0cb4f45f..13a5d3502 100644 --- a/cpu/arm_common/include/hwtimer_cpu.h +++ b/cpu/arm_common/include/hwtimer_cpu.h @@ -1,3 +1,11 @@ +/* + * Copyright (C) 2009 Freie Universität Berlin + * + * This file is subject to the terms and conditions of the GNU Lesser + * General Public License v2.1. See the file LICENSE in the top level + * directory for more details. + */ + /* * lpc2387_timer_0_1.h * diff --git a/cpu/arm_common/include/iap.h b/cpu/arm_common/include/iap.h index 28cb5da3f..a90b54fe2 100644 --- a/cpu/arm_common/include/iap.h +++ b/cpu/arm_common/include/iap.h @@ -1,3 +1,11 @@ +/* + * Copyright (C) 2014 Freie Universität Berlin + * + * This file is subject to the terms and conditions of the GNU Lesser + * General Public License v2.1. See the file LICENSE in the top level + * directory for more details. + */ + #ifndef IAP_H_ #define IAP_H_ diff --git a/cpu/lpc2387/include/lpc2387.h b/cpu/lpc2387/include/lpc2387.h index 5c362a92a..4e3c651a0 100644 --- a/cpu/lpc2387/include/lpc2387.h +++ b/cpu/lpc2387/include/lpc2387.h @@ -1,8 +1,10 @@ /* - * lpc2387.h - * * Copyright (C) 2009 Kaspar Schleiser * + * This file is subject to the terms and conditions of the GNU Lesser + * General Public License v2.1. See the file LICENSE in the top level + * directory for more details. + * * Parts taken from FeuerWhere-Project, lpc2387.h. */ diff --git a/cpu/mc1322x/asm/include/asm.h b/cpu/mc1322x/asm/include/asm.h index 1b95a46be..07a1fcfde 100644 --- a/cpu/mc1322x/asm/include/asm.h +++ b/cpu/mc1322x/asm/include/asm.h @@ -2,10 +2,9 @@ * asm.h - defines registers for the Advanced Security Module of the mc1322x * Copyright (C) 2013 Thomas Eichinger * - * This source code is licensed under the GNU Lesser General Public License, - * Version 2. See the file LICENSE for more details. - * - * This file is part of RIOT. + * This file is subject to the terms and conditions of the GNU Lesser + * General Public License v2.1. See the file LICENSE in the top level + * directory for more details. */ #ifndef ASM_H diff --git a/cpu/mc1322x/include/cpu-conf.h b/cpu/mc1322x/include/cpu-conf.h index 8040b23ea..70737d62b 100644 --- a/cpu/mc1322x/include/cpu-conf.h +++ b/cpu/mc1322x/include/cpu-conf.h @@ -2,10 +2,9 @@ * cpu.h - mc1322x specific definitions * Copyright (C) 2013 Oliver Hahm * - * This source code is licensed under the GNU Lesser General Public License, - * Version 2. See the file LICENSE for more details. - * - * This file is part of RIOT + * This file is subject to the terms and conditions of the GNU Lesser + * General Public License v2.1. See the file LICENSE in the top level + * directory for more details. */ #ifndef CPUCONF_H_ diff --git a/cpu/mc1322x/include/cpu.h b/cpu/mc1322x/include/cpu.h index 6569497bc..8e27c7a87 100644 --- a/cpu/mc1322x/include/cpu.h +++ b/cpu/mc1322x/include/cpu.h @@ -2,8 +2,9 @@ * cpu.h - mc1322x specific definitions * Copyright (C) 2013 Oliver Hahm * - * This source code is licensed under the GNU Lesser General Public License, - * Version 2. See the file LICENSE for more details. + * This file is subject to the terms and conditions of the GNU Lesser + * General Public License v2.1. See the file LICENSE in the top level + * directory for more details. */ /** diff --git a/cpu/mc1322x/include/mc1322x.h b/cpu/mc1322x/include/mc1322x.h index 899191c29..5b794a3d6 100644 --- a/cpu/mc1322x/include/mc1322x.h +++ b/cpu/mc1322x/include/mc1322x.h @@ -1,11 +1,10 @@ /* * mc1322x.h - mc1322x specific definitions - * Copyright (C) 2013 Oliver Hahm + * Copyright (C) 2013, 2014 Oliver Hahm * - * This source code is licensed under the GNU Lesser General Public License, - * Version 2. See the file LICENSE for more details. - * - * This file is part of RIOT. + * This file is subject to the terms and conditions of the GNU Lesser + * General Public License v2.1. See the file LICENSE in the top level + * directory for more details. */ #ifndef MC1322X_H diff --git a/cpu/mc1322x/maca/include/maca.h b/cpu/mc1322x/maca/include/maca.h index 94956467d..6b788d911 100644 --- a/cpu/mc1322x/maca/include/maca.h +++ b/cpu/mc1322x/maca/include/maca.h @@ -2,10 +2,9 @@ * maca.h - The MACA driver for the Redbee EconoTag * Copyright (C) 2013 Thomas Eichinger * - * This source code is licensed under the GNU Lesser General Public License, - * Version 2. See the file LICENSE for more details. - * - * This file is part of RIOT. + * This file is subject to the terms and conditions of the GNU Lesser + * General Public License v2.1. See the file LICENSE in the top level + * directory for more details. */ #ifndef MACA_H_ diff --git a/cpu/mc1322x/maca/include/maca_packet.h b/cpu/mc1322x/maca/include/maca_packet.h index ba154859a..c1429c253 100644 --- a/cpu/mc1322x/maca/include/maca_packet.h +++ b/cpu/mc1322x/maca/include/maca_packet.h @@ -2,10 +2,9 @@ * maca_packet.h - defines a rxtx packet for the MACA driver * Copyright (C) 2013 Thomas Eichinger * - * This source code is licensed under the GNU Lesser General Public License, - * Version 2. See the file LICENSE for more details. - * - * This file is part of RIOT. + * This file is subject to the terms and conditions of the GNU Lesser + * General Public License v2.1. See the file LICENSE in the top level + * directory for more details. */ #ifndef PACKET_H diff --git a/cpu/msp430-common/include/sys/time.h b/cpu/msp430-common/include/sys/time.h index 0f0245c77..5bd63aed7 100644 --- a/cpu/msp430-common/include/sys/time.h +++ b/cpu/msp430-common/include/sys/time.h @@ -1,3 +1,11 @@ +/* + * Copyright (C) 2014 INRIA + * + * This file is subject to the terms and conditions of the GNU Lesser + * General Public License v2.1. See the file LICENSE in the top level + * directory for more details. + */ + #ifndef TIME_H #define TIME_H diff --git a/cpu/x86/include/x86_pci_init.h b/cpu/x86/include/x86_pci_init.h index d9078f9b3..3dd4e59fd 100644 --- a/cpu/x86/include/x86_pci_init.h +++ b/cpu/x86/include/x86_pci_init.h @@ -1,3 +1,21 @@ +/* + * Copyright (C) 2014 René Kijewski + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + #ifndef __X86__PCI_INIT__H #define __X86__PCI_INIT__H diff --git a/sys/posix/include/semaphore.h b/sys/posix/include/semaphore.h index 60e359750..c39579d1d 100644 --- a/sys/posix/include/semaphore.h +++ b/sys/posix/include/semaphore.h @@ -1,3 +1,11 @@ +/* + * Copyright (C) 2013 Freie Universität Berlin + * + * This file is subject to the terms and conditions of the GNU Lesser + * General Public License v2.1. See the file LICENSE in the top level + * directory for more details. + */ + #ifndef _SEMAPHORE_H #define _SEMAPHORE_H 1 diff --git a/sys/posix/pthread/include/pthread.h b/sys/posix/pthread/include/pthread.h index b440ead6b..077fc44d1 100644 --- a/sys/posix/pthread/include/pthread.h +++ b/sys/posix/pthread/include/pthread.h @@ -1,3 +1,11 @@ +/* + * Copyright (C) 2014 Freie Universität Berlin + * + * This file is subject to the terms and conditions of the GNU Lesser + * General Public License v2.1. See the file LICENSE in the top level + * directory for more details. + */ + /** * @defgroup pthread POSIX threads * POSIX conforming multi-threading features. diff --git a/sys/posix/pthread/include/pthread_barrier.h b/sys/posix/pthread/include/pthread_barrier.h index 5bbb082c4..6a68577fe 100644 --- a/sys/posix/pthread/include/pthread_barrier.h +++ b/sys/posix/pthread/include/pthread_barrier.h @@ -1,3 +1,11 @@ +/* + * Copyright (C) 2014 Freie Universität Berlin + * + * This file is subject to the terms and conditions of the GNU Lesser + * General Public License v2.1. See the file LICENSE in the top level + * directory for more details. + */ + /** * @ingroup pthread * @{ diff --git a/sys/posix/pthread/include/pthread_cancellation.h b/sys/posix/pthread/include/pthread_cancellation.h index c85a91c56..67c34fc23 100644 --- a/sys/posix/pthread/include/pthread_cancellation.h +++ b/sys/posix/pthread/include/pthread_cancellation.h @@ -1,3 +1,11 @@ +/* + * Copyright (C) 2014 René Kijewski + * + * This file is subject to the terms and conditions of the GNU Lesser + * General Public License v2.1. See the file LICENSE in the top level + * directory for more details. + */ + /** * @ingroup pthread * @{ diff --git a/sys/posix/pthread/include/pthread_cleanup.h b/sys/posix/pthread/include/pthread_cleanup.h index 166ebd755..febe507c1 100644 --- a/sys/posix/pthread/include/pthread_cleanup.h +++ b/sys/posix/pthread/include/pthread_cleanup.h @@ -1,3 +1,11 @@ +/* + * Copyright (C) 2014 René Kijewski + * + * This file is subject to the terms and conditions of the GNU Lesser + * General Public License v2.1. See the file LICENSE in the top level + * directory for more details. + */ + /** * @ingroup pthread * @{ diff --git a/sys/posix/pthread/include/pthread_mutex.h b/sys/posix/pthread/include/pthread_mutex.h index 4b982d48c..10858e204 100644 --- a/sys/posix/pthread/include/pthread_mutex.h +++ b/sys/posix/pthread/include/pthread_mutex.h @@ -1,3 +1,11 @@ +/* + * Copyright (C) 2014 Freie Universität Berlin + * + * This file is subject to the terms and conditions of the GNU Lesser + * General Public License v2.1. See the file LICENSE in the top level + * directory for more details. + */ + /** * @ingroup pthread * @{ diff --git a/sys/posix/pthread/include/pthread_mutex_attr.h b/sys/posix/pthread/include/pthread_mutex_attr.h index 4bdd03b3a..ad38b27c5 100644 --- a/sys/posix/pthread/include/pthread_mutex_attr.h +++ b/sys/posix/pthread/include/pthread_mutex_attr.h @@ -1,3 +1,11 @@ +/* + * Copyright (C) 2014 Freie Universität Berlin + * + * This file is subject to the terms and conditions of the GNU Lesser + * General Public License v2.1. See the file LICENSE in the top level + * directory for more details. + */ + /** * @ingroup pthread * @{ diff --git a/sys/posix/pthread/include/pthread_once.h b/sys/posix/pthread/include/pthread_once.h index e5e399f2a..349846529 100644 --- a/sys/posix/pthread/include/pthread_once.h +++ b/sys/posix/pthread/include/pthread_once.h @@ -1,3 +1,11 @@ +/* + * Copyright (C) 2014 René Kijewski + * + * This file is subject to the terms and conditions of the GNU Lesser + * General Public License v2.1. See the file LICENSE in the top level + * directory for more details. + */ + /** * @ingroup pthread * @{ diff --git a/sys/posix/pthread/include/pthread_rwlock.h b/sys/posix/pthread/include/pthread_rwlock.h index 0cb07e12e..a98edacbe 100644 --- a/sys/posix/pthread/include/pthread_rwlock.h +++ b/sys/posix/pthread/include/pthread_rwlock.h @@ -1,3 +1,11 @@ +/* + * Copyright (C) 2014 René Kijewski + * + * This file is subject to the terms and conditions of the GNU Lesser + * General Public License v2.1. See the file LICENSE in the top level + * directory for more details. + */ + /** * @ingroup pthread * @{ diff --git a/sys/posix/pthread/include/pthread_rwlock_attr.h b/sys/posix/pthread/include/pthread_rwlock_attr.h index 05c1d9ce4..4164ca1dc 100644 --- a/sys/posix/pthread/include/pthread_rwlock_attr.h +++ b/sys/posix/pthread/include/pthread_rwlock_attr.h @@ -1,3 +1,11 @@ +/* + * Copyright (C) 2014 Freie Universität Berlin + * + * This file is subject to the terms and conditions of the GNU Lesser + * General Public License v2.1. See the file LICENSE in the top level + * directory for more details. + */ + /** * @ingroup pthread * @{ diff --git a/sys/posix/pthread/include/pthread_scheduling.h b/sys/posix/pthread/include/pthread_scheduling.h index a0694f5bc..3b90ddccd 100644 --- a/sys/posix/pthread/include/pthread_scheduling.h +++ b/sys/posix/pthread/include/pthread_scheduling.h @@ -1,3 +1,11 @@ +/* + * Copyright (C) 2014 René Kijewski + * + * This file is subject to the terms and conditions of the GNU Lesser + * General Public License v2.1. See the file LICENSE in the top level + * directory for more details. + */ + /** * @ingroup pthread * @{ diff --git a/sys/posix/pthread/include/pthread_spin.h b/sys/posix/pthread/include/pthread_spin.h index 9d6b30eac..2374fde97 100644 --- a/sys/posix/pthread/include/pthread_spin.h +++ b/sys/posix/pthread/include/pthread_spin.h @@ -1,3 +1,11 @@ +/* + * Copyright (C) 2014 Freie Universität Berlin + * + * This file is subject to the terms and conditions of the GNU Lesser + * General Public License v2.1. See the file LICENSE in the top level + * directory for more details. + */ + /** * @ingroup pthread * @{ diff --git a/sys/posix/pthread/include/pthread_threading.h b/sys/posix/pthread/include/pthread_threading.h index 1d8d57928..3c963388b 100644 --- a/sys/posix/pthread/include/pthread_threading.h +++ b/sys/posix/pthread/include/pthread_threading.h @@ -1,3 +1,11 @@ +/* + * Copyright (C) 2014 René Kijewski + * + * This file is subject to the terms and conditions of the GNU Lesser + * General Public License v2.1. See the file LICENSE in the top level + * directory for more details. + */ + /** * @ingroup pthread * @{ diff --git a/sys/posix/pthread/include/pthread_threading_attr.h b/sys/posix/pthread/include/pthread_threading_attr.h index 82dbe3b79..0ea03d78d 100644 --- a/sys/posix/pthread/include/pthread_threading_attr.h +++ b/sys/posix/pthread/include/pthread_threading_attr.h @@ -1,3 +1,11 @@ +/* + * Copyright (C) 2014 René Kijewski + * + * This file is subject to the terms and conditions of the GNU Lesser + * General Public License v2.1. See the file LICENSE in the top level + * directory for more details. + */ + /** * @ingroup pthread * @{