From 24ad16c53abb38412b5d33e49387f100b3a32a53 Mon Sep 17 00:00:00 2001 From: Philippe Coval Date: Fri, 26 Sep 2025 12:47:11 +0200 Subject: [PATCH] fix(legal): Workaround reuse tool I noticed while using https://reuse.software/ this false positive error: reuse.extract - ERROR - Could not parse 'MIT\n',' reuse.extract - ERROR - \ '.../FreeRTOS-Kernel/.github/scripts/kernel_checker.py' \ holds an SPDX expression that cannot be parsed, skipping the file Origin: https://github.com/FreeRTOS/FreeRTOS-Kernel/pull/1322 Relate-to: https://github.com/FreeRTOS/FreeRTOS-Kernel/issues/1321 Signed-off-by: Philippe Coval --- .github/scripts/kernel_checker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/kernel_checker.py b/.github/scripts/kernel_checker.py index 3e770fed44..98e01e9850 100755 --- a/.github/scripts/kernel_checker.py +++ b/.github/scripts/kernel_checker.py @@ -125,7 +125,7 @@ ' * FreeRTOS Kernel \n', ' * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n', ' *\n', - ' * SPDX-License-Identifier: MIT\n', + ' * SPDX', '-License-Identifier: MIT\n', ' *\n', ' * Permission is hereby granted, free of charge, to any person obtaining a copy of\n', ' * this software and associated documentation files (the "Software"), to deal in\n',