summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke T. Shumaker <lukeshu@lukeshu.com>2024-10-28 00:02:20 -0600
committerLuke T. Shumaker <lukeshu@lukeshu.com>2024-10-28 00:02:20 -0600
commit52d48b9ea39a990295fdaf53dea492637051bd10 (patch)
tree0833f14d08c26443a94a9a33ce934389c568896b
parent88adb90f5e805bea27e619fd5209ef58dbff6fd1 (diff)
s/Licence/License/g
-rw-r--r--.editorconfig2
-rw-r--r--.gitignore2
-rw-r--r--.gitmodules2
-rwxr-xr-x3rd-party/linux-errno.txt.gen2
-rw-r--r--CMakeLists.txt2
-rw-r--r--HACKING.md2
-rw-r--r--Makefile5
-rw-r--r--PLAN.md2
-rw-r--r--README.md2
-rw-r--r--cmd/sbc_harness/CMakeLists.txt2
-rw-r--r--cmd/sbc_harness/config/config.h2
-rw-r--r--cmd/sbc_harness/config/tusb_config.h4
-rw-r--r--cmd/sbc_harness/main.c2
-rw-r--r--cmd/sbc_harness/usb_keyboard.c2
-rw-r--r--cmd/sbc_harness/usb_keyboard.h2
-rw-r--r--cmd/srv9p/CMakeLists.txt2
-rw-r--r--cmd/srv9p/config/config.h2
-rw-r--r--cmd/srv9p/main.c2
-rwxr-xr-xcmd/srv9p/static.h.gen2
-rw-r--r--cmd/srv9p/static9p.c2
-rw-r--r--cmd/srv9p/static9p.h2
-rw-r--r--lib9p/.editorconfig2
-rw-r--r--lib9p/9p.c2
-rw-r--r--lib9p/CMakeLists.txt2
-rwxr-xr-xlib9p/idl.gen2
-rw-r--r--lib9p/idl/0000-README.md2
-rw-r--r--lib9p/idl/1992-9P0.9p.wip2
-rw-r--r--lib9p/idl/1995-9P1.9p.wip2
-rw-r--r--lib9p/idl/1996-Styx.9p.wip2
-rw-r--r--lib9p/idl/2002-9P2000.9p2
-rw-r--r--lib9p/idl/2005-9P2000.u.9p2
-rw-r--r--lib9p/idl/2010-9P2000.L.9p.wip2
-rw-r--r--lib9p/idl/2012-9P2000.e.9p2
-rw-r--r--lib9p/include/lib9p/9p.h2
-rwxr-xr-xlib9p/include/lib9p/linux-errno.h.gen2
-rw-r--r--lib9p/include/lib9p/srv.h2
-rw-r--r--lib9p/internal.h2
-rw-r--r--lib9p/map.h2
-rw-r--r--lib9p/srv.c2
-rw-r--r--libcr/CMakeLists.txt2
-rw-r--r--libcr/coroutine.c2
-rw-r--r--libcr/include/libcr/coroutine.h2
-rw-r--r--libcr_ipc/CMakeLists.txt2
-rw-r--r--libcr_ipc/include/libcr_ipc/_linkedlist.h2
-rw-r--r--libcr_ipc/include/libcr_ipc/chan.h2
-rw-r--r--libcr_ipc/include/libcr_ipc/mutex.h2
-rw-r--r--libcr_ipc/include/libcr_ipc/rpc.h2
-rw-r--r--libcr_ipc/include/libcr_ipc/select.h2
-rw-r--r--libcr_ipc/include/libcr_ipc/sema.h2
-rw-r--r--libdhcp/CMakeLists.txt2
-rw-r--r--libdhcp/dhcp.c6
-rw-r--r--libdhcp/include/libdhcp/dhcp.h6
-rw-r--r--libhw/CMakeLists.txt2
-rw-r--r--libhw/common_include/libhw/generic/net.h2
-rw-r--r--libhw/common_include/libhw/generic/spi.h2
-rw-r--r--libhw/host_include/libhw/host_net.h2
-rw-r--r--libhw/host_net.c2
-rw-r--r--libhw/rp2040_hwspi.c2
-rw-r--r--libhw/rp2040_include/libhw/rp2040_hwspi.h2
-rw-r--r--libhw/rp2040_include/libhw/w5500.h2
-rw-r--r--libhw/w5500.c6
-rw-r--r--libhw/w5500_ll.h2
-rw-r--r--libmisc/CMakeLists.txt2
-rw-r--r--libmisc/include/libmisc/endian.h2
-rw-r--r--libmisc/include/libmisc/hash.h2
-rw-r--r--libmisc/include/libmisc/vcall.h2
-rw-r--r--libusb/CMakeLists.txt2
-rw-r--r--libusb/include/libusb/usb_common.h2
-rw-r--r--libusb/usb_common.c2
-rw-r--r--notes.md2
70 files changed, 80 insertions, 77 deletions
diff --git a/.editorconfig b/.editorconfig
index 2aa13e7..339ad64 100644
--- a/.editorconfig
+++ b/.editorconfig
@@ -1,7 +1,7 @@
# .editorconfig - How files in sbc-harness should be formatted
#
# Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
-# SPDX-Licence-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: AGPL-3.0-or-later
root = true
diff --git a/.gitignore b/.gitignore
index 964c5aa..4e3ccaa 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,7 +1,7 @@
# .gitignore - Which files to ignore
#
# Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
-# SPDX-Licence-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: AGPL-3.0-or-later
*.o
*.log
diff --git a/.gitmodules b/.gitmodules
index ae5caf3..d8d8265 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -1,7 +1,7 @@
# .gitmodules - Were to get some 3rd-party sources
#
# Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
-# SPDX-Licence-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: AGPL-3.0-or-later
[submodule "3rd-party/pico-sdk"]
path = 3rd-party/pico-sdk
diff --git a/3rd-party/linux-errno.txt.gen b/3rd-party/linux-errno.txt.gen
index b03a67e..abfbe95 100755
--- a/3rd-party/linux-errno.txt.gen
+++ b/3rd-party/linux-errno.txt.gen
@@ -2,7 +2,7 @@
# 3rd-party/linux-errno.txt.gen - Generate a listing of Linux kernel errnos
#
# Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
-# SPDX-Licence-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: AGPL-3.0-or-later
set -e
(
diff --git a/CMakeLists.txt b/CMakeLists.txt
index f0c12e8..6655b0a 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,7 +1,7 @@
# CMakeLists.txt - Main per-platform build script for sbc-harness project
#
# Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
-# SPDX-Licence-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: AGPL-3.0-or-later
cmake_minimum_required(VERSION 3.30)
diff --git a/HACKING.md b/HACKING.md
index 33e4767..9b016aa 100644
--- a/HACKING.md
+++ b/HACKING.md
@@ -2,7 +2,7 @@
HACKING.md - Description of sbc-harness sources
Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
- SPDX-Licence-Identifier: AGPL-3.0-or-later
+ SPDX-License-Identifier: AGPL-3.0-or-later
-->
Source layout
diff --git a/Makefile b/Makefile
index 0f57255..26ce8ba 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
# Makefile - Main build script for sbc-harness project
#
# Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
-# SPDX-Licence-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: AGPL-3.0-or-later
linux.git = $(HOME)/src/github.com/torvalds/linux
@@ -104,6 +104,9 @@ lint/all: lint/%:
if ! grep -q 'Copyright (C) 2024 Luke T. Shumaker' $$filename; then \
echo "$$filename is missing a copyright statement"; r=1; \
fi; \
+ if ! grep -q ' SPDX-License-Identifier[:] ' $$filename; then \
+ echo "$$filename is missing an SPDX-License-Identifier"; r=1; \
+ fi; \
dscname_act=$$($(get_dscname) $$filename); \
dscname_exp=$$(echo "$$filename" | sed \
-e 's,.*/config/,,' \
diff --git a/PLAN.md b/PLAN.md
index fd46c85..2bae3fd 100644
--- a/PLAN.md
+++ b/PLAN.md
@@ -2,7 +2,7 @@
PLAN.md - Misc planning notes
Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
- SPDX-Licence-Identifier: AGPL-3.0-or-later
+ SPDX-License-Identifier: AGPL-3.0-or-later
-->
- with hardware I have:
diff --git a/README.md b/README.md
index 3745a3f..33c9cb8 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
README.md - Description of sbc-harness
Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
- SPDX-Licence-Identifier: AGPL-3.0-or-later
+ SPDX-License-Identifier: AGPL-3.0-or-later
-->
# Building
diff --git a/cmd/sbc_harness/CMakeLists.txt b/cmd/sbc_harness/CMakeLists.txt
index 57ebe99..dbc7f24 100644
--- a/cmd/sbc_harness/CMakeLists.txt
+++ b/cmd/sbc_harness/CMakeLists.txt
@@ -1,7 +1,7 @@
# cmd/sbc_harness/CMakeLists.txt - Build script for main sbc_harness.uf2 firmware file
#
# Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
-# SPDX-Licence-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: AGPL-3.0-or-later
if (PICO_PLATFORM STREQUAL "rp2040")
diff --git a/cmd/sbc_harness/config/config.h b/cmd/sbc_harness/config/config.h
index 483e815..9e016bf 100644
--- a/cmd/sbc_harness/config/config.h
+++ b/cmd/sbc_harness/config/config.h
@@ -1,7 +1,7 @@
/* config.h - Compile-time configuration for sbc_harness
*
* Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
- * SPDX-Licence-Identifier: AGPL-3.0-or-later
+ * SPDX-License-Identifier: AGPL-3.0-or-later
*/
#ifndef _CONFIG_H_
diff --git a/cmd/sbc_harness/config/tusb_config.h b/cmd/sbc_harness/config/tusb_config.h
index 47ebc3e..aeff31c 100644
--- a/cmd/sbc_harness/config/tusb_config.h
+++ b/cmd/sbc_harness/config/tusb_config.h
@@ -1,9 +1,9 @@
/* tusb_config.h - Compile-time configuration for the TinyUSB library
*
* Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
- * SPDX-Licence-Identifier: AGPL-3.0-or-later
+ * SPDX-License-Identifier: AGPL-3.0-or-later
*
- * SPDX-Licence-Identifier: MIT
+ * SPDX-License-Identifier: MIT
* The MIT License (MIT)
*
* Copyright (c) 2019 Ha Thach (tinyusb.org)
diff --git a/cmd/sbc_harness/main.c b/cmd/sbc_harness/main.c
index b0c9659..b9c5330 100644
--- a/cmd/sbc_harness/main.c
+++ b/cmd/sbc_harness/main.c
@@ -1,7 +1,7 @@
/* sbc_harness/main.c - Main entry point and event loop for sbc-harness
*
* Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
- * SPDX-Licence-Identifier: AGPL-3.0-or-later
+ * SPDX-License-Identifier: AGPL-3.0-or-later
*/
#include <string.h> /* libc: for strlen() */
diff --git a/cmd/sbc_harness/usb_keyboard.c b/cmd/sbc_harness/usb_keyboard.c
index fcd0fe1..3500e31 100644
--- a/cmd/sbc_harness/usb_keyboard.c
+++ b/cmd/sbc_harness/usb_keyboard.c
@@ -1,7 +1,7 @@
/* sbc_harness/usb_keyboard.c - Implementation of a USB keyboard device
*
* Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
- * SPDX-Licence-Identifier: AGPL-3.0-or-later
+ * SPDX-License-Identifier: AGPL-3.0-or-later
*/
#include <tusb.h>
diff --git a/cmd/sbc_harness/usb_keyboard.h b/cmd/sbc_harness/usb_keyboard.h
index f3593f3..210014d 100644
--- a/cmd/sbc_harness/usb_keyboard.h
+++ b/cmd/sbc_harness/usb_keyboard.h
@@ -1,7 +1,7 @@
/* sbc_harness/usb_keyboard.h - Implementation of a USB keyboard device
*
* Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
- * SPDX-Licence-Identifier: AGPL-3.0-or-later
+ * SPDX-License-Identifier: AGPL-3.0-or-later
*/
#ifndef _SBC_HARNESS_USB_KEYBOARD_H_
diff --git a/cmd/srv9p/CMakeLists.txt b/cmd/srv9p/CMakeLists.txt
index d24d3d9..4c170fb 100644
--- a/cmd/srv9p/CMakeLists.txt
+++ b/cmd/srv9p/CMakeLists.txt
@@ -1,7 +1,7 @@
# cmd/srv9p/CMakeLists.txt - Build script for srv9p test/dev executable
#
# Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
-# SPDX-Licence-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: AGPL-3.0-or-later
if (PICO_PLATFORM STREQUAL "host")
diff --git a/cmd/srv9p/config/config.h b/cmd/srv9p/config/config.h
index 0f6c37e..a184e6f 100644
--- a/cmd/srv9p/config/config.h
+++ b/cmd/srv9p/config/config.h
@@ -1,7 +1,7 @@
/* config.h - Compile-time configuration for srv9p
*
* Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
- * SPDX-Licence-Identifier: AGPL-3.0-or-later
+ * SPDX-License-Identifier: AGPL-3.0-or-later
*/
#ifndef _CONFIG_H_
diff --git a/cmd/srv9p/main.c b/cmd/srv9p/main.c
index 6ef2cd3..d30c4f9 100644
--- a/cmd/srv9p/main.c
+++ b/cmd/srv9p/main.c
@@ -1,7 +1,7 @@
/* srv9p/main.c - Main entry point for test 9P server
*
* Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
- * SPDX-Licence-Identifier: AGPL-3.0-or-later
+ * SPDX-License-Identifier: AGPL-3.0-or-later
*/
#include <error.h>
diff --git a/cmd/srv9p/static.h.gen b/cmd/srv9p/static.h.gen
index a048bd6..a93419f 100755
--- a/cmd/srv9p/static.h.gen
+++ b/cmd/srv9p/static.h.gen
@@ -2,7 +2,7 @@
# srv9p/static.h.gen - Generate C definitions for GNU `ld -r -b binary` files
#
# Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
-# SPDX-Licence-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: AGPL-3.0-or-later
nm --format=posix "$@" |
sed -n -E \
diff --git a/cmd/srv9p/static9p.c b/cmd/srv9p/static9p.c
index a5b4492..3632c26 100644
--- a/cmd/srv9p/static9p.c
+++ b/cmd/srv9p/static9p.c
@@ -1,7 +1,7 @@
/* srv9p/static9p.c - Serve static files over 9P
*
* Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
- * SPDX-Licence-Identifier: AGPL-3.0-or-later
+ * SPDX-License-Identifier: AGPL-3.0-or-later
*/
#include <assert.h>
diff --git a/cmd/srv9p/static9p.h b/cmd/srv9p/static9p.h
index 5ef6cb1..7a3d476 100644
--- a/cmd/srv9p/static9p.h
+++ b/cmd/srv9p/static9p.h
@@ -1,7 +1,7 @@
/* srv9p/static9p.h - Serve static files over 9P
*
* Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
- * SPDX-Licence-Identifier: AGPL-3.0-or-later
+ * SPDX-License-Identifier: AGPL-3.0-or-later
*/
#ifndef _SRV9P_STATIC9P_H_
diff --git a/lib9p/.editorconfig b/lib9p/.editorconfig
index e3ef174..a585eb7 100644
--- a/lib9p/.editorconfig
+++ b/lib9p/.editorconfig
@@ -1,7 +1,7 @@
# lib9p/.editorconfig - How Python scripts should be formatted
#
# Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
-# SPDX-Licence-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: AGPL-3.0-or-later
[{idl.gen,linux-errno.h.gen}]
indent_style = space
diff --git a/lib9p/9p.c b/lib9p/9p.c
index 86d0ab8..9f0bd4c 100644
--- a/lib9p/9p.c
+++ b/lib9p/9p.c
@@ -1,7 +1,7 @@
/* lib9p/9p.c - Base 9P protocol utilities for both clients and servers
*
* Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
- * SPDX-Licence-Identifier: AGPL-3.0-or-later
+ * SPDX-License-Identifier: AGPL-3.0-or-later
*/
#include <inttypes.h> /* for PRIu{n} */
diff --git a/lib9p/CMakeLists.txt b/lib9p/CMakeLists.txt
index 2448724..488cff9 100644
--- a/lib9p/CMakeLists.txt
+++ b/lib9p/CMakeLists.txt
@@ -1,7 +1,7 @@
# lib9p/CMakeLists.txt - TODO
#
# Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
-# SPDX-Licence-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: AGPL-3.0-or-later
add_library(lib9p INTERFACE)
target_include_directories(lib9p SYSTEM INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}/include)
diff --git a/lib9p/idl.gen b/lib9p/idl.gen
index 8a168b7..ec42cfd 100755
--- a/lib9p/idl.gen
+++ b/lib9p/idl.gen
@@ -3,7 +3,7 @@
# defining 9P protocol variants.
#
# Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
-# SPDX-Licence-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: AGPL-3.0-or-later
import enum
import os.path
diff --git a/lib9p/idl/0000-README.md b/lib9p/idl/0000-README.md
index be63943..cec27e2 100644
--- a/lib9p/idl/0000-README.md
+++ b/lib9p/idl/0000-README.md
@@ -2,7 +2,7 @@
0000-README.md - Overview of 9P protocol definitions
Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
- SPDX-Licence-Identifier: AGPL-3.0-or-later
+ SPDX-License-Identifier: AGPL-3.0-or-later
-->
# 9P protocol definitions
diff --git a/lib9p/idl/1992-9P0.9p.wip b/lib9p/idl/1992-9P0.9p.wip
index c8db485..4278fa3 100644
--- a/lib9p/idl/1992-9P0.9p.wip
+++ b/lib9p/idl/1992-9P0.9p.wip
@@ -1,7 +1,7 @@
# 1992-9P0.9p - Definitions of 9P0 (Plan 9 1st ed) messages
#
# Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
-# SPDX-Licence-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: AGPL-3.0-or-later
# https://man.cat-v.org/plan_9_1st_ed/5/
version "9P0"
diff --git a/lib9p/idl/1995-9P1.9p.wip b/lib9p/idl/1995-9P1.9p.wip
index 2f4ed93..55814d4 100644
--- a/lib9p/idl/1995-9P1.9p.wip
+++ b/lib9p/idl/1995-9P1.9p.wip
@@ -1,7 +1,7 @@
# 1995-9P1.9p - Definitions of 9P1 (Plan 9 2nd ed and 3rd ed) messages
#
# Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
-# SPDX-Licence-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: AGPL-3.0-or-later
# https://man.cat-v.org/plan_9_2nd_ed/5/
# https://man.cat-v.org/plan_9_3rd_ed/5/
diff --git a/lib9p/idl/1996-Styx.9p.wip b/lib9p/idl/1996-Styx.9p.wip
index 599abc8..2feb24f 100644
--- a/lib9p/idl/1996-Styx.9p.wip
+++ b/lib9p/idl/1996-Styx.9p.wip
@@ -1,7 +1,7 @@
# 1996-Styx.9p - Definitions of Styx messages
#
# Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
-# SPDX-Licence-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: AGPL-3.0-or-later
# Styx was a variant of the 9P protocol used by the Inferno operating
# system. Message framing looks like 9P1 (1995), but semantics look
diff --git a/lib9p/idl/2002-9P2000.9p b/lib9p/idl/2002-9P2000.9p
index e45c0e1..03f00c2 100644
--- a/lib9p/idl/2002-9P2000.9p
+++ b/lib9p/idl/2002-9P2000.9p
@@ -1,7 +1,7 @@
# 2002-9P2000.9p - Definitions of 9P2000 messages
#
# Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
-# SPDX-Licence-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: AGPL-3.0-or-later
# "9P2000" base protocol
# https://ericvh.github.io/9p-rfc/rfc9p2000.html
diff --git a/lib9p/idl/2005-9P2000.u.9p b/lib9p/idl/2005-9P2000.u.9p
index a47e9db..8b59efa 100644
--- a/lib9p/idl/2005-9P2000.u.9p
+++ b/lib9p/idl/2005-9P2000.u.9p
@@ -1,7 +1,7 @@
# 2005-9P2000.u.9p - Definitions of 9P2000.u messages
#
# Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
-# SPDX-Licence-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: AGPL-3.0-or-later
# "9P2000.u" Unix extension
# https://ericvh.github.io/9p-rfc/rfc9p2000.u.html
diff --git a/lib9p/idl/2010-9P2000.L.9p.wip b/lib9p/idl/2010-9P2000.L.9p.wip
index a0de883..5261f7e 100644
--- a/lib9p/idl/2010-9P2000.L.9p.wip
+++ b/lib9p/idl/2010-9P2000.L.9p.wip
@@ -1,7 +1,7 @@
# 2010-9P2000.L.9p - Definitions of 9P2000.L messages
#
# Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
-# SPDX-Licence-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: AGPL-3.0-or-later
# "9P2000.L" Linux extension
# https://github.com/chaos/diod/blob/master/protocol.md
diff --git a/lib9p/idl/2012-9P2000.e.9p b/lib9p/idl/2012-9P2000.e.9p
index 2f88a60..27db50f 100644
--- a/lib9p/idl/2012-9P2000.e.9p
+++ b/lib9p/idl/2012-9P2000.e.9p
@@ -1,7 +1,7 @@
# 2012-9P2000.e.9p - Definitions of 9P2000.e messages
#
# Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
-# SPDX-Licence-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: AGPL-3.0-or-later
# "9P2000.e" Erlang extension
# https://erlangonxen.org/more/9p2000e
diff --git a/lib9p/include/lib9p/9p.h b/lib9p/include/lib9p/9p.h
index 9a91c41..bf304ac 100644
--- a/lib9p/include/lib9p/9p.h
+++ b/lib9p/include/lib9p/9p.h
@@ -1,7 +1,7 @@
/* lib9p/9p.h - Base 9P protocol definitions for both clients and servers
*
* Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
- * SPDX-Licence-Identifier: AGPL-3.0-or-later
+ * SPDX-License-Identifier: AGPL-3.0-or-later
*/
#ifndef _LIB9P_9P_H_
diff --git a/lib9p/include/lib9p/linux-errno.h.gen b/lib9p/include/lib9p/linux-errno.h.gen
index c757dcc..8f4e0c8 100755
--- a/lib9p/include/lib9p/linux-errno.h.gen
+++ b/lib9p/include/lib9p/linux-errno.h.gen
@@ -2,7 +2,7 @@
# lib9p/linux-errno.h.gen - Generate a C header from a list of errno numbers
#
# Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
-# SPDX-Licence-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: AGPL-3.0-or-later
import sys
diff --git a/lib9p/include/lib9p/srv.h b/lib9p/include/lib9p/srv.h
index 3d667db..0617e57 100644
--- a/lib9p/include/lib9p/srv.h
+++ b/lib9p/include/lib9p/srv.h
@@ -1,7 +1,7 @@
/* lib9p/srv.h - 9P server
*
* Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
- * SPDX-Licence-Identifier: AGPL-3.0-or-later
+ * SPDX-License-Identifier: AGPL-3.0-or-later
*/
#ifndef _LIB9P_SRV_H_
diff --git a/lib9p/internal.h b/lib9p/internal.h
index c300be3..004660a 100644
--- a/lib9p/internal.h
+++ b/lib9p/internal.h
@@ -1,7 +1,7 @@
/* lib9p/internal.h - TODO
*
* Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
- * SPDX-Licence-Identifier: AGPL-3.0-or-later
+ * SPDX-License-Identifier: AGPL-3.0-or-later
*/
#ifndef _LIB9P_INTERNAL_H_
diff --git a/lib9p/map.h b/lib9p/map.h
index 9d4d4af..c816bde 100644
--- a/lib9p/map.h
+++ b/lib9p/map.h
@@ -1,7 +1,7 @@
/* lib9p/map.h - A really dumb map/dict data structur
*
* Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
- * SPDX-Licence-Identifier: AGPL-3.0-or-later
+ * SPDX-License-Identifier: AGPL-3.0-or-later
*/
#include "internal.h"
diff --git a/lib9p/srv.c b/lib9p/srv.c
index 43676a8..3a3807c 100644
--- a/lib9p/srv.c
+++ b/lib9p/srv.c
@@ -1,7 +1,7 @@
/* lib9p/srv.c - 9P server
*
* Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
- * SPDX-Licence-Identifier: AGPL-3.0-or-later
+ * SPDX-License-Identifier: AGPL-3.0-or-later
*/
#include <assert.h>
diff --git a/libcr/CMakeLists.txt b/libcr/CMakeLists.txt
index 92a290a..ae7c8fe 100644
--- a/libcr/CMakeLists.txt
+++ b/libcr/CMakeLists.txt
@@ -1,7 +1,7 @@
# libcr/CMakeLists.txt - TODO
#
# Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
-# SPDX-Licence-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: AGPL-3.0-or-later
add_library(libcr INTERFACE)
target_include_directories(libcr SYSTEM INTERFACE ${CMAKE_CURRENT_LIST_DIR}/include)
diff --git a/libcr/coroutine.c b/libcr/coroutine.c
index e080644..41d987e 100644
--- a/libcr/coroutine.c
+++ b/libcr/coroutine.c
@@ -1,7 +1,7 @@
/* libcr/coroutine.c - Simple embeddable coroutine implementation
*
* Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
- * SPDX-Licence-Identifier: AGPL-3.0-or-later
+ * SPDX-License-Identifier: AGPL-3.0-or-later
*/
#include <assert.h>
diff --git a/libcr/include/libcr/coroutine.h b/libcr/include/libcr/coroutine.h
index 6edc4df..368974f 100644
--- a/libcr/include/libcr/coroutine.h
+++ b/libcr/include/libcr/coroutine.h
@@ -1,7 +1,7 @@
/* libcr/coroutine.h - Simple embeddable coroutine implementation
*
* Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
- * SPDX-Licence-Identifier: AGPL-3.0-or-later
+ * SPDX-License-Identifier: AGPL-3.0-or-later
*/
/**
diff --git a/libcr_ipc/CMakeLists.txt b/libcr_ipc/CMakeLists.txt
index 509e5a6..d44203e 100644
--- a/libcr_ipc/CMakeLists.txt
+++ b/libcr_ipc/CMakeLists.txt
@@ -1,7 +1,7 @@
# libcr_ipc/CMakeLists.txt - TODO
#
# Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
-# SPDX-Licence-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: AGPL-3.0-or-later
add_library(libcr_ipc INTERFACE)
target_include_directories(libcr_ipc SYSTEM INTERFACE ${CMAKE_CURRENT_LIST_DIR}/include)
diff --git a/libcr_ipc/include/libcr_ipc/_linkedlist.h b/libcr_ipc/include/libcr_ipc/_linkedlist.h
index b2a94f0..43b7286 100644
--- a/libcr_ipc/include/libcr_ipc/_linkedlist.h
+++ b/libcr_ipc/include/libcr_ipc/_linkedlist.h
@@ -1,7 +1,7 @@
/* libcr_ipc/_linkedlist.h - Common low-level linked lists for use in libcr_ipc
*
* Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
- * SPDX-Licence-Identifier: AGPL-3.0-or-later
+ * SPDX-License-Identifier: AGPL-3.0-or-later
*/
#ifndef _LIBCR_IPC__LINKEDLIST_H_
diff --git a/libcr_ipc/include/libcr_ipc/chan.h b/libcr_ipc/include/libcr_ipc/chan.h
index ec626be..53e68dd 100644
--- a/libcr_ipc/include/libcr_ipc/chan.h
+++ b/libcr_ipc/include/libcr_ipc/chan.h
@@ -1,7 +1,7 @@
/* libcr_ipc/chan.h - Simple channels for libcr
*
* Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
- * SPDX-Licence-Identifier: AGPL-3.0-or-later
+ * SPDX-License-Identifier: AGPL-3.0-or-later
*/
#ifndef _LIBCR_IPC_CHAN_H_
diff --git a/libcr_ipc/include/libcr_ipc/mutex.h b/libcr_ipc/include/libcr_ipc/mutex.h
index 1cc2e61..579f7d5 100644
--- a/libcr_ipc/include/libcr_ipc/mutex.h
+++ b/libcr_ipc/include/libcr_ipc/mutex.h
@@ -1,7 +1,7 @@
/* libcr_ipc/mutex.h - Simple mutexes for libcr
*
* Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
- * SPDX-Licence-Identifier: AGPL-3.0-or-later
+ * SPDX-License-Identifier: AGPL-3.0-or-later
*/
#ifndef _LIBCR_IPC_MUTEX_H_
diff --git a/libcr_ipc/include/libcr_ipc/rpc.h b/libcr_ipc/include/libcr_ipc/rpc.h
index 25c12d6..382105a 100644
--- a/libcr_ipc/include/libcr_ipc/rpc.h
+++ b/libcr_ipc/include/libcr_ipc/rpc.h
@@ -1,7 +1,7 @@
/* libcr_ipc/rpc.h - Simple request/response system for libcr
*
* Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
- * SPDX-Licence-Identifier: AGPL-3.0-or-later
+ * SPDX-License-Identifier: AGPL-3.0-or-later
*/
#ifndef _LIBCR_IPC_RPC_H_
diff --git a/libcr_ipc/include/libcr_ipc/select.h b/libcr_ipc/include/libcr_ipc/select.h
index 3daffc2..f094662 100644
--- a/libcr_ipc/include/libcr_ipc/select.h
+++ b/libcr_ipc/include/libcr_ipc/select.h
@@ -1,7 +1,7 @@
/* libcr_ipc/select.h - Select between channels
*
* Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
- * SPDX-Licence-Identifier: AGPL-3.0-or-later
+ * SPDX-License-Identifier: AGPL-3.0-or-later
*/
#include <alloca.h> /* for alloca() */
diff --git a/libcr_ipc/include/libcr_ipc/sema.h b/libcr_ipc/include/libcr_ipc/sema.h
index ca2167f..9958364 100644
--- a/libcr_ipc/include/libcr_ipc/sema.h
+++ b/libcr_ipc/include/libcr_ipc/sema.h
@@ -1,7 +1,7 @@
/* libcr_ipc/sema.h - Simple semaphores for libcr
*
* Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
- * SPDX-Licence-Identifier: AGPL-3.0-or-later
+ * SPDX-License-Identifier: AGPL-3.0-or-later
*/
#ifndef _LIBCR_IPC_SEMA_H_
diff --git a/libdhcp/CMakeLists.txt b/libdhcp/CMakeLists.txt
index e525191..a14fd50 100644
--- a/libdhcp/CMakeLists.txt
+++ b/libdhcp/CMakeLists.txt
@@ -1,7 +1,7 @@
# libdhcp/CMakeLists.txt - TODO
#
# Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
-# SPDX-Licence-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: AGPL-3.0-or-later
add_library(libdhcp INTERFACE)
target_include_directories(libdhcp SYSTEM INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}/include)
diff --git a/libdhcp/dhcp.c b/libdhcp/dhcp.c
index a1f54e6..9786018 100644
--- a/libdhcp/dhcp.c
+++ b/libdhcp/dhcp.c
@@ -1,7 +1,7 @@
/* libdhcp/dhcp.c - A DHCP client
*
* Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
- * SPDX-Licence-Identifier: AGPL-3.0-or-later
+ * SPDX-License-Identifier: AGPL-3.0-or-later
*
* -----------------------------------------------------------------------------
* https://github.com/Wiznet/ioLibrary_Driver/blob/b981401e7f3d07015619adf44c13998e13e777f9/Internet/DHCP/dhcp.c
@@ -34,7 +34,7 @@
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*
- * SPDX-Licence-Identifier: BSD-3-Clause
+ * SPDX-License-Identifier: BSD-3-Clause
*
* -----------------------------------------------------------------------------
* https://github.com/Wiznet/ioLibrary_Driver/blob/b981401e7f3d07015619adf44c13998e13e777f9/license.txt
@@ -61,7 +61,7 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
- * SPDX-Licence-Identifier: MIT
+ * SPDX-License-Identifier: MIT
*/
#include <string.h> /* for strlen(), memcpy(), memset() */
diff --git a/libdhcp/include/libdhcp/dhcp.h b/libdhcp/include/libdhcp/dhcp.h
index e259034..0b4c06f 100644
--- a/libdhcp/include/libdhcp/dhcp.h
+++ b/libdhcp/include/libdhcp/dhcp.h
@@ -1,7 +1,7 @@
/* libdhcp/dhcp.h - A DHCP client
*
* Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
- * SPDX-Licence-Identifier: AGPL-3.0-or-later
+ * SPDX-License-Identifier: AGPL-3.0-or-later
*
* -----------------------------------------------------------------------------
* https://github.com/Wiznet/ioLibrary_Driver/blob/b981401e7f3d07015619adf44c13998e13e777f9/Internet/DHCP/dhcp.h
@@ -34,7 +34,7 @@
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*
- * SPDX-Licence-Identifier: BSD-3-Clause
+ * SPDX-License-Identifier: BSD-3-Clause
*
* -----------------------------------------------------------------------------
* https://github.com/Wiznet/ioLibrary_Driver/blob/b981401e7f3d07015619adf44c13998e13e777f9/license.txt
@@ -61,7 +61,7 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
- * SPDX-Licence-Identifier: MIT
+ * SPDX-License-Identifier: MIT
*/
#ifndef _LIBDHCP_DHCP_H_
diff --git a/libhw/CMakeLists.txt b/libhw/CMakeLists.txt
index ca58a72..521e697 100644
--- a/libhw/CMakeLists.txt
+++ b/libhw/CMakeLists.txt
@@ -1,7 +1,7 @@
# libhw/CMakeLists.txt - TODO
#
# Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
-# SPDX-Licence-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: AGPL-3.0-or-later
add_library(libhw INTERFACE)
target_include_directories(libhw SYSTEM INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}/common_include)
diff --git a/libhw/common_include/libhw/generic/net.h b/libhw/common_include/libhw/generic/net.h
index 40bcd3b..419a8f2 100644
--- a/libhw/common_include/libhw/generic/net.h
+++ b/libhw/common_include/libhw/generic/net.h
@@ -1,7 +1,7 @@
/* libhw/generic/net.h - Device-independent network definitions
*
* Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
- * SPDX-Licence-Identifier: AGPL-3.0-or-later
+ * SPDX-License-Identifier: AGPL-3.0-or-later
*/
#ifndef _LIBHW_GENERIC_NET_H_
diff --git a/libhw/common_include/libhw/generic/spi.h b/libhw/common_include/libhw/generic/spi.h
index fcba84e..2207a2c 100644
--- a/libhw/common_include/libhw/generic/spi.h
+++ b/libhw/common_include/libhw/generic/spi.h
@@ -1,7 +1,7 @@
/* libhw/generic/spi.h - Device-independent SPI definitions
*
* Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
- * SPDX-Licence-Identifier: AGPL-3.0-or-later
+ * SPDX-License-Identifier: AGPL-3.0-or-later
*/
#ifndef _LIBHW_GENERIC_SPI_H_
diff --git a/libhw/host_include/libhw/host_net.h b/libhw/host_include/libhw/host_net.h
index c74f0bd..7a0dff4 100644
--- a/libhw/host_include/libhw/host_net.h
+++ b/libhw/host_include/libhw/host_net.h
@@ -1,7 +1,7 @@
/* libhw/host_net.h - <libhw/generic/net.h> implementation for hosted glibc
*
* Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
- * SPDX-Licence-Identifier: AGPL-3.0-or-later
+ * SPDX-License-Identifier: AGPL-3.0-or-later
*/
#ifndef _LIBHW_HOST_NET_H_
diff --git a/libhw/host_net.c b/libhw/host_net.c
index d71afee..fcdac57 100644
--- a/libhw/host_net.c
+++ b/libhw/host_net.c
@@ -1,7 +1,7 @@
/* libhw/host_net.c - <libhw/generic/net.h> implementation for hosted glibc
*
* Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
- * SPDX-Licence-Identifier: AGPL-3.0-or-later
+ * SPDX-License-Identifier: AGPL-3.0-or-later
*/
#define _GNU_SOURCE /* for pthread_sigqueue(3gnu) */
diff --git a/libhw/rp2040_hwspi.c b/libhw/rp2040_hwspi.c
index b041bc9..96c3d14 100644
--- a/libhw/rp2040_hwspi.c
+++ b/libhw/rp2040_hwspi.c
@@ -2,7 +2,7 @@
* ARM Primecell SSP (PL022) (implementation file)
*
* Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
- * SPDX-Licence-Identifier: AGPL-3.0-or-later
+ * SPDX-License-Identifier: AGPL-3.0-or-later
*/
#include <assert.h>
diff --git a/libhw/rp2040_include/libhw/rp2040_hwspi.h b/libhw/rp2040_include/libhw/rp2040_hwspi.h
index 8e44e50..db8285d 100644
--- a/libhw/rp2040_include/libhw/rp2040_hwspi.h
+++ b/libhw/rp2040_include/libhw/rp2040_hwspi.h
@@ -2,7 +2,7 @@
* ARM Primecell SSP (PL022) (header file)
*
* Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
- * SPDX-Licence-Identifier: AGPL-3.0-or-later
+ * SPDX-License-Identifier: AGPL-3.0-or-later
*/
#ifndef _LIBHW_RP2040_HWSPI_H_
diff --git a/libhw/rp2040_include/libhw/w5500.h b/libhw/rp2040_include/libhw/w5500.h
index 6b5a690..6f12c39 100644
--- a/libhw/rp2040_include/libhw/w5500.h
+++ b/libhw/rp2040_include/libhw/w5500.h
@@ -1,7 +1,7 @@
/* libhw/w5500.h - <libhw/generic/net.h> implementation for the WIZnet W5500 chip
*
* Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
- * SPDX-Licence-Identifier: AGPL-3.0-or-later
+ * SPDX-License-Identifier: AGPL-3.0-or-later
*/
#ifndef _LIBHW_W5500_H_
diff --git a/libhw/w5500.c b/libhw/w5500.c
index 70881ee..a141fb3 100644
--- a/libhw/w5500.c
+++ b/libhw/w5500.c
@@ -1,7 +1,7 @@
/* libhw/w5500.c - <libhw/generic/net.h> implementation for the WIZnet W5500 chip
*
* Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
- * SPDX-Licence-Identifier: AGPL-3.0-or-later
+ * SPDX-License-Identifier: AGPL-3.0-or-later
*
* -----------------------------------------------------------------------------
* https://github.com/Wiznet/ioLibrary_Driver/blob/b981401e7f3d07015619adf44c13998e13e777f9/Ethernet/wizchip_conf.c
@@ -37,7 +37,7 @@
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*
- * SPDX-Licence-Identifier: BSD-3-Clause
+ * SPDX-License-Identifier: BSD-3-Clause
*
* -----------------------------------------------------------------------------
* https://github.com/Wiznet/ioLibrary_Driver/blob/b981401e7f3d07015619adf44c13998e13e777f9/license.txt
@@ -64,7 +64,7 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
- * SPDX-Licence-Identifier: MIT
+ * SPDX-License-Identifier: MIT
*/
#include <pico/time.h> /* for sleep_ms() */
diff --git a/libhw/w5500_ll.h b/libhw/w5500_ll.h
index 57bfccd..db66f01 100644
--- a/libhw/w5500_ll.h
+++ b/libhw/w5500_ll.h
@@ -4,7 +4,7 @@
* https://docs.wiznet.io/img/products/w5500/W5500_ds_v110e.pdf
*
* Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
- * SPDX-Licence-Identifier: AGPL-3.0-or-later
+ * SPDX-License-Identifier: AGPL-3.0-or-later
*/
#ifndef _LIBHW_W5500_LL_H_
diff --git a/libmisc/CMakeLists.txt b/libmisc/CMakeLists.txt
index f42f36f..0c5c019 100644
--- a/libmisc/CMakeLists.txt
+++ b/libmisc/CMakeLists.txt
@@ -1,7 +1,7 @@
# libmisc/CMakeLists.txt - A simple Go-ish object system built on GCC -fplan9-extensions
#
# Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
-# SPDX-Licence-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: AGPL-3.0-or-later
add_library(libmisc INTERFACE)
target_include_directories(libmisc SYSTEM INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}/include)
diff --git a/libmisc/include/libmisc/endian.h b/libmisc/include/libmisc/endian.h
index 9d172ba..24d7d42 100644
--- a/libmisc/include/libmisc/endian.h
+++ b/libmisc/include/libmisc/endian.h
@@ -1,7 +1,7 @@
/* libmisc/endian.h - Endian-conversion helpers
*
* Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
- * SPDX-Licence-Identifier: AGPL-3.0-or-later
+ * SPDX-License-Identifier: AGPL-3.0-or-later
*/
#ifndef _LIBMISC_ENDIAN_H_
diff --git a/libmisc/include/libmisc/hash.h b/libmisc/include/libmisc/hash.h
index 5940e64..91e6b10 100644
--- a/libmisc/include/libmisc/hash.h
+++ b/libmisc/include/libmisc/hash.h
@@ -1,7 +1,7 @@
/* libmisc/hash.h - General-purpose hash utilities
*
* Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
- * SPDX-Licence-Identifier: AGPL-3.0-or-later
+ * SPDX-License-Identifier: AGPL-3.0-or-later
*/
#ifndef _LIBMISC_HASH_H_
diff --git a/libmisc/include/libmisc/vcall.h b/libmisc/include/libmisc/vcall.h
index c3562ee..ea9402e 100644
--- a/libmisc/include/libmisc/vcall.h
+++ b/libmisc/include/libmisc/vcall.h
@@ -1,7 +1,7 @@
/* libmisc/vcall.h - A simple Go-ish object system built on GCC -fplan9-extensions
*
* Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
- * SPDX-Licence-Identifier: AGPL-3.0-or-later
+ * SPDX-License-Identifier: AGPL-3.0-or-later
*/
#ifndef _LIBMISC_VCALL_H_
diff --git a/libusb/CMakeLists.txt b/libusb/CMakeLists.txt
index c232868..f5d6ae2 100644
--- a/libusb/CMakeLists.txt
+++ b/libusb/CMakeLists.txt
@@ -1,7 +1,7 @@
# libusb/CMakeLists.txt - Build script for libusb support library
#
# Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
-# SPDX-Licence-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: AGPL-3.0-or-later
add_library(libusb INTERFACE)
target_include_directories(libusb SYSTEM INTERFACE ${CMAKE_CURRENT_LIST_DIR}/include)
diff --git a/libusb/include/libusb/usb_common.h b/libusb/include/libusb/usb_common.h
index a57abb5..e31b3ab 100644
--- a/libusb/include/libusb/usb_common.h
+++ b/libusb/include/libusb/usb_common.h
@@ -1,7 +1,7 @@
/* libusb/usb_common.h - Common framework for implementing multiple USB devices at once
*
* Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
- * SPDX-Licence-Identifier: AGPL-3.0-or-later
+ * SPDX-License-Identifier: AGPL-3.0-or-later
*/
#ifndef _LIBUSB_USB_COMMON_H_
diff --git a/libusb/usb_common.c b/libusb/usb_common.c
index 18eb048..ceabad3 100644
--- a/libusb/usb_common.c
+++ b/libusb/usb_common.c
@@ -1,7 +1,7 @@
/* libusb/usb_common.c - Common framework for implementing multiple USB devices at once
*
* Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
- * SPDX-Licence-Identifier: AGPL-3.0-or-later
+ * SPDX-License-Identifier: AGPL-3.0-or-later
*/
#include <stdint.h> /* for uint{n}_t types */
diff --git a/notes.md b/notes.md
index 2a21418..255b765 100644
--- a/notes.md
+++ b/notes.md
@@ -2,7 +2,7 @@
notes.md - Misc notes
Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
- SPDX-Licence-Identifier: AGPL-3.0-or-later
+ SPDX-License-Identifier: AGPL-3.0-or-later
-->
Which file to include: