From 52d48b9ea39a990295fdaf53dea492637051bd10 Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Mon, 28 Oct 2024 00:02:20 -0600 Subject: s/Licence/License/g --- cmd/sbc_harness/CMakeLists.txt | 2 +- cmd/sbc_harness/config/config.h | 2 +- cmd/sbc_harness/config/tusb_config.h | 4 ++-- cmd/sbc_harness/main.c | 2 +- cmd/sbc_harness/usb_keyboard.c | 2 +- cmd/sbc_harness/usb_keyboard.h | 2 +- cmd/srv9p/CMakeLists.txt | 2 +- cmd/srv9p/config/config.h | 2 +- cmd/srv9p/main.c | 2 +- cmd/srv9p/static.h.gen | 2 +- cmd/srv9p/static9p.c | 2 +- cmd/srv9p/static9p.h | 2 +- 12 files changed, 13 insertions(+), 13 deletions(-) (limited to 'cmd') 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 -# 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 - * 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 - * 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 - * SPDX-Licence-Identifier: AGPL-3.0-or-later + * SPDX-License-Identifier: AGPL-3.0-or-later */ #include /* 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 - * SPDX-Licence-Identifier: AGPL-3.0-or-later + * SPDX-License-Identifier: AGPL-3.0-or-later */ #include 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 - * 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 -# 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 - * 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 - * SPDX-Licence-Identifier: AGPL-3.0-or-later + * SPDX-License-Identifier: AGPL-3.0-or-later */ #include 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 -# 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 - * SPDX-Licence-Identifier: AGPL-3.0-or-later + * SPDX-License-Identifier: AGPL-3.0-or-later */ #include 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 - * SPDX-Licence-Identifier: AGPL-3.0-or-later + * SPDX-License-Identifier: AGPL-3.0-or-later */ #ifndef _SRV9P_STATIC9P_H_ -- cgit v1.2.3-2-g168b