aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2022-06-12 13:58:42 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2022-06-12 13:58:42 +0300
commit6c529c5c6c2d016d77b143171c5e27fbec0d2bfd (patch)
tree5b01b803f3839665da04beae0f8e887db14aec17 /lib
parent62ee0f7e1936a9eccb55fa360a1dce223819e0b8 (diff)
downloadkmi-6c529c5c6c2d016d77b143171c5e27fbec0d2bfd.tar.gz
kmi-6c529c5c6c2d016d77b143171c5e27fbec0d2bfd.zip
add license texts
Diffstat (limited to 'lib')
-rw-r--r--lib/fdt.c3
-rw-r--r--lib/fdt_addresses.c3
-rw-r--r--lib/fdt_dbg.c3
-rw-r--r--lib/fdt_empty_tree.c3
-rw-r--r--lib/fdt_ro.c3
-rw-r--r--lib/fdt_rw.c3
-rw-r--r--lib/fdt_strerror.c3
-rw-r--r--lib/fdt_sw.c3
-rw-r--r--lib/fdt_wip.c3
-rw-r--r--lib/ubsan.c3
10 files changed, 30 insertions, 0 deletions
diff --git a/lib/fdt.c b/lib/fdt.c
index 800d16f..1f0277c 100644
--- a/lib/fdt.c
+++ b/lib/fdt.c
@@ -1,3 +1,6 @@
+/* SPDX-License-Identifier: GPL-3.0-or-later */
+/* Copyright 2021 - 2022, Kim Kuparinen < kimi.h.kuparinen@gmail.com > */
+
/**
* @file fdt.c
* Wrapper to libfdt/fdt.c, sets up the environment.
diff --git a/lib/fdt_addresses.c b/lib/fdt_addresses.c
index abded6e..bcf77b1 100644
--- a/lib/fdt_addresses.c
+++ b/lib/fdt_addresses.c
@@ -1,3 +1,6 @@
+/* SPDX-License-Identifier: GPL-3.0-or-later */
+/* Copyright 2021 - 2022, Kim Kuparinen < kimi.h.kuparinen@gmail.com > */
+
/**
* @file
* Wrapper to libfdt/fdt_addresses.c, sets up the environment.
diff --git a/lib/fdt_dbg.c b/lib/fdt_dbg.c
index 377ecdd..5cfacc5 100644
--- a/lib/fdt_dbg.c
+++ b/lib/fdt_dbg.c
@@ -1,3 +1,6 @@
+/* SPDX-License-Identifier: GPL-3.0-or-later */
+/* Copyright 2021 - 2022, Kim Kuparinen < kimi.h.kuparinen@gmail.com > */
+
/**
* @file fdt_dbg.c
* Dump fdt info to serial.
diff --git a/lib/fdt_empty_tree.c b/lib/fdt_empty_tree.c
index bdfb9cb..eb2bc06 100644
--- a/lib/fdt_empty_tree.c
+++ b/lib/fdt_empty_tree.c
@@ -1,3 +1,6 @@
+/* SPDX-License-Identifier: GPL-3.0-or-later */
+/* Copyright 2021 - 2022, Kim Kuparinen < kimi.h.kuparinen@gmail.com > */
+
/**
* @file fdt_empty_tree.c
* Wrapper around libfdt/fdt_empty_tree.c, sets up environment.
diff --git a/lib/fdt_ro.c b/lib/fdt_ro.c
index 4528c60..5fff1d9 100644
--- a/lib/fdt_ro.c
+++ b/lib/fdt_ro.c
@@ -1,3 +1,6 @@
+/* SPDX-License-Identifier: GPL-3.0-or-later */
+/* Copyright 2021 - 2022, Kim Kuparinen < kimi.h.kuparinen@gmail.com > */
+
/**
* @file fdt_ro.c
* Wrapper around libfdt/fdt_ro.c, sets up the environment.
diff --git a/lib/fdt_rw.c b/lib/fdt_rw.c
index 79e7fa9..ad697c7 100644
--- a/lib/fdt_rw.c
+++ b/lib/fdt_rw.c
@@ -1,3 +1,6 @@
+/* SPDX-License-Identifier: GPL-3.0-or-later */
+/* Copyright 2021 - 2022, Kim Kuparinen < kimi.h.kuparinen@gmail.com > */
+
/**
* @file fdt_rw.c
* Wrapper around libfdt/fdt_rw.c, sets up the environment.
diff --git a/lib/fdt_strerror.c b/lib/fdt_strerror.c
index 70791b7..9e292d9 100644
--- a/lib/fdt_strerror.c
+++ b/lib/fdt_strerror.c
@@ -1,3 +1,6 @@
+/* SPDX-License-Identifier: GPL-3.0-or-later */
+/* Copyright 2021 - 2022, Kim Kuparinen < kimi.h.kuparinen@gmail.com > */
+
/**
* @file fdt_strerror.c
* Wrapper around libfdt/fdt_strerror.c, sets up the environment.
diff --git a/lib/fdt_sw.c b/lib/fdt_sw.c
index 5bb8991..721a2f6 100644
--- a/lib/fdt_sw.c
+++ b/lib/fdt_sw.c
@@ -1,3 +1,6 @@
+/* SPDX-License-Identifier: GPL-3.0-or-later */
+/* Copyright 2021 - 2022, Kim Kuparinen < kimi.h.kuparinen@gmail.com > */
+
/**
* @file fdt_sw.c
* Wrapper around libfdt/fdt_sw.c, sets up the environment.
diff --git a/lib/fdt_wip.c b/lib/fdt_wip.c
index e5dab53..36b0fae 100644
--- a/lib/fdt_wip.c
+++ b/lib/fdt_wip.c
@@ -1,3 +1,6 @@
+/* SPDX-License-Identifier: GPL-3.0-or-later */
+/* Copyright 2021 - 2022, Kim Kuparinen < kimi.h.kuparinen@gmail.com > */
+
/**
* @file fdt_wip.c
* Wrapper around libfdt/fdt_wip.c, sets up the environment.
diff --git a/lib/ubsan.c b/lib/ubsan.c
index 191787a..5d7ff16 100644
--- a/lib/ubsan.c
+++ b/lib/ubsan.c
@@ -1,3 +1,6 @@
+/* SPDX-License-Identifier: GPL-3.0-or-later */
+/* Copyright 2021 - 2022, Kim Kuparinen < kimi.h.kuparinen@gmail.com > */
+
/**
* @file ubsan.c
* Tiny undefined behaviour sanitizer, mostly lifted from