From 289c4c0ee4baea4d31b75a7c0d16ee0e8fa6cb42 Mon Sep 17 00:00:00 2001 From: Ludwig Ortmann Date: Tue, 16 Sep 2014 13:09:14 +0200 Subject: [PATCH] doc: add license headers to some .h files --- boards/native/include/board_internal.h | 8 ++++++++ core/include/kernel_types.h | 8 ++++++++ cpu/native/include/native_internal.h | 8 ++++++++ sys/include/auto_init.h | 10 ++++++++++ sys/include/bloom.h | 8 ++++++++ sys/include/board_uart0.h | 8 ++++++++ sys/include/chardev_thread.h | 8 ++++++++ sys/include/hash_string.h | 8 ++++++++ sys/include/ping.h | 8 ++++++++ sys/include/ps.h | 8 ++++++++ sys/include/random.h | 8 ++++++++ sys/include/shell_commands.h | 8 ++++++++ sys/include/timex.h | 8 ++++++++ sys/include/tm.h | 8 ++++++++ sys/include/transceiver.h | 8 ++++++++ 15 files changed, 122 insertions(+) diff --git a/boards/native/include/board_internal.h b/boards/native/include/board_internal.h index a364ed24cc..aa4ac54ead 100644 --- a/boards/native/include/board_internal.h +++ b/boards/native/include/board_internal.h @@ -1,3 +1,11 @@ +/* + * Copyright (C) 2013, 2014 Ludwig Ortmann + * + * 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. + */ + #ifdef MODULE_UART0 #include void _native_handle_uart0_input(void); diff --git a/core/include/kernel_types.h b/core/include/kernel_types.h index 955df27ba9..b0fafc9b88 100644 --- a/core/include/kernel_types.h +++ b/core/include/kernel_types.h @@ -1,3 +1,11 @@ +/* + * Copyright (C) 2014 Oliver Hahm + * + * 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 KERNEL_TYPES_H #define KERNEL_TYPES_H diff --git a/cpu/native/include/native_internal.h b/cpu/native/include/native_internal.h index f9fafa3aaf..74c1a113ac 100644 --- a/cpu/native/include/native_internal.h +++ b/cpu/native/include/native_internal.h @@ -1,3 +1,11 @@ +/* + * Copyright (C) 2013, 2014 Ludwig Ortmann + * + * 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. + */ + /** * Native CPU internal declarations */ diff --git a/sys/include/auto_init.h b/sys/include/auto_init.h index 95b8c4bc81..48868200fc 100644 --- a/sys/include/auto_init.h +++ b/sys/include/auto_init.h @@ -1,3 +1,13 @@ +/* + * Copyright (C) 2010 Freie Universität Berlin + * Copyright (C) 2010 Kaspar Schleiser + * Copyright (C) 2013 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. + */ + /** * @defgroup sys_autoinit Auto-init diff --git a/sys/include/bloom.h b/sys/include/bloom.h index 2df6d457fa..fad8d645a4 100644 --- a/sys/include/bloom.h +++ b/sys/include/bloom.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. + */ + /* * bloom.c * diff --git a/sys/include/board_uart0.h b/sys/include/board_uart0.h index 80355906ce..9debe572ef 100644 --- a/sys/include/board_uart0.h +++ b/sys/include/board_uart0.h @@ -1,3 +1,11 @@ +/* + * Copyright (C) 2010 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 sys_uart0 UART0 diff --git a/sys/include/chardev_thread.h b/sys/include/chardev_thread.h index 8112bf5772..e74ed038bd 100644 --- a/sys/include/chardev_thread.h +++ b/sys/include/chardev_thread.h @@ -1,3 +1,11 @@ +/* + * Copyright (C) 2010 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. + */ + /** * @defgroup sys_chardevthread Chardev Thread diff --git a/sys/include/hash_string.h b/sys/include/hash_string.h index e927cf15dd..f3494fd9a9 100644 --- a/sys/include/hash_string.h +++ b/sys/include/hash_string.h @@ -1,3 +1,11 @@ +/* + * Copyright (C) 2010 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. + */ + #ifndef __HASH_STRING_H #define __HASH_STRING_H diff --git a/sys/include/ping.h b/sys/include/ping.h index 6e9d392227..65e4e13c9f 100644 --- a/sys/include/ping.h +++ b/sys/include/ping.h @@ -1,3 +1,11 @@ +/* + * Copyright (C) 2010 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 sys_ping Ping diff --git a/sys/include/ps.h b/sys/include/ps.h index cc63a3d015..312cea805f 100644 --- a/sys/include/ps.h +++ b/sys/include/ps.h @@ -1,3 +1,11 @@ +/* + * Copyright (C) 2010 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 sys_ps PS diff --git a/sys/include/random.h b/sys/include/random.h index 53199d4b20..d8abcec494 100644 --- a/sys/include/random.h +++ b/sys/include/random.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. + */ + /** * @defgroup sys_random Random diff --git a/sys/include/shell_commands.h b/sys/include/shell_commands.h index 7e11ffce11..8eb68dd7e8 100644 --- a/sys/include/shell_commands.h +++ b/sys/include/shell_commands.h @@ -1,3 +1,11 @@ +/* + * Copyright (C) 2010 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. + */ + #ifndef __SHELL_COMMANDS_H #define __SHELL_COMMANDS_H diff --git a/sys/include/timex.h b/sys/include/timex.h index fdfe37c794..96674172df 100644 --- a/sys/include/timex.h +++ b/sys/include/timex.h @@ -1,3 +1,11 @@ +/* + * Copyright (C) 2010 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. + */ + /** * @defgroup sys_timex Timex diff --git a/sys/include/tm.h b/sys/include/tm.h index e2c41ebe19..abdb0c45e2 100644 --- a/sys/include/tm.h +++ b/sys/include/tm.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. + */ + /** * @addtogroup sys_timex * @{ diff --git a/sys/include/transceiver.h b/sys/include/transceiver.h index d75d7ee104..fd076d901a 100644 --- a/sys/include/transceiver.h +++ b/sys/include/transceiver.h @@ -1,3 +1,11 @@ +/* + * Copyright (C) 2010 - 2014 Oliver Hahm + * + * 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 sys_transceiver Transceiver * @ingroup sys