From ad759b7749bd1ef87b7100073eb00129823efdcd Mon Sep 17 00:00:00 2001 From: Martin Kojtal Date: Fri, 9 Nov 2018 11:31:20 +0000 Subject: [PATCH] platform: add spdx license --- platform/ATCmdParser.cpp | 1 + platform/ATCmdParser.h | 1 + platform/CThunk.h | 1 + platform/CThunkBase.cpp | 1 + platform/CThunkBase.h | 1 + platform/CallChain.cpp | 16 ++++++++++++++++ platform/CallChain.h | 1 + platform/Callback.h | 1 + platform/CircularBuffer.h | 1 + platform/CriticalSectionLock.h | 2 +- platform/DeepSleepLock.h | 1 + platform/DirHandle.h | 1 + platform/FileBase.cpp | 1 + platform/FileBase.h | 1 + platform/FileHandle.cpp | 1 + platform/FileHandle.h | 1 + platform/FileLike.h | 1 + platform/FilePath.cpp | 1 + platform/FilePath.h | 1 + platform/FileSystemHandle.cpp | 1 + platform/FileSystemHandle.h | 1 + platform/FileSystemLike.h | 1 + platform/FunctionPointer.h | 1 + platform/LocalFileSystem.cpp | 1 + platform/LocalFileSystem.h | 1 + platform/NonCopyable.h | 1 + platform/PlatformMutex.h | 1 + platform/ScopedLock.h | 1 + platform/SharedPtr.h | 1 + platform/SingletonPtr.h | 1 + platform/Span.h | 1 + platform/Stream.cpp | 1 + platform/Stream.h | 1 + platform/Transaction.h | 1 + platform/mbed_alloc_wrappers.cpp | 1 + platform/mbed_application.c | 1 + platform/mbed_application.h | 1 + platform/mbed_assert.c | 1 + platform/mbed_assert.h | 1 + platform/mbed_board.c | 1 + platform/mbed_debug.h | 1 + platform/mbed_error.c | 1 + platform/mbed_error.h | 1 + platform/mbed_error_hist.c | 1 + platform/mbed_error_hist.h | 1 + platform/mbed_interface.c | 1 + platform/mbed_interface.h | 1 + platform/mbed_mem_trace.cpp | 1 + platform/mbed_mem_trace.h | 1 + platform/mbed_mktime.c | 1 + platform/mbed_mktime.h | 1 + platform/mbed_poll.cpp | 1 + platform/mbed_poll.h | 1 + platform/mbed_power_mgmt.h | 1 + platform/mbed_preprocessor.h | 1 + platform/mbed_retarget.cpp | 1 + platform/mbed_retarget.h | 1 + platform/mbed_rtc_time.cpp | 1 + platform/mbed_rtc_time.h | 1 + platform/mbed_sdk_boot.c | 1 + platform/mbed_semihost_api.c | 1 + platform/mbed_semihost_api.h | 1 + platform/mbed_stats.h | 1 + platform/mbed_toolchain.h | 1 + platform/mbed_version.h | 1 + platform/mbed_wait_api.h | 1 + platform/mbed_wait_api_no_rtos.c | 1 + platform/mbed_wait_api_rtos.cpp | 1 + platform/platform.h | 1 + platform/toolchain.h | 1 + 70 files changed, 85 insertions(+), 1 deletion(-) diff --git a/platform/ATCmdParser.cpp b/platform/ATCmdParser.cpp index 0108e8bb18..7ff2ae00ac 100644 --- a/platform/ATCmdParser.cpp +++ b/platform/ATCmdParser.cpp @@ -1,4 +1,5 @@ /* Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/ATCmdParser.h b/platform/ATCmdParser.h index 0ff4fbd1c5..927b24d992 100644 --- a/platform/ATCmdParser.h +++ b/platform/ATCmdParser.h @@ -1,4 +1,5 @@ /* Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/CThunk.h b/platform/CThunk.h index 0610d5a111..5bd6998ea6 100644 --- a/platform/CThunk.h +++ b/platform/CThunk.h @@ -13,6 +13,7 @@ * - ideally suited for class object receiving interrupts (NVIC_SetVector) * * Copyright (c) 2014-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/CThunkBase.cpp b/platform/CThunkBase.cpp index 39ebea47b6..ce9271bc53 100644 --- a/platform/CThunkBase.cpp +++ b/platform/CThunkBase.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/CThunkBase.h b/platform/CThunkBase.h index ec54a22d4f..c2ae68c28c 100644 --- a/platform/CThunkBase.h +++ b/platform/CThunkBase.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/CallChain.cpp b/platform/CallChain.cpp index 6a72d932a4..db8be12f7e 100644 --- a/platform/CallChain.cpp +++ b/platform/CallChain.cpp @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ // Suppress deprecation warnings since this whole // class is deprecated already diff --git a/platform/CallChain.h b/platform/CallChain.h index 3fe17231b0..0f35dc1b5e 100644 --- a/platform/CallChain.h +++ b/platform/CallChain.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/Callback.h b/platform/Callback.h index 1a6b6751bc..52f6732c71 100644 --- a/platform/Callback.h +++ b/platform/Callback.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/CircularBuffer.h b/platform/CircularBuffer.h index 2eb5fd5a04..d1b15e7d5e 100644 --- a/platform/CircularBuffer.h +++ b/platform/CircularBuffer.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/CriticalSectionLock.h b/platform/CriticalSectionLock.h index f654f5d26c..cf861f93a2 100644 --- a/platform/CriticalSectionLock.h +++ b/platform/CriticalSectionLock.h @@ -1,6 +1,6 @@ /* - * PackageLicenseDeclared: Apache-2.0 * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/DeepSleepLock.h b/platform/DeepSleepLock.h index b383770b9a..37aa98376e 100644 --- a/platform/DeepSleepLock.h +++ b/platform/DeepSleepLock.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/DirHandle.h b/platform/DirHandle.h index 47e4b9a449..859d833428 100644 --- a/platform/DirHandle.h +++ b/platform/DirHandle.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/FileBase.cpp b/platform/FileBase.cpp index 5ee1a98c0d..7a6f0a32b7 100644 --- a/platform/FileBase.cpp +++ b/platform/FileBase.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/FileBase.h b/platform/FileBase.h index 25b650145b..68b74ed968 100644 --- a/platform/FileBase.h +++ b/platform/FileBase.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/FileHandle.cpp b/platform/FileHandle.cpp index c8cd9032a7..be8b9cef45 100644 --- a/platform/FileHandle.cpp +++ b/platform/FileHandle.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2016 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/FileHandle.h b/platform/FileHandle.h index c9aea35833..07010df495 100644 --- a/platform/FileHandle.h +++ b/platform/FileHandle.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/FileLike.h b/platform/FileLike.h index e75be50bfd..f4e1911f23 100644 --- a/platform/FileLike.h +++ b/platform/FileLike.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/FilePath.cpp b/platform/FilePath.cpp index 92511d1b68..18cb871986 100644 --- a/platform/FilePath.cpp +++ b/platform/FilePath.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/FilePath.h b/platform/FilePath.h index 6183ffbcef..19f1c1b94a 100644 --- a/platform/FilePath.h +++ b/platform/FilePath.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/FileSystemHandle.cpp b/platform/FileSystemHandle.cpp index 0ce6f1603e..24dc0b2acb 100644 --- a/platform/FileSystemHandle.cpp +++ b/platform/FileSystemHandle.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/FileSystemHandle.h b/platform/FileSystemHandle.h index bfdf667dc6..d5bd217fc0 100644 --- a/platform/FileSystemHandle.h +++ b/platform/FileSystemHandle.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/FileSystemLike.h b/platform/FileSystemLike.h index abcd6358d3..ce6df43881 100644 --- a/platform/FileSystemLike.h +++ b/platform/FileSystemLike.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/FunctionPointer.h b/platform/FunctionPointer.h index c17f53a9a9..90a808015c 100644 --- a/platform/FunctionPointer.h +++ b/platform/FunctionPointer.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/LocalFileSystem.cpp b/platform/LocalFileSystem.cpp index c5c7d33dff..3a5a09cfa8 100644 --- a/platform/LocalFileSystem.cpp +++ b/platform/LocalFileSystem.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/LocalFileSystem.h b/platform/LocalFileSystem.h index 78ca499375..7314320d44 100644 --- a/platform/LocalFileSystem.h +++ b/platform/LocalFileSystem.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/NonCopyable.h b/platform/NonCopyable.h index 4322e4149a..70f76e7177 100644 --- a/platform/NonCopyable.h +++ b/platform/NonCopyable.h @@ -1,4 +1,5 @@ /* Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/PlatformMutex.h b/platform/PlatformMutex.h index ac06a81855..a63672dc0c 100644 --- a/platform/PlatformMutex.h +++ b/platform/PlatformMutex.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/ScopedLock.h b/platform/ScopedLock.h index 8e9018c178..d6d1854d9a 100644 --- a/platform/ScopedLock.h +++ b/platform/ScopedLock.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/SharedPtr.h b/platform/SharedPtr.h index d273507255..0663b2147d 100644 --- a/platform/SharedPtr.h +++ b/platform/SharedPtr.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/SingletonPtr.h b/platform/SingletonPtr.h index 81791ca93f..82b7bcf50a 100644 --- a/platform/SingletonPtr.h +++ b/platform/SingletonPtr.h @@ -7,6 +7,7 @@ */ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/Span.h b/platform/Span.h index 04ef2e1ab0..9859402aa2 100644 --- a/platform/Span.h +++ b/platform/Span.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/Stream.cpp b/platform/Stream.cpp index e395425ae7..5c45c6c79f 100644 --- a/platform/Stream.cpp +++ b/platform/Stream.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/Stream.h b/platform/Stream.h index bd705c4966..e8783038f4 100644 --- a/platform/Stream.h +++ b/platform/Stream.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/Transaction.h b/platform/Transaction.h index 1d8d6ff9de..6917c4d12b 100644 --- a/platform/Transaction.h +++ b/platform/Transaction.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/mbed_alloc_wrappers.cpp b/platform/mbed_alloc_wrappers.cpp index 44521573f7..1d06a4873f 100644 --- a/platform/mbed_alloc_wrappers.cpp +++ b/platform/mbed_alloc_wrappers.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2016 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/mbed_application.c b/platform/mbed_application.c index eab55bc1cd..b55519491b 100644 --- a/platform/mbed_application.c +++ b/platform/mbed_application.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017-2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/mbed_application.h b/platform/mbed_application.h index ba2aebaecb..1cccfb83bc 100644 --- a/platform/mbed_application.h +++ b/platform/mbed_application.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017-2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/mbed_assert.c b/platform/mbed_assert.c index bc1934461a..5ed490a110 100644 --- a/platform/mbed_assert.c +++ b/platform/mbed_assert.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/mbed_assert.h b/platform/mbed_assert.h index 4976c11b45..a748f3aceb 100644 --- a/platform/mbed_assert.h +++ b/platform/mbed_assert.h @@ -7,6 +7,7 @@ */ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/mbed_board.c b/platform/mbed_board.c index 59635d1d33..143772a67c 100644 --- a/platform/mbed_board.c +++ b/platform/mbed_board.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/mbed_debug.h b/platform/mbed_debug.h index 38da79a821..f560f3db33 100644 --- a/platform/mbed_debug.h +++ b/platform/mbed_debug.h @@ -8,6 +8,7 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/mbed_error.c b/platform/mbed_error.c index 0faca8b7fc..49f4b8a7eb 100644 --- a/platform/mbed_error.c +++ b/platform/mbed_error.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/mbed_error.h b/platform/mbed_error.h index 56355e48e0..d91c967f6c 100644 --- a/platform/mbed_error.h +++ b/platform/mbed_error.h @@ -6,6 +6,7 @@ */ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/mbed_error_hist.c b/platform/mbed_error_hist.c index 411ae097ca..9a618e5dda 100644 --- a/platform/mbed_error_hist.c +++ b/platform/mbed_error_hist.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/mbed_error_hist.h b/platform/mbed_error_hist.h index e83315bfec..791b562b65 100644 --- a/platform/mbed_error_hist.h +++ b/platform/mbed_error_hist.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/mbed_interface.c b/platform/mbed_interface.c index b1a43697e9..ddacbb99ae 100644 --- a/platform/mbed_interface.c +++ b/platform/mbed_interface.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/mbed_interface.h b/platform/mbed_interface.h index 241cd7be8d..dd20080ed2 100644 --- a/platform/mbed_interface.h +++ b/platform/mbed_interface.h @@ -8,6 +8,7 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/mbed_mem_trace.cpp b/platform/mbed_mem_trace.cpp index f34453cfd3..8ba4dd8095 100644 --- a/platform/mbed_mem_trace.cpp +++ b/platform/mbed_mem_trace.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2016 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/mbed_mem_trace.h b/platform/mbed_mem_trace.h index a1b2f10f87..28760b8607 100644 --- a/platform/mbed_mem_trace.h +++ b/platform/mbed_mem_trace.h @@ -4,6 +4,7 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2016 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/mbed_mktime.c b/platform/mbed_mktime.c index 68e3b9f62d..7c282325a4 100644 --- a/platform/mbed_mktime.c +++ b/platform/mbed_mktime.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017-2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/mbed_mktime.h b/platform/mbed_mktime.h index eed21a9fc3..58b7624969 100644 --- a/platform/mbed_mktime.h +++ b/platform/mbed_mktime.h @@ -3,6 +3,7 @@ /** @{*/ /* mbed Microcontroller Library * Copyright (c) 2017-2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/mbed_poll.cpp b/platform/mbed_poll.cpp index da9e825d8a..a1e7627616 100644 --- a/platform/mbed_poll.cpp +++ b/platform/mbed_poll.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/mbed_poll.h b/platform/mbed_poll.h index f9c894c21f..43d7cce57c 100644 --- a/platform/mbed_poll.h +++ b/platform/mbed_poll.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/mbed_power_mgmt.h b/platform/mbed_power_mgmt.h index ba0d1bda39..3b8791f2b1 100644 --- a/platform/mbed_power_mgmt.h +++ b/platform/mbed_power_mgmt.h @@ -7,6 +7,7 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/mbed_preprocessor.h b/platform/mbed_preprocessor.h index 7df3bb6812..42685cda1c 100644 --- a/platform/mbed_preprocessor.h +++ b/platform/mbed_preprocessor.h @@ -7,6 +7,7 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/mbed_retarget.cpp b/platform/mbed_retarget.cpp index 7e8ed8725d..276701f70b 100644 --- a/platform/mbed_retarget.cpp +++ b/platform/mbed_retarget.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/mbed_retarget.h b/platform/mbed_retarget.h index d61f3c8c65..9eb27dca6a 100644 --- a/platform/mbed_retarget.h +++ b/platform/mbed_retarget.h @@ -1,6 +1,7 @@ /* * mbed Microcontroller Library * Copyright (c) 2006-2016 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/mbed_rtc_time.cpp b/platform/mbed_rtc_time.cpp index 7ec6171b4d..37cb1cf526 100644 --- a/platform/mbed_rtc_time.cpp +++ b/platform/mbed_rtc_time.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/mbed_rtc_time.h b/platform/mbed_rtc_time.h index f1b04c3d68..1dc021c806 100644 --- a/platform/mbed_rtc_time.h +++ b/platform/mbed_rtc_time.h @@ -7,6 +7,7 @@ */ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/mbed_sdk_boot.c b/platform/mbed_sdk_boot.c index 32658ef60c..9f3aef1899 100644 --- a/platform/mbed_sdk_boot.c +++ b/platform/mbed_sdk_boot.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/mbed_semihost_api.c b/platform/mbed_semihost_api.c index f655862c3a..c9975519fc 100644 --- a/platform/mbed_semihost_api.c +++ b/platform/mbed_semihost_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/mbed_semihost_api.h b/platform/mbed_semihost_api.h index 2f20c8cbb2..dde34f8a53 100644 --- a/platform/mbed_semihost_api.h +++ b/platform/mbed_semihost_api.h @@ -1,6 +1,7 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/mbed_stats.h b/platform/mbed_stats.h index bb6617334f..5ba31b3a0a 100644 --- a/platform/mbed_stats.h +++ b/platform/mbed_stats.h @@ -7,6 +7,7 @@ */ /* mbed Microcontroller Library * Copyright (c) 2016-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/mbed_toolchain.h b/platform/mbed_toolchain.h index fba7d32bed..b36775c5f4 100644 --- a/platform/mbed_toolchain.h +++ b/platform/mbed_toolchain.h @@ -8,6 +8,7 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/mbed_version.h b/platform/mbed_version.h index 650f5396a7..a178579369 100644 --- a/platform/mbed_version.h +++ b/platform/mbed_version.h @@ -7,6 +7,7 @@ */ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/mbed_wait_api.h b/platform/mbed_wait_api.h index 92a380ed9d..9402d6050a 100644 --- a/platform/mbed_wait_api.h +++ b/platform/mbed_wait_api.h @@ -8,6 +8,7 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/mbed_wait_api_no_rtos.c b/platform/mbed_wait_api_no_rtos.c index c29ba17217..d03840e866 100644 --- a/platform/mbed_wait_api_no_rtos.c +++ b/platform/mbed_wait_api_no_rtos.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/mbed_wait_api_rtos.cpp b/platform/mbed_wait_api_rtos.cpp index f859093900..a7285e2794 100644 --- a/platform/mbed_wait_api_rtos.cpp +++ b/platform/mbed_wait_api_rtos.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/platform.h b/platform/platform.h index a5802ff655..33a48c9499 100644 --- a/platform/platform.h +++ b/platform/platform.h @@ -3,6 +3,7 @@ /** @{*/ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/platform/toolchain.h b/platform/toolchain.h index 6fbef808ca..cf561fca75 100644 --- a/platform/toolchain.h +++ b/platform/toolchain.h @@ -3,6 +3,7 @@ /** @{*/ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License.