From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Mon, 31 Jul 2023 11:11:53 +0200 Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1qQOwT-000Zpy-WC for lore@lore.pengutronix.de; Mon, 31 Jul 2023 11:11:53 +0200 Received: from localhost ([127.0.0.1] helo=metis.ext.pengutronix.de) by metis.ext.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1qQOwI-0007jw-J4; Mon, 31 Jul 2023 11:11:42 +0200 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.ext.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1qQOwE-0007Zk-Uu; Mon, 31 Jul 2023 11:11:39 +0200 Received: from [2a0a:edc0:0:1101:1d::ac] (helo=dude04.red.stw.pengutronix.de) by drehscheibe.grey.stw.pengutronix.de with esmtp (Exim 4.94.2) (envelope-from ) id 1qQOwE-0005jD-8q; Mon, 31 Jul 2023 11:11:38 +0200 Received: from rhi by dude04.red.stw.pengutronix.de with local (Exim 4.96) (envelope-from ) id 1qQOwC-00FVbR-35; Mon, 31 Jul 2023 11:11:36 +0200 From: Roland Hieber To: oss-tools@pengutronix.de Date: Mon, 31 Jul 2023 11:11:29 +0200 Message-Id: <20230731091131.3696307-8-rhi@pengutronix.de> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20230731091131.3696307-1-rhi@pengutronix.de> References: <20230731091131.3696307-1-rhi@pengutronix.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [OSS-Tools] [PATCH dt-utils v2 7/9] treewide: add trivial copyright headers X-BeenThere: oss-tools@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: Pengutronix Public Open-Source-Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Roland Hieber Sender: "OSS-Tools" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: oss-tools-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false 'reuse lint' warns about files without copyright information, and refuses to give us the spec compliance checkmark. Add trivial copyright lines to all remaining files that don't have any yet. Signed-off-by: Roland Hieber --- PATCH v2: new in series v2 --- .gitignore | 1 + Makefile.am | 1 + NEWS | 1 + autogen.sh | 1 + configure.ac | 1 + m4/.gitignore | 1 + meson_options.txt | 1 + scripts/barebox-mark-successful-boot.sh | 1 + src/.gitignore | 1 + src/asm/unaligned.h | 1 + src/barebox-state.h | 2 ++ src/barebox-state/state.h | 1 + src/base64.h | 2 ++ src/crc.h | 1 + src/crypto/sha.h | 1 + src/driver.h | 1 + src/dt/common.h | 2 ++ src/dt/dt.h | 2 ++ src/dt/fdt.h | 2 ++ src/dt/list.h | 2 ++ src/dtblint.h | 1 + src/fdt.h | 2 ++ src/fdtdump.c | 2 ++ src/fs.h | 1 + src/init.h | 1 + src/libbb.h | 2 ++ src/libdt-utils.sym | 1 + src/libfile.h | 1 + src/linux/err.h | 1 + src/linux/list.h | 1 + src/linux/mtd/mtd-abi.h | 1 + src/module.h | 1 + src/mtd/mtd-peb.h | 1 + src/net.h | 1 + src/of.h | 1 + src/printk.h | 1 + src/state.h | 1 + test/01-fixed-partition-no-gpt.dts | 1 + test/02-fixed-partition-before-gpt-partition.dts | 1 + test/03-fixed-partition-is-gpt-partition.dts | 1 + test/04-gpt-partition-by-partuuid.dts | 1 + test/05-gpt-partition-by-typeuuid.dts | 1 + test/06-fixed-partition-by-diskuuid.dts | 1 + test/07-raw-disk-fail.dts | 1 + test/08-gpt-disk-no-typeuuid-fail.dts | 1 + test/09-no-disk-fail.dts | 1 + test/31-fixed-partition-overlaps-two-gpt-partitions.dts | 1 + ...32-fixed-partition-overlaps-two-gpt-partitions-partially.dts | 1 + test/33-fixed-partition-part-of-gpt-partition.dts | 1 + test/barebox-state.dtsi | 1 + test/barebox-state.t | 1 + test/crc32.c | 1 + test/gpt-no-typeuuid.config | 1 + test/gpt.config | 1 + test/meson.build | 1 + test/raw.config | 1 + version-gen | 1 + version.h.in | 1 + 58 files changed, 67 insertions(+) diff --git a/.gitignore b/.gitignore index f6afc0defbfa..c7b8d9da6ac2 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ # SPDX-License-Identifier: GPL-2.0-only +# Copyright 2013-2023 The DT-Utils Authors *~ *.o .deps/ diff --git a/Makefile.am b/Makefile.am index 960ac4902af5..7b27a37e43ba 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,4 +1,5 @@ # SPDX-License-Identifier: GPL-2.0-only +# Copyright 2013-2023 The DT-Utils Authors EXTRA_DIST = DCO CLEANFILES = diff --git a/NEWS b/NEWS index fa169f9498d6..e7b6c4afda46 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,5 @@ # SPDX-License-Identifier: GPL-2.0-only +# Copyright 2013-2023 The DT-Utils Authors dt-utils 2021.03.0 ================== diff --git a/autogen.sh b/autogen.sh index 0c0353a20edd..2a6bb359a037 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,5 +1,6 @@ #!/bin/sh -e # SPDX-License-Identifier: GPL-2.0-only +# Copyright 2013-2023 The DT-Utils Authors if [ -f .git/hooks/pre-commit.sample -a ! -f .git/hooks/pre-commit ] ; then cp -p .git/hooks/pre-commit.sample .git/hooks/pre-commit && \ diff --git a/configure.ac b/configure.ac index 31e19cabf3ab..4acaef45a60a 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,5 @@ # SPDX-License-Identifier: GPL-2.0-only +# Copyright 2013-2023 The DT-Utils Authors AC_PREREQ(2.60) AC_INIT([dt-utils], diff --git a/m4/.gitignore b/m4/.gitignore index 2f13470d7891..1d67dbdc8e22 100644 --- a/m4/.gitignore +++ b/m4/.gitignore @@ -1,4 +1,5 @@ # SPDX-License-Identifier: GPL-2.0-only +# Copyright 2013-2023 The DT-Utils Authors libtool.m4 ltoptions.m4 ltsugar.m4 diff --git a/meson_options.txt b/meson_options.txt index 83cbc6b2fae2..503941b095d1 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -1,4 +1,5 @@ # SPDX-License-Identifier: GPL-2.0-only +# Copyright 2023 The DT-Utils Authors # feature options option( 'state-backward-compatibility', diff --git a/scripts/barebox-mark-successful-boot.sh b/scripts/barebox-mark-successful-boot.sh index 8aecabfc1912..d454cc267999 100644 --- a/scripts/barebox-mark-successful-boot.sh +++ b/scripts/barebox-mark-successful-boot.sh @@ -1,5 +1,6 @@ #!/bin/sh # SPDX-License-Identifier: GPL-2.0-only +# Copyright 2015-2023 The DT-Utils Authors DEFAULT_REMAINING_ATTEMPTS=3 DEFAULT_PRIORITY=20 diff --git a/src/.gitignore b/src/.gitignore index 9ba44ac0b042..9657ede96a53 100644 --- a/src/.gitignore +++ b/src/.gitignore @@ -1,4 +1,5 @@ # SPDX-License-Identifier: GPL-2.0-only +# Copyright 2013-2023 The DT-Utils Authors .dirstamp .deps/ .libs/ diff --git a/src/asm/unaligned.h b/src/asm/unaligned.h index 7cdc990824c5..52ad441bf005 100644 --- a/src/asm/unaligned.h +++ b/src/asm/unaligned.h @@ -1,2 +1,3 @@ /* SPDX-License-Identifier: CC0-1.0 */ +/* Copyright 2013-2023 The DT-Utils Authors */ /* empty */ diff --git a/src/barebox-state.h b/src/barebox-state.h index 9bc6b5715c36..6c6e7272e247 100644 --- a/src/barebox-state.h +++ b/src/barebox-state.h @@ -1,4 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0-only */ +/* Copyright 2013-2023 The DT-Utils Authors */ + #ifndef __BAREBOX_STATE__ #define __BAREBOX_STATE__ diff --git a/src/barebox-state/state.h b/src/barebox-state/state.h index bbbc1892f846..8b87554d90fe 100644 --- a/src/barebox-state/state.h +++ b/src/barebox-state/state.h @@ -1,4 +1,5 @@ // SPDX-License-Identifier: GPL-2.0-only +// Copyright 2013-2023 The DT-Utils Authors #include #include diff --git a/src/base64.h b/src/base64.h index 2bdd684cb2c8..f9fef3bb06ac 100644 --- a/src/base64.h +++ b/src/base64.h @@ -1,4 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0-only */ +/* Copyright 2013-2023 The DT-Utils Authors */ + #ifndef __BASE64_H #define __BASE64_H diff --git a/src/crc.h b/src/crc.h index 7cdc990824c5..52ad441bf005 100644 --- a/src/crc.h +++ b/src/crc.h @@ -1,2 +1,3 @@ /* SPDX-License-Identifier: CC0-1.0 */ +/* Copyright 2013-2023 The DT-Utils Authors */ /* empty */ diff --git a/src/crypto/sha.h b/src/crypto/sha.h index 355bb76171c8..744bb2c5e4ff 100644 --- a/src/crypto/sha.h +++ b/src/crypto/sha.h @@ -1,4 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0-only */ +/* Copyright 2013-2023 The DT-Utils Authors */ /* * Common values for SHA algorithms */ diff --git a/src/driver.h b/src/driver.h index 7cdc990824c5..52ad441bf005 100644 --- a/src/driver.h +++ b/src/driver.h @@ -1,2 +1,3 @@ /* SPDX-License-Identifier: CC0-1.0 */ +/* Copyright 2013-2023 The DT-Utils Authors */ /* empty */ diff --git a/src/dt/common.h b/src/dt/common.h index 9b29b27710ba..7ba1bed1d475 100644 --- a/src/dt/common.h +++ b/src/dt/common.h @@ -1,4 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0-only */ +/* Copyright 2013-2023 The DT-Utils Authors */ + #ifndef __DT_COMMON_H #define __DT_COMMON_H diff --git a/src/dt/dt.h b/src/dt/dt.h index b8e136fa297b..e473b4e7cea5 100644 --- a/src/dt/dt.h +++ b/src/dt/dt.h @@ -1,4 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0-only */ +/* Copyright 2013-2023 The DT-Utils Authors */ + #ifndef __DT_DT_H #define __DT_DT_H diff --git a/src/dt/fdt.h b/src/dt/fdt.h index 50fab3da6414..7bdecfb2dd71 100644 --- a/src/dt/fdt.h +++ b/src/dt/fdt.h @@ -1,4 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0-only */ +/* Copyright 2013-2023 The DT-Utils Authors */ + #ifndef _FDT_H #define _FDT_H diff --git a/src/dt/list.h b/src/dt/list.h index f8cb0d47789e..f627422aaadb 100644 --- a/src/dt/list.h +++ b/src/dt/list.h @@ -1,4 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0-only */ +/* Copyright 2013-2023 The DT-Utils Authors */ + #ifndef _LINUX_LIST_H #define _LINUX_LIST_H diff --git a/src/dtblint.h b/src/dtblint.h index 896bfe8ba9f5..3c53845f7b1e 100644 --- a/src/dtblint.h +++ b/src/dtblint.h @@ -1,2 +1,3 @@ /* SPDX-License-Identifier: GPL-2.0-only */ +/* Copyright 2013-2023 The DT-Utils Authors */ void dtblint_imx_pinmux(void); diff --git a/src/fdt.h b/src/fdt.h index 7831a56ef583..a766fbbda36e 100644 --- a/src/fdt.h +++ b/src/fdt.h @@ -1,4 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0-only */ +/* Copyright 2013-2023 The DT-Utils Authors */ + #ifndef _FDT_H #define _FDT_H diff --git a/src/fdtdump.c b/src/fdtdump.c index 282af57016d8..e434e32ef032 100644 --- a/src/fdtdump.c +++ b/src/fdtdump.c @@ -1,4 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0-only */ +/* Copyright 2013-2023 The DT-Utils Authors */ + #include #include #include diff --git a/src/fs.h b/src/fs.h index 9f3c4619b2ee..1cd28fb3b05a 100644 --- a/src/fs.h +++ b/src/fs.h @@ -1,2 +1,3 @@ /* SPDX-License-Identifier: GPL-2.0-only */ +/* Copyright 2013-2023 The DT-Utils Authors */ #include diff --git a/src/init.h b/src/init.h index 7cdc990824c5..52ad441bf005 100644 --- a/src/init.h +++ b/src/init.h @@ -1,2 +1,3 @@ /* SPDX-License-Identifier: CC0-1.0 */ +/* Copyright 2013-2023 The DT-Utils Authors */ /* empty */ diff --git a/src/libbb.h b/src/libbb.h index 83768be67dbf..b4d87cd659aa 100644 --- a/src/libbb.h +++ b/src/libbb.h @@ -1,4 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0-only */ +/* Copyright 2013-2023 The DT-Utils Authors */ + #ifndef __LIBBB_H #define __LIBBB_H diff --git a/src/libdt-utils.sym b/src/libdt-utils.sym index a473f004341f..69144c48985c 100644 --- a/src/libdt-utils.sym +++ b/src/libdt-utils.sym @@ -1,4 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0-only */ +/* Copyright 2013-2023 The DT-Utils Authors */ LIBDT_1 { global: crc32; diff --git a/src/libfile.h b/src/libfile.h index 7cdc990824c5..52ad441bf005 100644 --- a/src/libfile.h +++ b/src/libfile.h @@ -1,2 +1,3 @@ /* SPDX-License-Identifier: CC0-1.0 */ +/* Copyright 2013-2023 The DT-Utils Authors */ /* empty */ diff --git a/src/linux/err.h b/src/linux/err.h index 7cdc990824c5..52ad441bf005 100644 --- a/src/linux/err.h +++ b/src/linux/err.h @@ -1,2 +1,3 @@ /* SPDX-License-Identifier: CC0-1.0 */ +/* Copyright 2013-2023 The DT-Utils Authors */ /* empty */ diff --git a/src/linux/list.h b/src/linux/list.h index 5bcf36d9a5a3..b9c30c27f665 100644 --- a/src/linux/list.h +++ b/src/linux/list.h @@ -1,2 +1,3 @@ /* SPDX-License-Identifier: GPL-2.0-only */ +/* Copyright 2013-2023 The DT-Utils Authors */ #include
diff --git a/src/linux/mtd/mtd-abi.h b/src/linux/mtd/mtd-abi.h index 848d61cda4fe..b678f66ae75d 100644 --- a/src/linux/mtd/mtd-abi.h +++ b/src/linux/mtd/mtd-abi.h @@ -1,2 +1,3 @@ /* SPDX-License-Identifier: GPL-2.0-only */ +/* Copyright 2013-2023 The DT-Utils Authors */ #include diff --git a/src/module.h b/src/module.h index 7cdc990824c5..52ad441bf005 100644 --- a/src/module.h +++ b/src/module.h @@ -1,2 +1,3 @@ /* SPDX-License-Identifier: CC0-1.0 */ +/* Copyright 2013-2023 The DT-Utils Authors */ /* empty */ diff --git a/src/mtd/mtd-peb.h b/src/mtd/mtd-peb.h index 7cdc990824c5..52ad441bf005 100644 --- a/src/mtd/mtd-peb.h +++ b/src/mtd/mtd-peb.h @@ -1,2 +1,3 @@ /* SPDX-License-Identifier: CC0-1.0 */ +/* Copyright 2013-2023 The DT-Utils Authors */ /* empty */ diff --git a/src/net.h b/src/net.h index 7cdc990824c5..52ad441bf005 100644 --- a/src/net.h +++ b/src/net.h @@ -1,2 +1,3 @@ /* SPDX-License-Identifier: CC0-1.0 */ +/* Copyright 2013-2023 The DT-Utils Authors */ /* empty */ diff --git a/src/of.h b/src/of.h index 7e3a447081a5..0eba9d62dc06 100644 --- a/src/of.h +++ b/src/of.h @@ -1,4 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0-only */ +/* Copyright 2013-2023 The DT-Utils Authors */ #ifndef __OF_H #define __OF_H diff --git a/src/printk.h b/src/printk.h index f0fcbd6d8c57..5b430d6f4070 100644 --- a/src/printk.h +++ b/src/printk.h @@ -1,2 +1,3 @@ /* SPDX-License-Identifier: GPL-2.0-only */ +/* Copyright 2013-2023 The DT-Utils Authors */ #include
diff --git a/src/state.h b/src/state.h index 1c003d18265c..09c76896dc8b 100644 --- a/src/state.h +++ b/src/state.h @@ -1,4 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0-only */ +/* Copyright 2013-2023 The DT-Utils Authors */ #ifndef __STATE_H #define __STATE_H diff --git a/test/01-fixed-partition-no-gpt.dts b/test/01-fixed-partition-no-gpt.dts index 47d302b9ff0f..290731e27ec8 100644 --- a/test/01-fixed-partition-no-gpt.dts +++ b/test/01-fixed-partition-no-gpt.dts @@ -1,4 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0-only */ +/* Copyright 2023 The DT-Utils Authors */ /dts-v1/; #include "barebox-state.dtsi" diff --git a/test/02-fixed-partition-before-gpt-partition.dts b/test/02-fixed-partition-before-gpt-partition.dts index f4ac24b7c3e6..9493f63dfff0 100644 --- a/test/02-fixed-partition-before-gpt-partition.dts +++ b/test/02-fixed-partition-before-gpt-partition.dts @@ -1,4 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0-only */ +/* Copyright 2023 The DT-Utils Authors */ /dts-v1/; #include "barebox-state.dtsi" diff --git a/test/03-fixed-partition-is-gpt-partition.dts b/test/03-fixed-partition-is-gpt-partition.dts index 248014937886..d4021cb51ad1 100644 --- a/test/03-fixed-partition-is-gpt-partition.dts +++ b/test/03-fixed-partition-is-gpt-partition.dts @@ -1,4 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0-only */ +/* Copyright 2023 The DT-Utils Authors */ /dts-v1/; #include "barebox-state.dtsi" diff --git a/test/04-gpt-partition-by-partuuid.dts b/test/04-gpt-partition-by-partuuid.dts index 0f73d5a76055..080374d610c7 100644 --- a/test/04-gpt-partition-by-partuuid.dts +++ b/test/04-gpt-partition-by-partuuid.dts @@ -1,4 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0-only */ +/* Copyright 2023 The DT-Utils Authors */ /dts-v1/; #include "barebox-state.dtsi" diff --git a/test/05-gpt-partition-by-typeuuid.dts b/test/05-gpt-partition-by-typeuuid.dts index a29ce018dc29..575bd86edf24 100644 --- a/test/05-gpt-partition-by-typeuuid.dts +++ b/test/05-gpt-partition-by-typeuuid.dts @@ -1,4 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0-only */ +/* Copyright 2023 The DT-Utils Authors */ /dts-v1/; #include "barebox-state.dtsi" diff --git a/test/06-fixed-partition-by-diskuuid.dts b/test/06-fixed-partition-by-diskuuid.dts index 47434b5ab219..cc7a61dbc293 100644 --- a/test/06-fixed-partition-by-diskuuid.dts +++ b/test/06-fixed-partition-by-diskuuid.dts @@ -1,4 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0-only */ +/* Copyright 2023 The DT-Utils Authors */ /dts-v1/; #include "barebox-state.dtsi" diff --git a/test/07-raw-disk-fail.dts b/test/07-raw-disk-fail.dts index 8a458657a1e4..f5c7d22dc880 100644 --- a/test/07-raw-disk-fail.dts +++ b/test/07-raw-disk-fail.dts @@ -1,4 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0-only */ +/* Copyright 2023 The DT-Utils Authors */ /dts-v1/; #include "barebox-state.dtsi" diff --git a/test/08-gpt-disk-no-typeuuid-fail.dts b/test/08-gpt-disk-no-typeuuid-fail.dts index 43b2c7bbafb2..2176df059995 100644 --- a/test/08-gpt-disk-no-typeuuid-fail.dts +++ b/test/08-gpt-disk-no-typeuuid-fail.dts @@ -1,4 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0-only */ +/* Copyright 2023 The DT-Utils Authors */ /dts-v1/; #include "barebox-state.dtsi" diff --git a/test/09-no-disk-fail.dts b/test/09-no-disk-fail.dts index 2154a94df00b..92f979279af2 100644 --- a/test/09-no-disk-fail.dts +++ b/test/09-no-disk-fail.dts @@ -1,4 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0-only */ +/* Copyright 2023 The DT-Utils Authors */ /dts-v1/; #include "barebox-state.dtsi" diff --git a/test/31-fixed-partition-overlaps-two-gpt-partitions.dts b/test/31-fixed-partition-overlaps-two-gpt-partitions.dts index 2ee24314cab2..eb6dfc30e7ea 100644 --- a/test/31-fixed-partition-overlaps-two-gpt-partitions.dts +++ b/test/31-fixed-partition-overlaps-two-gpt-partitions.dts @@ -1,4 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0-only */ +/* Copyright 2023 The DT-Utils Authors */ /dts-v1/; #include "barebox-state.dtsi" diff --git a/test/32-fixed-partition-overlaps-two-gpt-partitions-partially.dts b/test/32-fixed-partition-overlaps-two-gpt-partitions-partially.dts index 659214f7770a..3cdb113fe526 100644 --- a/test/32-fixed-partition-overlaps-two-gpt-partitions-partially.dts +++ b/test/32-fixed-partition-overlaps-two-gpt-partitions-partially.dts @@ -1,4 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0-only */ +/* Copyright 2023 The DT-Utils Authors */ /dts-v1/; #include "barebox-state.dtsi" diff --git a/test/33-fixed-partition-part-of-gpt-partition.dts b/test/33-fixed-partition-part-of-gpt-partition.dts index 78786d76b55f..771b7bea17ec 100644 --- a/test/33-fixed-partition-part-of-gpt-partition.dts +++ b/test/33-fixed-partition-part-of-gpt-partition.dts @@ -1,4 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0-only */ +/* Copyright 2023 The DT-Utils Authors */ /dts-v1/; #include "barebox-state.dtsi" diff --git a/test/barebox-state.dtsi b/test/barebox-state.dtsi index 77a13f879bc9..204f1b333554 100644 --- a/test/barebox-state.dtsi +++ b/test/barebox-state.dtsi @@ -1,4 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0-only */ +/* Copyright 2023 The DT-Utils Authors */ / { aliases { state = &state; diff --git a/test/barebox-state.t b/test/barebox-state.t index 9b31ce8a52d5..24b3415b0ed0 100755 --- a/test/barebox-state.t +++ b/test/barebox-state.t @@ -1,5 +1,6 @@ #!/bin/sh # SPDX-License-Identifier: GPL-2.0-only +# Copyright 2023 The DT-Utils Authors set -e diff --git a/test/crc32.c b/test/crc32.c index eae5d12f1149..f4cad5b71488 100644 --- a/test/crc32.c +++ b/test/crc32.c @@ -1,4 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0-only */ +/* Copyright 2023 The DT-Utils Authors */ #include #include diff --git a/test/gpt-no-typeuuid.config b/test/gpt-no-typeuuid.config index d0cf4411106d..a03aaea02c16 100644 --- a/test/gpt-no-typeuuid.config +++ b/test/gpt-no-typeuuid.config @@ -1,4 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0-only */ +/* Copyright 2023 The DT-Utils Authors */ image __IMAGE__ { hdimage { align = 32K diff --git a/test/gpt.config b/test/gpt.config index 8a4e590258ff..f0fe87e928dd 100644 --- a/test/gpt.config +++ b/test/gpt.config @@ -1,4 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0-only */ +/* Copyright 2023 The DT-Utils Authors */ image __IMAGE__ { hdimage { align = 32K diff --git a/test/meson.build b/test/meson.build index d7a39064c15e..df6bc013438d 100644 --- a/test/meson.build +++ b/test/meson.build @@ -1,4 +1,5 @@ # SPDX-License-Identifier: GPL-2.0-only +# Copyright 2023 The DT-Utils Authors if not get_option('tests') subdir_done() endif diff --git a/test/raw.config b/test/raw.config index 28d078fa65d6..71918a52683e 100644 --- a/test/raw.config +++ b/test/raw.config @@ -1,4 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0-only */ +/* Copyright 2023 The DT-Utils Authors */ image __IMAGE__ { hdimage { align = 32K diff --git a/version-gen b/version-gen index 501f77ab0cf1..19ce8cc59881 100755 --- a/version-gen +++ b/version-gen @@ -1,4 +1,5 @@ #!/bin/sh # SPDX-License-Identifier: GPL-2.0-only +# Copyright 2023 The DT-Utils Authors echo "$1" > "$MESON_DIST_ROOT/.tarball-version" diff --git a/version.h.in b/version.h.in index ed6ba6d4d20d..9286a75b01ae 100644 --- a/version.h.in +++ b/version.h.in @@ -1,4 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0-only */ +/* Copyright 2013-2023 The DT-Utils Authors */ #define PACKAGE_STRING "dt-utils @VCS_TAG@" #define PACKAGE_VERSION "@VCS_TAG@" -- 2.39.2