From 812899797d6d8ea773bf960cd74680d20043c5a4 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Tue, 8 Dec 2020 18:19:13 +0100 Subject: add licensing information --- src/arch/posix/Kconfig | 3 +++ src/arch/posix/Makefile.inc | 4 ++++ src/arch/posix/arch.cc | 5 +++++ src/arch/posix/driver/counter.cc | 5 +++++ src/arch/posix/driver/gpio.cc | 5 +++++ src/arch/posix/driver/stdout.cc | 5 +++++ src/arch/posix/driver/uptime.cc | 5 +++++ 7 files changed, 32 insertions(+) (limited to 'src/arch/posix') diff --git a/src/arch/posix/Kconfig b/src/arch/posix/Kconfig index d88cbfc..ad5e85e 100644 --- a/src/arch/posix/Kconfig +++ b/src/arch/posix/Kconfig @@ -1,3 +1,6 @@ +# Copyright 2020 Daniel Friesel +# +# SPDX-License-Identifier: CC0-1.0 config gpio_trace bool "Trace GPIO changes on stdout" diff --git a/src/arch/posix/Makefile.inc b/src/arch/posix/Makefile.inc index 4ae0907..32a56cc 100644 --- a/src/arch/posix/Makefile.inc +++ b/src/arch/posix/Makefile.inc @@ -1,4 +1,8 @@ # vim:ft=make +# +# Copyright 2020 Daniel Friesel +# +# SPDX-License-Identifier: BSD-2-Clause COMMON_FLAGS += -DMULTIPASS_ARCH_posix diff --git a/src/arch/posix/arch.cc b/src/arch/posix/arch.cc index a2d78e9..83bf845 100644 --- a/src/arch/posix/arch.cc +++ b/src/arch/posix/arch.cc @@ -1,3 +1,8 @@ +/* + * Copyright 2020 Daniel Friesel + * + * SPDX-License-Identifier: BSD-2-Clause + */ #include "arch.h" #include #include diff --git a/src/arch/posix/driver/counter.cc b/src/arch/posix/driver/counter.cc index 17a0f95..dd6196a 100644 --- a/src/arch/posix/driver/counter.cc +++ b/src/arch/posix/driver/counter.cc @@ -1,3 +1,8 @@ +/* + * Copyright 2020 Daniel Friesel + * + * SPDX-License-Identifier: BSD-2-Clause + */ #include "driver/counter.h" Counter counter; diff --git a/src/arch/posix/driver/gpio.cc b/src/arch/posix/driver/gpio.cc index 1403aed..148bcdb 100644 --- a/src/arch/posix/driver/gpio.cc +++ b/src/arch/posix/driver/gpio.cc @@ -1,3 +1,8 @@ +/* + * Copyright 2020 Daniel Friesel + * + * SPDX-License-Identifier: BSD-2-Clause + */ #include "driver/gpio.h" GPIO gpio; diff --git a/src/arch/posix/driver/stdout.cc b/src/arch/posix/driver/stdout.cc index e409389..a9ceaa4 100644 --- a/src/arch/posix/driver/stdout.cc +++ b/src/arch/posix/driver/stdout.cc @@ -1,3 +1,8 @@ +/* + * Copyright 2020 Daniel Friesel + * + * SPDX-License-Identifier: BSD-2-Clause + */ #include "driver/stdout.h" #include diff --git a/src/arch/posix/driver/uptime.cc b/src/arch/posix/driver/uptime.cc index 00b1d34..5c6ccd4 100644 --- a/src/arch/posix/driver/uptime.cc +++ b/src/arch/posix/driver/uptime.cc @@ -1,3 +1,8 @@ +/* + * Copyright 2020 Daniel Friesel + * + * SPDX-License-Identifier: BSD-2-Clause + */ #include "driver/uptime.h" #include -- cgit v1.2.3