diff --git a/arch/sim/CMakeLists.txt b/arch/sim/CMakeLists.txt index 2f448c8135d..8f01ac439ca 100644 --- a/arch/sim/CMakeLists.txt +++ b/arch/sim/CMakeLists.txt @@ -1,6 +1,8 @@ # ############################################################################## # arch/sim/CMakeLists.txt # +# SPDX-License-Identifier: Apache-2.0 +# # Licensed to the Apache Software Foundation (ASF) under one or more contributor # license agreements. See the NOTICE file distributed with this work for # additional information regarding copyright ownership. The ASF licenses this diff --git a/arch/sim/include/arch.h b/arch/sim/include/arch.h index eb6ba5fa05e..d83f17fa1ce 100644 --- a/arch/sim/include/arch.h +++ b/arch/sim/include/arch.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/include/arch.h * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/include/elf.h b/arch/sim/include/elf.h index 68ddd55c7f8..66e6420af3e 100644 --- a/arch/sim/include/elf.h +++ b/arch/sim/include/elf.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/include/elf.h * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/include/inttypes.h b/arch/sim/include/inttypes.h index 3e08442427c..581cbd3b9f2 100644 --- a/arch/sim/include/inttypes.h +++ b/arch/sim/include/inttypes.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/include/inttypes.h * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/include/irq.h b/arch/sim/include/irq.h index 7e6ebf151e6..1ddcba47ff9 100644 --- a/arch/sim/include/irq.h +++ b/arch/sim/include/irq.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/include/irq.h * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/include/limits.h b/arch/sim/include/limits.h index b1b7b5e818f..e02617ccf4d 100644 --- a/arch/sim/include/limits.h +++ b/arch/sim/include/limits.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/include/limits.h * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/include/setjmp.h b/arch/sim/include/setjmp.h index ef458e65f1c..042eeed980f 100644 --- a/arch/sim/include/setjmp.h +++ b/arch/sim/include/setjmp.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/include/setjmp.h * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/include/spinlock.h b/arch/sim/include/spinlock.h index 2e760f1533f..33aebd4ad7c 100644 --- a/arch/sim/include/spinlock.h +++ b/arch/sim/include/spinlock.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/include/spinlock.h * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/include/syscall.h b/arch/sim/include/syscall.h index b0437201803..5a08be74c3b 100644 --- a/arch/sim/include/syscall.h +++ b/arch/sim/include/syscall.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/include/syscall.h * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/include/types.h b/arch/sim/include/types.h index 4ac23cdacb5..76ac26dbb61 100644 --- a/arch/sim/include/types.h +++ b/arch/sim/include/types.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/include/types.h * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/CMakeLists.txt b/arch/sim/src/CMakeLists.txt index fdafd1b89a2..57c8c6e04b8 100644 --- a/arch/sim/src/CMakeLists.txt +++ b/arch/sim/src/CMakeLists.txt @@ -1,6 +1,8 @@ # ############################################################################## # arch/sim/src/CMakeLists.txt # +# SPDX-License-Identifier: Apache-2.0 +# # Licensed to the Apache Software Foundation (ASF) under one or more contributor # license agreements. See the NOTICE file distributed with this work for # additional information regarding copyright ownership. The ASF licenses this diff --git a/arch/sim/src/Makefile b/arch/sim/src/Makefile index e7aa02d46d0..006d2b90023 100644 --- a/arch/sim/src/Makefile +++ b/arch/sim/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # arch/sim/src/Makefile # +# SPDX-License-Identifier: Apache-2.0 +# # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/cmake/Toolchain.cmake b/arch/sim/src/cmake/Toolchain.cmake index 68c9c911ea5..7c5291f2a31 100644 --- a/arch/sim/src/cmake/Toolchain.cmake +++ b/arch/sim/src/cmake/Toolchain.cmake @@ -1,6 +1,8 @@ # ############################################################################## # arch/sim/src/cmake/Toolchain.cmake # +# SPDX-License-Identifier: Apache-2.0 +# # Licensed to the Apache Software Foundation (ASF) under one or more contributor # license agreements. See the NOTICE file distributed with this work for # additional information regarding copyright ownership. The ASF licenses this diff --git a/arch/sim/src/cmake/platform.cmake b/arch/sim/src/cmake/platform.cmake index 37f3238d692..0f525e39e00 100644 --- a/arch/sim/src/cmake/platform.cmake +++ b/arch/sim/src/cmake/platform.cmake @@ -1,6 +1,8 @@ # ############################################################################## # arch/sim/src/cmake/platform.cmake # +# SPDX-License-Identifier: Apache-2.0 +# # Licensed to the Apache Software Foundation (ASF) under one or more contributor # license agreements. See the NOTICE file distributed with this work for # additional information regarding copyright ownership. The ASF licenses this diff --git a/arch/sim/src/nuttx-names.in b/arch/sim/src/nuttx-names.in index 4d5266e4bce..1dcbbacd473 100644 --- a/arch/sim/src/nuttx-names.in +++ b/arch/sim/src/nuttx-names.in @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/nuttx-names.in * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/CMakeLists.txt b/arch/sim/src/sim/CMakeLists.txt index 74651482323..de809f0a5b7 100644 --- a/arch/sim/src/sim/CMakeLists.txt +++ b/arch/sim/src/sim/CMakeLists.txt @@ -1,6 +1,8 @@ # ############################################################################## # arch/sim/src/sim/CMakeLists.txt # +# SPDX-License-Identifier: Apache-2.0 +# # Licensed to the Apache Software Foundation (ASF) under one or more contributor # license agreements. See the NOTICE file distributed with this work for # additional information regarding copyright ownership. The ASF licenses this diff --git a/arch/sim/src/sim/posix/sim_alsa.c b/arch/sim/src/sim/posix/sim_alsa.c index f464c2161f7..708b03c46f5 100644 --- a/arch/sim/src/sim/posix/sim_alsa.c +++ b/arch/sim/src/sim/posix/sim_alsa.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/posix/sim_alsa.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/posix/sim_host_v4l2.c b/arch/sim/src/sim/posix/sim_host_v4l2.c index 3c6b7568429..dc36b5db6b0 100644 --- a/arch/sim/src/sim/posix/sim_host_v4l2.c +++ b/arch/sim/src/sim/posix/sim_host_v4l2.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/posix/sim_host_v4l2.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/posix/sim_hostfs.c b/arch/sim/src/sim/posix/sim_hostfs.c index e60042d03f2..798b4a3c629 100644 --- a/arch/sim/src/sim/posix/sim_hostfs.c +++ b/arch/sim/src/sim/posix/sim_hostfs.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/posix/sim_hostfs.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/posix/sim_hosthcisocket.c b/arch/sim/src/sim/posix/sim_hosthcisocket.c index 9dc8bd76e1e..e2bde0aede2 100644 --- a/arch/sim/src/sim/posix/sim_hosthcisocket.c +++ b/arch/sim/src/sim/posix/sim_hosthcisocket.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/posix/sim_hosthcisocket.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/posix/sim_hostirq.c b/arch/sim/src/sim/posix/sim_hostirq.c index bb1e92459d2..06c2f70d81a 100644 --- a/arch/sim/src/sim/posix/sim_hostirq.c +++ b/arch/sim/src/sim/posix/sim_hostirq.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/posix/sim_hostirq.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/posix/sim_hostmemory.c b/arch/sim/src/sim/posix/sim_hostmemory.c index f65d820c64b..85cd7b90adb 100644 --- a/arch/sim/src/sim/posix/sim_hostmemory.c +++ b/arch/sim/src/sim/posix/sim_hostmemory.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/posix/sim_hostmemory.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/posix/sim_hostmisc.c b/arch/sim/src/sim/posix/sim_hostmisc.c index b7987057885..d759f1f57cc 100644 --- a/arch/sim/src/sim/posix/sim_hostmisc.c +++ b/arch/sim/src/sim/posix/sim_hostmisc.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/posix/sim_hostmisc.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/posix/sim_hostsmp.c b/arch/sim/src/sim/posix/sim_hostsmp.c index acdab0e36a9..8763a25b0a7 100644 --- a/arch/sim/src/sim/posix/sim_hostsmp.c +++ b/arch/sim/src/sim/posix/sim_hostsmp.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/posix/sim_hostsmp.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/posix/sim_hosttime.c b/arch/sim/src/sim/posix/sim_hosttime.c index ea7a1a5bd49..31608d2f923 100644 --- a/arch/sim/src/sim/posix/sim_hosttime.c +++ b/arch/sim/src/sim/posix/sim_hosttime.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/posix/sim_hosttime.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/posix/sim_hostuart.c b/arch/sim/src/sim/posix/sim_hostuart.c index 3421e92b9e1..3fb757783c6 100644 --- a/arch/sim/src/sim/posix/sim_hostuart.c +++ b/arch/sim/src/sim/posix/sim_hostuart.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/posix/sim_hostuart.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/posix/sim_hostusrsock.c b/arch/sim/src/sim/posix/sim_hostusrsock.c index 3ebe530d9e2..6c5f8a897ac 100644 --- a/arch/sim/src/sim/posix/sim_hostusrsock.c +++ b/arch/sim/src/sim/posix/sim_hostusrsock.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/posix/sim_hostusrsock.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/posix/sim_i2c.h b/arch/sim/src/sim/posix/sim_i2c.h index 712dfd77b0c..4eb16a1fdfc 100644 --- a/arch/sim/src/sim/posix/sim_i2c.h +++ b/arch/sim/src/sim/posix/sim_i2c.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/posix/sim_i2c.h * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/posix/sim_libusb.c b/arch/sim/src/sim/posix/sim_libusb.c index af8c1ab6841..586947cba79 100644 --- a/arch/sim/src/sim/posix/sim_libusb.c +++ b/arch/sim/src/sim/posix/sim_libusb.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/posix/sim_libusb.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/posix/sim_linuxi2c.c b/arch/sim/src/sim/posix/sim_linuxi2c.c index 4db84c5303f..101b5cdd2b4 100644 --- a/arch/sim/src/sim/posix/sim_linuxi2c.c +++ b/arch/sim/src/sim/posix/sim_linuxi2c.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/posix/sim_linuxi2c.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/posix/sim_linuxspi.c b/arch/sim/src/sim/posix/sim_linuxspi.c index 5893dbf0196..6ab42841f9e 100644 --- a/arch/sim/src/sim/posix/sim_linuxspi.c +++ b/arch/sim/src/sim/posix/sim_linuxspi.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/posix/sim_linuxspi.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/posix/sim_macho_init.c b/arch/sim/src/sim/posix/sim_macho_init.c index 7ddd8d2dc0b..28f1c3ad0c4 100644 --- a/arch/sim/src/sim/posix/sim_macho_init.c +++ b/arch/sim/src/sim/posix/sim_macho_init.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/posix/sim_macho_init.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/posix/sim_rawgadget.c b/arch/sim/src/sim/posix/sim_rawgadget.c index e21f69ba3f2..819dfb0ab33 100644 --- a/arch/sim/src/sim/posix/sim_rawgadget.c +++ b/arch/sim/src/sim/posix/sim_rawgadget.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/posix/sim_rawgadget.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/posix/sim_spi.h b/arch/sim/src/sim/posix/sim_spi.h index 8c03f1161e4..15d9f484dbf 100644 --- a/arch/sim/src/sim/posix/sim_spi.h +++ b/arch/sim/src/sim/posix/sim_spi.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/posix/sim_spi.h * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/posix/sim_tapdev.c b/arch/sim/src/sim/posix/sim_tapdev.c index 348924c31f3..48d8fba1b6b 100644 --- a/arch/sim/src/sim/posix/sim_tapdev.c +++ b/arch/sim/src/sim/posix/sim_tapdev.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/posix/sim_tapdev.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/posix/sim_testset.c b/arch/sim/src/sim/posix/sim_testset.c index 2efee25adac..08ac32b57e6 100644 --- a/arch/sim/src/sim/posix/sim_testset.c +++ b/arch/sim/src/sim/posix/sim_testset.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/posix/sim_testset.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/posix/sim_vpnkit.c b/arch/sim/src/sim/posix/sim_vpnkit.c index 5b70ee6340b..fb15250ed1a 100644 --- a/arch/sim/src/sim/posix/sim_vpnkit.c +++ b/arch/sim/src/sim/posix/sim_vpnkit.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/posix/sim_vpnkit.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/posix/sim_x11eventloop.c b/arch/sim/src/sim/posix/sim_x11eventloop.c index 874a2ea6452..63696b119b0 100644 --- a/arch/sim/src/sim/posix/sim_x11eventloop.c +++ b/arch/sim/src/sim/posix/sim_x11eventloop.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/posix/sim_x11eventloop.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/posix/sim_x11framebuffer.c b/arch/sim/src/sim/posix/sim_x11framebuffer.c index 73b9ae17df1..97683486a48 100644 --- a/arch/sim/src/sim/posix/sim_x11framebuffer.c +++ b/arch/sim/src/sim/posix/sim_x11framebuffer.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/posix/sim_x11framebuffer.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/posix/vpnkit/sim_negotiate.c b/arch/sim/src/sim/posix/vpnkit/sim_negotiate.c index bbf27433e24..38189ef7108 100644 --- a/arch/sim/src/sim/posix/vpnkit/sim_negotiate.c +++ b/arch/sim/src/sim/posix/vpnkit/sim_negotiate.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/posix/vpnkit/sim_negotiate.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/posix/vpnkit/sim_protocol.c b/arch/sim/src/sim/posix/vpnkit/sim_protocol.c index 23c408e446d..4b417738ccd 100644 --- a/arch/sim/src/sim/posix/vpnkit/sim_protocol.c +++ b/arch/sim/src/sim/posix/vpnkit/sim_protocol.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/posix/vpnkit/sim_protocol.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/posix/vpnkit/sim_protocol.h b/arch/sim/src/sim/posix/vpnkit/sim_protocol.h index 4647fea19a2..dd13b295604 100644 --- a/arch/sim/src/sim/posix/vpnkit/sim_protocol.h +++ b/arch/sim/src/sim/posix/vpnkit/sim_protocol.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/posix/vpnkit/sim_protocol.h * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_ajoystick.c b/arch/sim/src/sim/sim_ajoystick.c index dcb76cf1e93..235824541f0 100644 --- a/arch/sim/src/sim/sim_ajoystick.c +++ b/arch/sim/src/sim/sim_ajoystick.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_ajoystick.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_backtrace.c b/arch/sim/src/sim/sim_backtrace.c index 3ebeedac8a9..b1b72f2d789 100644 --- a/arch/sim/src/sim/sim_backtrace.c +++ b/arch/sim/src/sim/sim_backtrace.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_backtrace.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_blockdevice.c b/arch/sim/src/sim/sim_blockdevice.c index 31d102a3fdc..ae3f5dd8342 100644 --- a/arch/sim/src/sim/sim_blockdevice.c +++ b/arch/sim/src/sim/sim_blockdevice.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_blockdevice.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_camera.c b/arch/sim/src/sim/sim_camera.c index 5e257e28020..0d83d7a9864 100644 --- a/arch/sim/src/sim/sim_camera.c +++ b/arch/sim/src/sim/sim_camera.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_camera.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_checkhostfstypes.c b/arch/sim/src/sim/sim_checkhostfstypes.c index 49145ab3464..faa7d466ad1 100644 --- a/arch/sim/src/sim/sim_checkhostfstypes.c +++ b/arch/sim/src/sim/sim_checkhostfstypes.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_checkhostfstypes.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_checkstack.c b/arch/sim/src/sim/sim_checkstack.c index cd585d522af..221e46cd6a0 100644 --- a/arch/sim/src/sim/sim_checkstack.c +++ b/arch/sim/src/sim/sim_checkstack.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_checkstack.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_copyfullstate.c b/arch/sim/src/sim/sim_copyfullstate.c index 09c3e8c24b5..64a28be273e 100644 --- a/arch/sim/src/sim/sim_copyfullstate.c +++ b/arch/sim/src/sim/sim_copyfullstate.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_copyfullstate.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_cpuidlestack.c b/arch/sim/src/sim/sim_cpuidlestack.c index 6acd86ce3d3..f56af93ba00 100644 --- a/arch/sim/src/sim/sim_cpuidlestack.c +++ b/arch/sim/src/sim/sim_cpuidlestack.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_cpuidlestack.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_cpuinfo.c b/arch/sim/src/sim/sim_cpuinfo.c index 2e11305b351..0abb6be0262 100644 --- a/arch/sim/src/sim/sim_cpuinfo.c +++ b/arch/sim/src/sim/sim_cpuinfo.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_cpuinfo.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_createstack.c b/arch/sim/src/sim/sim_createstack.c index fe91dd7e257..b0bd8e4721f 100644 --- a/arch/sim/src/sim/sim_createstack.c +++ b/arch/sim/src/sim/sim_createstack.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_createstack.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_decoder.c b/arch/sim/src/sim/sim_decoder.c index 307d652ea70..274e345fc6c 100644 --- a/arch/sim/src/sim/sim_decoder.c +++ b/arch/sim/src/sim/sim_decoder.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_decoder.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_deviceimage.c b/arch/sim/src/sim/sim_deviceimage.c index 95e046c8b15..12ffac65b73 100644 --- a/arch/sim/src/sim/sim_deviceimage.c +++ b/arch/sim/src/sim/sim_deviceimage.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_deviceimage.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_doirq.c b/arch/sim/src/sim/sim_doirq.c index 5d75d76bf20..8b5b820d304 100644 --- a/arch/sim/src/sim/sim_doirq.c +++ b/arch/sim/src/sim/sim_doirq.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_doirq.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_encoder.c b/arch/sim/src/sim/sim_encoder.c index 1f106b4c4f5..cca304ecdca 100644 --- a/arch/sim/src/sim/sim_encoder.c +++ b/arch/sim/src/sim/sim_encoder.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_encoder.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_exit.c b/arch/sim/src/sim/sim_exit.c index 02ef47a096f..9e2e62631ab 100644 --- a/arch/sim/src/sim/sim_exit.c +++ b/arch/sim/src/sim/sim_exit.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_exit.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_fork.c b/arch/sim/src/sim/sim_fork.c index 0f9cd5d4e8a..ad4ffd293c7 100644 --- a/arch/sim/src/sim/sim_fork.c +++ b/arch/sim/src/sim/sim_fork.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_fork.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_fork_arm.S b/arch/sim/src/sim/sim_fork_arm.S index 42ac56b0943..ee39f54e003 100644 --- a/arch/sim/src/sim/sim_fork_arm.S +++ b/arch/sim/src/sim/sim_fork_arm.S @@ -1,6 +1,8 @@ /************************************************************************************ * arch/sim/src/sim/sim_fork_arm.S * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_fork_arm64.S b/arch/sim/src/sim/sim_fork_arm64.S index 0055c2fd024..5d813822fa6 100644 --- a/arch/sim/src/sim/sim_fork_arm64.S +++ b/arch/sim/src/sim/sim_fork_arm64.S @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_fork_arm64.S * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_fork_x86.S b/arch/sim/src/sim/sim_fork_x86.S index a06b137d87d..ec7486664c5 100644 --- a/arch/sim/src/sim/sim_fork_x86.S +++ b/arch/sim/src/sim/sim_fork_x86.S @@ -1,6 +1,8 @@ /************************************************************************************ * arch/sim/src/sim/sim_fork_x86.S * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_fork_x86_64.S b/arch/sim/src/sim/sim_fork_x86_64.S index 165fe82ac45..85b072acf86 100644 --- a/arch/sim/src/sim/sim_fork_x86_64.S +++ b/arch/sim/src/sim/sim_fork_x86_64.S @@ -1,6 +1,8 @@ /************************************************************************************ * arch/sim/src/sim/sim_fork_x86_64.S * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_framebuffer.c b/arch/sim/src/sim/sim_framebuffer.c index c1e06bae18f..39c27eef4d3 100644 --- a/arch/sim/src/sim/sim_framebuffer.c +++ b/arch/sim/src/sim/sim_framebuffer.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_framebuffer.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_hcisocket.c b/arch/sim/src/sim/sim_hcisocket.c index 2d1ec723c22..668e6833f82 100644 --- a/arch/sim/src/sim/sim_hcisocket.c +++ b/arch/sim/src/sim/sim_hcisocket.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_hcisocket.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_head.c b/arch/sim/src/sim/sim_head.c index 3c9fd79a6d8..ab3def8f691 100644 --- a/arch/sim/src/sim/sim_head.c +++ b/arch/sim/src/sim/sim_head.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_head.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_heap.c b/arch/sim/src/sim/sim_heap.c index 7b95441f7a1..1113b8c352d 100644 --- a/arch/sim/src/sim/sim_heap.c +++ b/arch/sim/src/sim/sim_heap.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_heap.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_hosthcisocket.h b/arch/sim/src/sim/sim_hosthcisocket.h index ad353b7b867..b5e015fda5e 100644 --- a/arch/sim/src/sim/sim_hosthcisocket.h +++ b/arch/sim/src/sim/sim_hosthcisocket.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_hosthcisocket.h * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_hostusrsock.h b/arch/sim/src/sim/sim_hostusrsock.h index bf517440202..e5fb2f10d3d 100644 --- a/arch/sim/src/sim/sim_hostusrsock.h +++ b/arch/sim/src/sim/sim_hostusrsock.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_hostusrsock.h * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_hostvideo.h b/arch/sim/src/sim/sim_hostvideo.h index 78bd5954977..17ec196698d 100644 --- a/arch/sim/src/sim/sim_hostvideo.h +++ b/arch/sim/src/sim/sim_hostvideo.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_hostvideo.h * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_idle.c b/arch/sim/src/sim/sim_idle.c index 16e05d34b23..0e5c50d4947 100644 --- a/arch/sim/src/sim/sim_idle.c +++ b/arch/sim/src/sim/sim_idle.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_idle.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_initialize.c b/arch/sim/src/sim/sim_initialize.c index bd8b459e6a7..b8defe32972 100644 --- a/arch/sim/src/sim/sim_initialize.c +++ b/arch/sim/src/sim/sim_initialize.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_initialize.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_initialstate.c b/arch/sim/src/sim/sim_initialstate.c index 1a5a084568a..73175c4c0a9 100644 --- a/arch/sim/src/sim/sim_initialstate.c +++ b/arch/sim/src/sim/sim_initialstate.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_initialstate.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_internal.h b/arch/sim/src/sim/sim_internal.h index 1c35be0d965..9d48c35bfae 100644 --- a/arch/sim/src/sim/sim_internal.h +++ b/arch/sim/src/sim/sim_internal.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_internal.h * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_keyboard.c b/arch/sim/src/sim/sim_keyboard.c index 812e52f9a7c..ea1413518ee 100644 --- a/arch/sim/src/sim/sim_keyboard.c +++ b/arch/sim/src/sim/sim_keyboard.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_keyboard.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_lcd.c b/arch/sim/src/sim/sim_lcd.c index 941952e0ca9..76b05acb581 100644 --- a/arch/sim/src/sim/sim_lcd.c +++ b/arch/sim/src/sim/sim_lcd.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_lcd.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_netdriver.c b/arch/sim/src/sim/sim_netdriver.c index 3d68ba26556..de298f81edb 100644 --- a/arch/sim/src/sim/sim_netdriver.c +++ b/arch/sim/src/sim/sim_netdriver.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_netdriver.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_offload.c b/arch/sim/src/sim/sim_offload.c index 49b763f9f99..655b9887517 100644 --- a/arch/sim/src/sim/sim_offload.c +++ b/arch/sim/src/sim/sim_offload.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_offload.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_offload.h b/arch/sim/src/sim/sim_offload.h index 02aff3be1f8..cc21a93faa7 100644 --- a/arch/sim/src/sim/sim_offload.h +++ b/arch/sim/src/sim/sim_offload.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_offload.h * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_oneshot.c b/arch/sim/src/sim/sim_oneshot.c index 636dff052b5..5cf1bf4b9ef 100644 --- a/arch/sim/src/sim/sim_oneshot.c +++ b/arch/sim/src/sim/sim_oneshot.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_oneshot.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_openh264dec.c b/arch/sim/src/sim/sim_openh264dec.c index ec6d96c82cc..1d932fd1eac 100644 --- a/arch/sim/src/sim/sim_openh264dec.c +++ b/arch/sim/src/sim/sim_openh264dec.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_openh264dec.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_openh264dec.h b/arch/sim/src/sim/sim_openh264dec.h index adfef293c1d..aa5d1a60ae4 100644 --- a/arch/sim/src/sim/sim_openh264dec.h +++ b/arch/sim/src/sim/sim_openh264dec.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_openh264dec.h * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_registerdump.c b/arch/sim/src/sim/sim_registerdump.c index f640adfd0c9..7ce7de1d52d 100644 --- a/arch/sim/src/sim/sim_registerdump.c +++ b/arch/sim/src/sim/sim_registerdump.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_registerdump.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_releasestack.c b/arch/sim/src/sim/sim_releasestack.c index e8a4fa1fa06..63e6c797c63 100644 --- a/arch/sim/src/sim/sim_releasestack.c +++ b/arch/sim/src/sim/sim_releasestack.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_releasestack.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_rpmsg_virtio.c b/arch/sim/src/sim/sim_rpmsg_virtio.c index 7ae32d57e93..d087a62a39d 100644 --- a/arch/sim/src/sim/sim_rpmsg_virtio.c +++ b/arch/sim/src/sim/sim_rpmsg_virtio.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_rpmsg_virtio.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_rptun.c b/arch/sim/src/sim/sim_rptun.c index 447cf958265..c240ad05b6a 100644 --- a/arch/sim/src/sim/sim_rptun.c +++ b/arch/sim/src/sim/sim_rptun.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_rptun.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_rtc.c b/arch/sim/src/sim/sim_rtc.c index e37c3b77202..10f5c745f65 100644 --- a/arch/sim/src/sim/sim_rtc.c +++ b/arch/sim/src/sim/sim_rtc.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_rtc.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_saveusercontext.c b/arch/sim/src/sim/sim_saveusercontext.c index 95b9a7292f6..171b074780e 100644 --- a/arch/sim/src/sim/sim_saveusercontext.c +++ b/arch/sim/src/sim/sim_saveusercontext.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_saveusercontext.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_schedulesigaction.c b/arch/sim/src/sim/sim_schedulesigaction.c index 6bc8aa535b8..32ce5f09e73 100644 --- a/arch/sim/src/sim/sim_schedulesigaction.c +++ b/arch/sim/src/sim/sim_schedulesigaction.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_schedulesigaction.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_sectionheap.c b/arch/sim/src/sim/sim_sectionheap.c index c23f98bebf9..8a9e0b3625b 100644 --- a/arch/sim/src/sim/sim_sectionheap.c +++ b/arch/sim/src/sim/sim_sectionheap.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_sectionheap.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_sigdeliver.c b/arch/sim/src/sim/sim_sigdeliver.c index 238599c7570..e70ec25dbc1 100644 --- a/arch/sim/src/sim/sim_sigdeliver.c +++ b/arch/sim/src/sim/sim_sigdeliver.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_sigdeliver.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_smpsignal.c b/arch/sim/src/sim/sim_smpsignal.c index f535767aa83..83b11a88704 100644 --- a/arch/sim/src/sim/sim_smpsignal.c +++ b/arch/sim/src/sim/sim_smpsignal.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_smpsignal.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_stackframe.c b/arch/sim/src/sim/sim_stackframe.c index 36a430f9661..5eb7f4dffd5 100644 --- a/arch/sim/src/sim/sim_stackframe.c +++ b/arch/sim/src/sim/sim_stackframe.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_stackframe.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_switchcontext.c b/arch/sim/src/sim/sim_switchcontext.c index 83a845ad6f4..507dc456da0 100644 --- a/arch/sim/src/sim/sim_switchcontext.c +++ b/arch/sim/src/sim/sim_switchcontext.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_switchcontext.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_tcbinfo.c b/arch/sim/src/sim/sim_tcbinfo.c index 02847da3e26..e62bd12a0e5 100644 --- a/arch/sim/src/sim/sim_tcbinfo.c +++ b/arch/sim/src/sim/sim_tcbinfo.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_tcbinfo.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_touchscreen.c b/arch/sim/src/sim/sim_touchscreen.c index 5e23b2c0042..96aca62cea7 100644 --- a/arch/sim/src/sim/sim_touchscreen.c +++ b/arch/sim/src/sim/sim_touchscreen.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_touchscreen.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_uart.c b/arch/sim/src/sim/sim_uart.c index 248d814de95..ad5c371490f 100644 --- a/arch/sim/src/sim/sim_uart.c +++ b/arch/sim/src/sim/sim_uart.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_uart.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_usbdev.c b/arch/sim/src/sim/sim_usbdev.c index 687694fa077..f04e84a5823 100644 --- a/arch/sim/src/sim/sim_usbdev.c +++ b/arch/sim/src/sim/sim_usbdev.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_usbdev.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_usbdev.h b/arch/sim/src/sim/sim_usbdev.h index 28aa07a89fb..c027b539627 100644 --- a/arch/sim/src/sim/sim_usbdev.h +++ b/arch/sim/src/sim/sim_usbdev.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_usbdev.h * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_usbhost.c b/arch/sim/src/sim/sim_usbhost.c index cf48cd697c4..7642b5481ed 100644 --- a/arch/sim/src/sim/sim_usbhost.c +++ b/arch/sim/src/sim/sim_usbhost.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_usbhost.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_usbhost.h b/arch/sim/src/sim/sim_usbhost.h index e198bf224e0..10cd1a1383c 100644 --- a/arch/sim/src/sim/sim_usbhost.h +++ b/arch/sim/src/sim/sim_usbhost.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_usbhost.h * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_usestack.c b/arch/sim/src/sim/sim_usestack.c index 26ad5101403..3080fe87f63 100644 --- a/arch/sim/src/sim/sim_usestack.c +++ b/arch/sim/src/sim/sim_usestack.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_usestack.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_usrsock.c b/arch/sim/src/sim/sim_usrsock.c index 08c93cc53d1..3c3e03a9e5e 100644 --- a/arch/sim/src/sim/sim_usrsock.c +++ b/arch/sim/src/sim/sim_usrsock.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_usrsock.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_wifidriver.c b/arch/sim/src/sim/sim_wifidriver.c index 07df6906b31..1303424ad91 100644 --- a/arch/sim/src/sim/sim_wifidriver.c +++ b/arch/sim/src/sim/sim_wifidriver.c @@ -1,6 +1,7 @@ /**************************************************************************** * arch/sim/src/sim/sim_wifidriver.c - * Manage the host wireless + * + * SPDX-License-Identifier: Apache-2.0 * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with diff --git a/arch/sim/src/sim/sim_x264encoder.c b/arch/sim/src/sim/sim_x264encoder.c index 7ea38911486..e8a1e9401b5 100644 --- a/arch/sim/src/sim/sim_x264encoder.c +++ b/arch/sim/src/sim/sim_x264encoder.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_x264encoder.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/sim_x264encoder.h b/arch/sim/src/sim/sim_x264encoder.h index a7a023452c5..6c240bc0588 100644 --- a/arch/sim/src/sim/sim_x264encoder.h +++ b/arch/sim/src/sim/sim_x264encoder.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/sim_x264encoder.h * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/win/sim_hostfs.c b/arch/sim/src/sim/win/sim_hostfs.c index 303a623059c..9fb42fbe5a0 100644 --- a/arch/sim/src/sim/win/sim_hostfs.c +++ b/arch/sim/src/sim/win/sim_hostfs.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/win/sim_hostfs.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/win/sim_hostirq.c b/arch/sim/src/sim/win/sim_hostirq.c index b4ea560cf6b..2945f33eed5 100644 --- a/arch/sim/src/sim/win/sim_hostirq.c +++ b/arch/sim/src/sim/win/sim_hostirq.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/win/sim_hostirq.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/win/sim_hostmemory.c b/arch/sim/src/sim/win/sim_hostmemory.c index e0359cb20f5..ad34577b0c5 100644 --- a/arch/sim/src/sim/win/sim_hostmemory.c +++ b/arch/sim/src/sim/win/sim_hostmemory.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/win/sim_hostmemory.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/win/sim_hostmisc.c b/arch/sim/src/sim/win/sim_hostmisc.c index 8fe105026fd..b6f2d7859c7 100644 --- a/arch/sim/src/sim/win/sim_hostmisc.c +++ b/arch/sim/src/sim/win/sim_hostmisc.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/win/sim_hostmisc.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/win/sim_hosttime.c b/arch/sim/src/sim/win/sim_hosttime.c index 2323f5f4384..f92e1cd7aa5 100644 --- a/arch/sim/src/sim/win/sim_hosttime.c +++ b/arch/sim/src/sim/win/sim_hosttime.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/win/sim_hosttime.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/win/sim_hostuart.c b/arch/sim/src/sim/win/sim_hostuart.c index 430a2aa18d6..331daa7ad8e 100644 --- a/arch/sim/src/sim/win/sim_hostuart.c +++ b/arch/sim/src/sim/win/sim_hostuart.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/win/sim_hostuart.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/sim/src/sim/win/sim_wpcap.c b/arch/sim/src/sim/win/sim_wpcap.c index 67d3432cc26..61fe0051128 100644 --- a/arch/sim/src/sim/win/sim_wpcap.c +++ b/arch/sim/src/sim/win/sim_wpcap.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/sim/src/sim/win/sim_wpcap.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The