diff options
| author | Max Merchel <[email protected]> | 2025-08-26 08:30:29 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-12-16 11:02:27 -0600 |
| commit | 798bef8e8322101a6add9a5797f6dfc748f44ed6 (patch) | |
| tree | e44a73fb3e292ff5fae83ab251b11ade541312d4 /tools/libfdt | |
| parent | 41eddd89235303309ea4e8f2d1f5a076605ee8ce (diff) | |
tools/libfdt/fdt_rw: fix SPDX-License-Identifier
Currently, the terms of both licenses (GPL 2.0 and BSD-2-Clause) must be
met.
However, before switching to the SPDX license identifier, the license
information in the file begins with:
"libfdt is dual licensed: you can use it either under the terms of
the GPL, or the BSD license, at your option."
Therefore, the missing "OR" between the licenses is added.
Fixes: 3508476 ("libfdt: SPDX-License-Identifier: GPL-2.0+ BSD-2-Clause")
Signed-off-by: Max Merchel <[email protected]>
Diffstat (limited to 'tools/libfdt')
| -rw-r--r-- | tools/libfdt/fdt_rw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/libfdt/fdt_rw.c b/tools/libfdt/fdt_rw.c index 7189f014295..3d3395b125b 100644 --- a/tools/libfdt/fdt_rw.c +++ b/tools/libfdt/fdt_rw.c @@ -1,4 +1,4 @@ -/* SPDX-License-Identifier: GPL-2.0+ BSD-2-Clause */ +// SPDX-License-Identifier: (GPL-2.0-or-later OR BSD-2-Clause) #include "fdt_host.h" #include "../../scripts/dtc/libfdt/fdt_rw.c" |
