summaryrefslogtreecommitdiff
path: root/cmd
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 /cmd
parent88adb90f5e805bea27e619fd5209ef58dbff6fd1 (diff)
s/Licence/License/g
Diffstat (limited to 'cmd')
-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
12 files changed, 13 insertions, 13 deletions
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_