From 2a89ee6cb73fcdcf7f8c03e24f1caa9dd09b8115 Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Fri, 20 Dec 2024 04:22:12 +0100 Subject: [PATCH] lte: migrate to SPDX identifier Most tools used for compliance and SBOM generation use SPDX identifiers This change brings us a step closer to an easy SBOM generation. Signed-off-by: Alin Jerpelea --- lte/CMakeLists.txt | 2 + lte/Make.defs | 41 +++++++------------ lte/Makefile | 41 +++++++------------ lte/alt1250/CMakeLists.txt | 2 + lte/alt1250/Make.defs | 2 + lte/alt1250/Makefile | 2 + lte/alt1250/alt1250_atcmd.c | 2 + lte/alt1250/alt1250_atcmd.h | 2 + lte/alt1250/alt1250_container.c | 2 + lte/alt1250/alt1250_container.h | 2 + lte/alt1250/alt1250_daemon.h | 2 + lte/alt1250/alt1250_dbg.h | 2 + lte/alt1250/alt1250_devevent.c | 2 + lte/alt1250/alt1250_devevent.h | 2 + lte/alt1250/alt1250_devif.c | 2 + lte/alt1250/alt1250_devif.h | 2 + lte/alt1250/alt1250_main.c | 2 + lte/alt1250/alt1250_netdev.c | 2 + lte/alt1250/alt1250_netdev.h | 2 + lte/alt1250/alt1250_postproc.h | 2 + lte/alt1250/alt1250_reset_seq.c | 2 + lte/alt1250/alt1250_reset_seq.h | 2 + lte/alt1250/alt1250_select.c | 2 + lte/alt1250/alt1250_select.h | 2 + lte/alt1250/alt1250_socket.c | 2 + lte/alt1250/alt1250_socket.h | 2 + lte/alt1250/alt1250_usockevent.c | 2 + lte/alt1250/alt1250_usockevent.h | 2 + lte/alt1250/alt1250_usockif.c | 2 + lte/alt1250/alt1250_usockif.h | 2 + lte/alt1250/alt1250_util.c | 2 + lte/alt1250/alt1250_util.h | 2 + lte/alt1250/callback_handlers/alt1250_evt.c | 2 + lte/alt1250/callback_handlers/alt1250_evt.h | 2 + .../usock_handlers/alt1250_accepthdlr.c | 2 + lte/alt1250/usock_handlers/alt1250_bindhdlr.c | 2 + .../usock_handlers/alt1250_closehdlr.c | 2 + .../usock_handlers/alt1250_connecthdlr.c | 2 + lte/alt1250/usock_handlers/alt1250_fwupdate.h | 2 + .../usock_handlers/alt1250_getpeernamehdlr.c | 2 + .../usock_handlers/alt1250_getsocknamehdlr.c | 2 + .../usock_handlers/alt1250_getsockopthdlr.c | 2 + .../alt1250_ioctl_denyinetsock.c | 2 + .../usock_handlers/alt1250_ioctl_event.c | 2 + .../usock_handlers/alt1250_ioctl_fwupdate.c | 2 + .../usock_handlers/alt1250_ioctl_ifreq.c | 2 + .../usock_handlers/alt1250_ioctl_ltecmd.c | 2 + .../usock_handlers/alt1250_ioctl_lwm2m.c | 2 + .../usock_handlers/alt1250_ioctl_normal.c | 2 + .../usock_handlers/alt1250_ioctl_other.c | 2 + .../usock_handlers/alt1250_ioctl_power.c | 2 + .../usock_handlers/alt1250_ioctl_subhdlr.h | 2 + .../usock_handlers/alt1250_ioctlhdlr.c | 2 + .../usock_handlers/alt1250_listenhdlr.c | 2 + .../usock_handlers/alt1250_recvfromhdlr.c | 2 + .../usock_handlers/alt1250_sendtohdlr.c | 2 + .../usock_handlers/alt1250_setsockopthdlr.c | 2 + .../usock_handlers/alt1250_shutdownhdlr.c | 2 + lte/alt1250/usock_handlers/alt1250_sms.c | 2 + lte/alt1250/usock_handlers/alt1250_sms.h | 2 + .../usock_handlers/alt1250_sockethdlr.c | 2 + .../usock_handlers/alt1250_usrsock_hdlr.h | 2 + lte/lapi/CMakeLists.txt | 2 + lte/lapi/Make.defs | 2 + lte/lapi/Makefile | 2 + lte/lapi/src/Make.defs | 2 + lte/lapi/src/lapi_dbg.h | 2 + lte/lapi/src/lapi_evt.c | 2 + lte/lapi/src/lapi_firmware.c | 2 + lte/lapi/src/lapi_log.c | 2 + lte/lapi/src/lapi_lwm2m.c | 2 + lte/lapi/src/lapi_net.c | 2 + lte/lapi/src/lapi_other.c | 2 + lte/lapi/src/lapi_pdn.c | 2 + lte/lapi/src/lapi_pin.c | 2 + lte/lapi/src/lapi_power.c | 2 + lte/lapi/src/lapi_psave.c | 2 + lte/lapi/src/lapi_radio.c | 2 + lte/lapi/src/lapi_sim.c | 2 + 79 files changed, 182 insertions(+), 54 deletions(-) diff --git a/lte/CMakeLists.txt b/lte/CMakeLists.txt index 01e72ea15..44b08a292 100644 --- a/lte/CMakeLists.txt +++ b/lte/CMakeLists.txt @@ -1,6 +1,8 @@ # ############################################################################## # apps/lte/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/lte/Make.defs b/lte/Make.defs index 89c366ca2..70956ea21 100644 --- a/lte/Make.defs +++ b/lte/Make.defs @@ -1,36 +1,23 @@ ############################################################################ # apps/lte/Make.defs # -# Copyright 2021 Sony Semiconductor Solutions Corporation +# SPDX-License-Identifier: Apache-2.0 # -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions -# are met: +# 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 +# file to you 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 # -# 1. Redistributions of source code must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# 2. Redistributions in binary form must reproduce the above copyright -# notice, this list of conditions and the following disclaimer in -# the documentation and/or other materials provided with the -# distribution. -# 3. Neither the name of Sony Semiconductor Solutions Corporation nor -# the names of its contributors may be used to endorse or promote -# products derived from this software without specific prior written -# permission. +# http://www.apache.org/licenses/LICENSE-2.0 # -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS -# OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED -# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -# POSSIBILITY OF SUCH DAMAGE. +# 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. # -############################################################################ +# ############################################################################## include $(wildcard lte/*/Make.defs) diff --git a/lte/Makefile b/lte/Makefile index 79ab0d8fb..4fe43e7e9 100644 --- a/lte/Makefile +++ b/lte/Makefile @@ -1,37 +1,24 @@ ############################################################################ # apps/lte/Makefile # -# Copyright 2021 Sony Semiconductor Solutions Corporation +# SPDX-License-Identifier: Apache-2.0 # -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions -# are met: +# 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 +# file to you 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 # -# 1. Redistributions of source code must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# 2. Redistributions in binary form must reproduce the above copyright -# notice, this list of conditions and the following disclaimer in -# the documentation and/or other materials provided with the -# distribution. -# 3. Neither the name of Sony Semiconductor Solutions Corporation nor -# the names of its contributors may be used to endorse or promote -# products derived from this software without specific prior written -# permission. +# http://www.apache.org/licenses/LICENSE-2.0 # -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS -# OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED -# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -# POSSIBILITY OF SUCH DAMAGE. +# 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. # -############################################################################ +# ############################################################################## MENUDESC = "LTE Libraries and NSH Add-Ons" diff --git a/lte/alt1250/CMakeLists.txt b/lte/alt1250/CMakeLists.txt index 9ed2f85ec..c54f8e1e0 100644 --- a/lte/alt1250/CMakeLists.txt +++ b/lte/alt1250/CMakeLists.txt @@ -1,6 +1,8 @@ # ############################################################################## # apps/lte/alt1250/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/lte/alt1250/Make.defs b/lte/alt1250/Make.defs index e5b7a3f92..4b0fbab09 100644 --- a/lte/alt1250/Make.defs +++ b/lte/alt1250/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # apps/lte/alt1250/Make.defs # +# 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/lte/alt1250/Makefile b/lte/alt1250/Makefile index 138b2bed4..7f1ee1e2c 100644 --- a/lte/alt1250/Makefile +++ b/lte/alt1250/Makefile @@ -1,6 +1,8 @@ ############################################################################ # apps/lte/alt1250/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/lte/alt1250/alt1250_atcmd.c b/lte/alt1250/alt1250_atcmd.c index bdd7e2853..2b4558518 100644 --- a/lte/alt1250/alt1250_atcmd.c +++ b/lte/alt1250/alt1250_atcmd.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/alt1250_atcmd.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/lte/alt1250/alt1250_atcmd.h b/lte/alt1250/alt1250_atcmd.h index d732a3313..4a9e275e6 100644 --- a/lte/alt1250/alt1250_atcmd.h +++ b/lte/alt1250/alt1250_atcmd.h @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/alt1250_atcmd.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/lte/alt1250/alt1250_container.c b/lte/alt1250/alt1250_container.c index 5c2850110..21ec1b31a 100644 --- a/lte/alt1250/alt1250_container.c +++ b/lte/alt1250/alt1250_container.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/alt1250_container.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/lte/alt1250/alt1250_container.h b/lte/alt1250/alt1250_container.h index 894ff5aa4..2e45e12ce 100644 --- a/lte/alt1250/alt1250_container.h +++ b/lte/alt1250/alt1250_container.h @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/alt1250_container.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/lte/alt1250/alt1250_daemon.h b/lte/alt1250/alt1250_daemon.h index c385d23ce..45d8a923b 100644 --- a/lte/alt1250/alt1250_daemon.h +++ b/lte/alt1250/alt1250_daemon.h @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/alt1250_daemon.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/lte/alt1250/alt1250_dbg.h b/lte/alt1250/alt1250_dbg.h index edffed181..82b9bb27a 100644 --- a/lte/alt1250/alt1250_dbg.h +++ b/lte/alt1250/alt1250_dbg.h @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/alt1250_dbg.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/lte/alt1250/alt1250_devevent.c b/lte/alt1250/alt1250_devevent.c index f58fe7170..cdd2da524 100644 --- a/lte/alt1250/alt1250_devevent.c +++ b/lte/alt1250/alt1250_devevent.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/alt1250_devevent.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/lte/alt1250/alt1250_devevent.h b/lte/alt1250/alt1250_devevent.h index 03667fe0b..c4e27aa22 100644 --- a/lte/alt1250/alt1250_devevent.h +++ b/lte/alt1250/alt1250_devevent.h @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/alt1250_devevent.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/lte/alt1250/alt1250_devif.c b/lte/alt1250/alt1250_devif.c index d58f3c75f..a742938fb 100644 --- a/lte/alt1250/alt1250_devif.c +++ b/lte/alt1250/alt1250_devif.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/alt1250_devif.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/lte/alt1250/alt1250_devif.h b/lte/alt1250/alt1250_devif.h index 5a01b647d..c537754df 100644 --- a/lte/alt1250/alt1250_devif.h +++ b/lte/alt1250/alt1250_devif.h @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/alt1250_devif.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/lte/alt1250/alt1250_main.c b/lte/alt1250/alt1250_main.c index d78adacc4..db40a6bf9 100644 --- a/lte/alt1250/alt1250_main.c +++ b/lte/alt1250/alt1250_main.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/alt1250_main.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/lte/alt1250/alt1250_netdev.c b/lte/alt1250/alt1250_netdev.c index 8e40afd92..f0e8719fa 100644 --- a/lte/alt1250/alt1250_netdev.c +++ b/lte/alt1250/alt1250_netdev.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/alt1250_netdev.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/lte/alt1250/alt1250_netdev.h b/lte/alt1250/alt1250_netdev.h index a6931e37e..3d9c67f42 100644 --- a/lte/alt1250/alt1250_netdev.h +++ b/lte/alt1250/alt1250_netdev.h @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/alt1250_netdev.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/lte/alt1250/alt1250_postproc.h b/lte/alt1250/alt1250_postproc.h index 25cd32a2e..4e4b819fe 100644 --- a/lte/alt1250/alt1250_postproc.h +++ b/lte/alt1250/alt1250_postproc.h @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/alt1250_postproc.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/lte/alt1250/alt1250_reset_seq.c b/lte/alt1250/alt1250_reset_seq.c index 3dc836803..f6080887c 100644 --- a/lte/alt1250/alt1250_reset_seq.c +++ b/lte/alt1250/alt1250_reset_seq.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/alt1250_reset_seq.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/lte/alt1250/alt1250_reset_seq.h b/lte/alt1250/alt1250_reset_seq.h index 720a948ad..d5769522f 100644 --- a/lte/alt1250/alt1250_reset_seq.h +++ b/lte/alt1250/alt1250_reset_seq.h @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/alt1250_reset_seq.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/lte/alt1250/alt1250_select.c b/lte/alt1250/alt1250_select.c index e608e3532..dd44d38f2 100644 --- a/lte/alt1250/alt1250_select.c +++ b/lte/alt1250/alt1250_select.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/alt1250_select.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/lte/alt1250/alt1250_select.h b/lte/alt1250/alt1250_select.h index 4336e5f66..c38625534 100644 --- a/lte/alt1250/alt1250_select.h +++ b/lte/alt1250/alt1250_select.h @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/alt1250_select.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/lte/alt1250/alt1250_socket.c b/lte/alt1250/alt1250_socket.c index 94af4bff5..d6eccf710 100644 --- a/lte/alt1250/alt1250_socket.c +++ b/lte/alt1250/alt1250_socket.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/alt1250_socket.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/lte/alt1250/alt1250_socket.h b/lte/alt1250/alt1250_socket.h index 64409e96c..77b8286ae 100644 --- a/lte/alt1250/alt1250_socket.h +++ b/lte/alt1250/alt1250_socket.h @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/alt1250_socket.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/lte/alt1250/alt1250_usockevent.c b/lte/alt1250/alt1250_usockevent.c index 9c4b637a5..5bc76555b 100644 --- a/lte/alt1250/alt1250_usockevent.c +++ b/lte/alt1250/alt1250_usockevent.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/alt1250_usockevent.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/lte/alt1250/alt1250_usockevent.h b/lte/alt1250/alt1250_usockevent.h index 6309ee85b..922f0b3a4 100644 --- a/lte/alt1250/alt1250_usockevent.h +++ b/lte/alt1250/alt1250_usockevent.h @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/alt1250_usockevent.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/lte/alt1250/alt1250_usockif.c b/lte/alt1250/alt1250_usockif.c index f85d05a61..ec188775c 100644 --- a/lte/alt1250/alt1250_usockif.c +++ b/lte/alt1250/alt1250_usockif.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/alt1250_usockif.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/lte/alt1250/alt1250_usockif.h b/lte/alt1250/alt1250_usockif.h index df33f4cc7..2ffcc02e4 100644 --- a/lte/alt1250/alt1250_usockif.h +++ b/lte/alt1250/alt1250_usockif.h @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/alt1250_usockif.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/lte/alt1250/alt1250_util.c b/lte/alt1250/alt1250_util.c index 9346a6f42..75fc00a3d 100644 --- a/lte/alt1250/alt1250_util.c +++ b/lte/alt1250/alt1250_util.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/alt1250_util.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/lte/alt1250/alt1250_util.h b/lte/alt1250/alt1250_util.h index 85be0c992..ac60e05aa 100644 --- a/lte/alt1250/alt1250_util.h +++ b/lte/alt1250/alt1250_util.h @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/alt1250_util.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/lte/alt1250/callback_handlers/alt1250_evt.c b/lte/alt1250/callback_handlers/alt1250_evt.c index 73bf1a840..59cfe0bed 100644 --- a/lte/alt1250/callback_handlers/alt1250_evt.c +++ b/lte/alt1250/callback_handlers/alt1250_evt.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/callback_handlers/alt1250_evt.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/lte/alt1250/callback_handlers/alt1250_evt.h b/lte/alt1250/callback_handlers/alt1250_evt.h index b87a4fcc8..9df097fe8 100644 --- a/lte/alt1250/callback_handlers/alt1250_evt.h +++ b/lte/alt1250/callback_handlers/alt1250_evt.h @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/callback_handlers/alt1250_evt.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/lte/alt1250/usock_handlers/alt1250_accepthdlr.c b/lte/alt1250/usock_handlers/alt1250_accepthdlr.c index 9b2bf1d52..4151425d8 100644 --- a/lte/alt1250/usock_handlers/alt1250_accepthdlr.c +++ b/lte/alt1250/usock_handlers/alt1250_accepthdlr.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/usock_handlers/alt1250_accepthdlr.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/lte/alt1250/usock_handlers/alt1250_bindhdlr.c b/lte/alt1250/usock_handlers/alt1250_bindhdlr.c index b79ea10cb..85a12b0ee 100644 --- a/lte/alt1250/usock_handlers/alt1250_bindhdlr.c +++ b/lte/alt1250/usock_handlers/alt1250_bindhdlr.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/usock_handlers/alt1250_bindhdlr.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/lte/alt1250/usock_handlers/alt1250_closehdlr.c b/lte/alt1250/usock_handlers/alt1250_closehdlr.c index c2c25dd1a..6391046df 100644 --- a/lte/alt1250/usock_handlers/alt1250_closehdlr.c +++ b/lte/alt1250/usock_handlers/alt1250_closehdlr.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/usock_handlers/alt1250_closehdlr.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/lte/alt1250/usock_handlers/alt1250_connecthdlr.c b/lte/alt1250/usock_handlers/alt1250_connecthdlr.c index 7df629b84..cad728ab3 100644 --- a/lte/alt1250/usock_handlers/alt1250_connecthdlr.c +++ b/lte/alt1250/usock_handlers/alt1250_connecthdlr.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/usock_handlers/alt1250_connecthdlr.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/lte/alt1250/usock_handlers/alt1250_fwupdate.h b/lte/alt1250/usock_handlers/alt1250_fwupdate.h index 23b232668..38281cdc0 100644 --- a/lte/alt1250/usock_handlers/alt1250_fwupdate.h +++ b/lte/alt1250/usock_handlers/alt1250_fwupdate.h @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/usock_handlers/alt1250_fwupdate.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/lte/alt1250/usock_handlers/alt1250_getpeernamehdlr.c b/lte/alt1250/usock_handlers/alt1250_getpeernamehdlr.c index aa4259325..5374b06c8 100644 --- a/lte/alt1250/usock_handlers/alt1250_getpeernamehdlr.c +++ b/lte/alt1250/usock_handlers/alt1250_getpeernamehdlr.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/usock_handlers/alt1250_getpeernamehdlr.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/lte/alt1250/usock_handlers/alt1250_getsocknamehdlr.c b/lte/alt1250/usock_handlers/alt1250_getsocknamehdlr.c index b6df94887..23350cf1a 100644 --- a/lte/alt1250/usock_handlers/alt1250_getsocknamehdlr.c +++ b/lte/alt1250/usock_handlers/alt1250_getsocknamehdlr.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/usock_handlers/alt1250_getsocknamehdlr.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/lte/alt1250/usock_handlers/alt1250_getsockopthdlr.c b/lte/alt1250/usock_handlers/alt1250_getsockopthdlr.c index 28174fce8..2805cd574 100644 --- a/lte/alt1250/usock_handlers/alt1250_getsockopthdlr.c +++ b/lte/alt1250/usock_handlers/alt1250_getsockopthdlr.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/usock_handlers/alt1250_getsockopthdlr.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/lte/alt1250/usock_handlers/alt1250_ioctl_denyinetsock.c b/lte/alt1250/usock_handlers/alt1250_ioctl_denyinetsock.c index 8de3ff142..d85ca7ac0 100644 --- a/lte/alt1250/usock_handlers/alt1250_ioctl_denyinetsock.c +++ b/lte/alt1250/usock_handlers/alt1250_ioctl_denyinetsock.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/usock_handlers/alt1250_ioctl_denyinetsock.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/lte/alt1250/usock_handlers/alt1250_ioctl_event.c b/lte/alt1250/usock_handlers/alt1250_ioctl_event.c index 913f456d4..cf7ee532a 100644 --- a/lte/alt1250/usock_handlers/alt1250_ioctl_event.c +++ b/lte/alt1250/usock_handlers/alt1250_ioctl_event.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/usock_handlers/alt1250_ioctl_event.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/lte/alt1250/usock_handlers/alt1250_ioctl_fwupdate.c b/lte/alt1250/usock_handlers/alt1250_ioctl_fwupdate.c index 7fa67e298..dfd6c41ae 100644 --- a/lte/alt1250/usock_handlers/alt1250_ioctl_fwupdate.c +++ b/lte/alt1250/usock_handlers/alt1250_ioctl_fwupdate.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/usock_handlers/alt1250_ioctl_fwupdate.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/lte/alt1250/usock_handlers/alt1250_ioctl_ifreq.c b/lte/alt1250/usock_handlers/alt1250_ioctl_ifreq.c index 875361681..6a948c653 100644 --- a/lte/alt1250/usock_handlers/alt1250_ioctl_ifreq.c +++ b/lte/alt1250/usock_handlers/alt1250_ioctl_ifreq.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/usock_handlers/alt1250_ioctl_ifreq.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/lte/alt1250/usock_handlers/alt1250_ioctl_ltecmd.c b/lte/alt1250/usock_handlers/alt1250_ioctl_ltecmd.c index 82e211f6f..889f9b41f 100644 --- a/lte/alt1250/usock_handlers/alt1250_ioctl_ltecmd.c +++ b/lte/alt1250/usock_handlers/alt1250_ioctl_ltecmd.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/usock_handlers/alt1250_ioctl_ltecmd.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/lte/alt1250/usock_handlers/alt1250_ioctl_lwm2m.c b/lte/alt1250/usock_handlers/alt1250_ioctl_lwm2m.c index ea82ad92b..e68704a87 100644 --- a/lte/alt1250/usock_handlers/alt1250_ioctl_lwm2m.c +++ b/lte/alt1250/usock_handlers/alt1250_ioctl_lwm2m.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/usock_handlers/alt1250_ioctl_lwm2m.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/lte/alt1250/usock_handlers/alt1250_ioctl_normal.c b/lte/alt1250/usock_handlers/alt1250_ioctl_normal.c index 8c116833a..90b3a678f 100644 --- a/lte/alt1250/usock_handlers/alt1250_ioctl_normal.c +++ b/lte/alt1250/usock_handlers/alt1250_ioctl_normal.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/usock_handlers/alt1250_ioctl_normal.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/lte/alt1250/usock_handlers/alt1250_ioctl_other.c b/lte/alt1250/usock_handlers/alt1250_ioctl_other.c index 5010c84d5..057553a5c 100644 --- a/lte/alt1250/usock_handlers/alt1250_ioctl_other.c +++ b/lte/alt1250/usock_handlers/alt1250_ioctl_other.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/usock_handlers/alt1250_ioctl_other.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/lte/alt1250/usock_handlers/alt1250_ioctl_power.c b/lte/alt1250/usock_handlers/alt1250_ioctl_power.c index 21e62462d..c910060c1 100644 --- a/lte/alt1250/usock_handlers/alt1250_ioctl_power.c +++ b/lte/alt1250/usock_handlers/alt1250_ioctl_power.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/usock_handlers/alt1250_ioctl_power.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/lte/alt1250/usock_handlers/alt1250_ioctl_subhdlr.h b/lte/alt1250/usock_handlers/alt1250_ioctl_subhdlr.h index 6ce7a1b74..fcd3b00f8 100644 --- a/lte/alt1250/usock_handlers/alt1250_ioctl_subhdlr.h +++ b/lte/alt1250/usock_handlers/alt1250_ioctl_subhdlr.h @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/usock_handlers/alt1250_ioctl_subhdlr.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/lte/alt1250/usock_handlers/alt1250_ioctlhdlr.c b/lte/alt1250/usock_handlers/alt1250_ioctlhdlr.c index 568d19928..43d638024 100644 --- a/lte/alt1250/usock_handlers/alt1250_ioctlhdlr.c +++ b/lte/alt1250/usock_handlers/alt1250_ioctlhdlr.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/usock_handlers/alt1250_ioctlhdlr.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/lte/alt1250/usock_handlers/alt1250_listenhdlr.c b/lte/alt1250/usock_handlers/alt1250_listenhdlr.c index a3c3bed26..4c66beeaf 100644 --- a/lte/alt1250/usock_handlers/alt1250_listenhdlr.c +++ b/lte/alt1250/usock_handlers/alt1250_listenhdlr.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/usock_handlers/alt1250_listenhdlr.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/lte/alt1250/usock_handlers/alt1250_recvfromhdlr.c b/lte/alt1250/usock_handlers/alt1250_recvfromhdlr.c index 906a0b9bb..b2c45f139 100644 --- a/lte/alt1250/usock_handlers/alt1250_recvfromhdlr.c +++ b/lte/alt1250/usock_handlers/alt1250_recvfromhdlr.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/usock_handlers/alt1250_recvfromhdlr.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/lte/alt1250/usock_handlers/alt1250_sendtohdlr.c b/lte/alt1250/usock_handlers/alt1250_sendtohdlr.c index e47b26d9f..2894354f2 100644 --- a/lte/alt1250/usock_handlers/alt1250_sendtohdlr.c +++ b/lte/alt1250/usock_handlers/alt1250_sendtohdlr.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/usock_handlers/alt1250_sendtohdlr.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/lte/alt1250/usock_handlers/alt1250_setsockopthdlr.c b/lte/alt1250/usock_handlers/alt1250_setsockopthdlr.c index f4c5106b1..247053bed 100644 --- a/lte/alt1250/usock_handlers/alt1250_setsockopthdlr.c +++ b/lte/alt1250/usock_handlers/alt1250_setsockopthdlr.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/usock_handlers/alt1250_setsockopthdlr.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/lte/alt1250/usock_handlers/alt1250_shutdownhdlr.c b/lte/alt1250/usock_handlers/alt1250_shutdownhdlr.c index 0c8a9765b..30a507c52 100644 --- a/lte/alt1250/usock_handlers/alt1250_shutdownhdlr.c +++ b/lte/alt1250/usock_handlers/alt1250_shutdownhdlr.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/usock_handlers/alt1250_shutdownhdlr.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/lte/alt1250/usock_handlers/alt1250_sms.c b/lte/alt1250/usock_handlers/alt1250_sms.c index 610669cfc..5f70beff8 100644 --- a/lte/alt1250/usock_handlers/alt1250_sms.c +++ b/lte/alt1250/usock_handlers/alt1250_sms.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/usock_handlers/alt1250_sms.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/lte/alt1250/usock_handlers/alt1250_sms.h b/lte/alt1250/usock_handlers/alt1250_sms.h index 8f0707a80..11f9b4dce 100644 --- a/lte/alt1250/usock_handlers/alt1250_sms.h +++ b/lte/alt1250/usock_handlers/alt1250_sms.h @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/usock_handlers/alt1250_sms.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/lte/alt1250/usock_handlers/alt1250_sockethdlr.c b/lte/alt1250/usock_handlers/alt1250_sockethdlr.c index 8d6321879..e6046f36e 100644 --- a/lte/alt1250/usock_handlers/alt1250_sockethdlr.c +++ b/lte/alt1250/usock_handlers/alt1250_sockethdlr.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/usock_handlers/alt1250_sockethdlr.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/lte/alt1250/usock_handlers/alt1250_usrsock_hdlr.h b/lte/alt1250/usock_handlers/alt1250_usrsock_hdlr.h index 7bd85b2ae..5142389fc 100644 --- a/lte/alt1250/usock_handlers/alt1250_usrsock_hdlr.h +++ b/lte/alt1250/usock_handlers/alt1250_usrsock_hdlr.h @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/alt1250/usock_handlers/alt1250_usrsock_hdlr.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/lte/lapi/CMakeLists.txt b/lte/lapi/CMakeLists.txt index 53ea4de4a..45c0d852d 100644 --- a/lte/lapi/CMakeLists.txt +++ b/lte/lapi/CMakeLists.txt @@ -1,6 +1,8 @@ # ############################################################################## # apps/lte/lapi/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/lte/lapi/Make.defs b/lte/lapi/Make.defs index 77996b20e..9fd239fc2 100644 --- a/lte/lapi/Make.defs +++ b/lte/lapi/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # apps/lte/lapi/Make.defs # +# 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/lte/lapi/Makefile b/lte/lapi/Makefile index 55d9362f7..936206501 100644 --- a/lte/lapi/Makefile +++ b/lte/lapi/Makefile @@ -1,6 +1,8 @@ ############################################################################ # apps/lte/lapi/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/lte/lapi/src/Make.defs b/lte/lapi/src/Make.defs index daa284365..4a6816e86 100644 --- a/lte/lapi/src/Make.defs +++ b/lte/lapi/src/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # apps/lte/lapi/src/Make.defs # +# 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/lte/lapi/src/lapi_dbg.h b/lte/lapi/src/lapi_dbg.h index 092e13f88..403847653 100644 --- a/lte/lapi/src/lapi_dbg.h +++ b/lte/lapi/src/lapi_dbg.h @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/lapi/src/lapi_dbg.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/lte/lapi/src/lapi_evt.c b/lte/lapi/src/lapi_evt.c index cc047584b..3826a5073 100644 --- a/lte/lapi/src/lapi_evt.c +++ b/lte/lapi/src/lapi_evt.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/lapi/src/lapi_evt.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/lte/lapi/src/lapi_firmware.c b/lte/lapi/src/lapi_firmware.c index a02113f0a..203c4afb7 100644 --- a/lte/lapi/src/lapi_firmware.c +++ b/lte/lapi/src/lapi_firmware.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/lapi/src/lapi_firmware.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/lte/lapi/src/lapi_log.c b/lte/lapi/src/lapi_log.c index 547b1b1fd..1ddf2e4f2 100644 --- a/lte/lapi/src/lapi_log.c +++ b/lte/lapi/src/lapi_log.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/lapi/src/lapi_log.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/lte/lapi/src/lapi_lwm2m.c b/lte/lapi/src/lapi_lwm2m.c index 8542f6807..47a5d9f59 100644 --- a/lte/lapi/src/lapi_lwm2m.c +++ b/lte/lapi/src/lapi_lwm2m.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/lapi/src/lapi_lwm2m.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/lte/lapi/src/lapi_net.c b/lte/lapi/src/lapi_net.c index e68583b35..9eaae54af 100644 --- a/lte/lapi/src/lapi_net.c +++ b/lte/lapi/src/lapi_net.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/lapi/src/lapi_net.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/lte/lapi/src/lapi_other.c b/lte/lapi/src/lapi_other.c index 4897bed85..b7d6a2b64 100644 --- a/lte/lapi/src/lapi_other.c +++ b/lte/lapi/src/lapi_other.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/lapi/src/lapi_other.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/lte/lapi/src/lapi_pdn.c b/lte/lapi/src/lapi_pdn.c index 5fc0451b0..def048d70 100644 --- a/lte/lapi/src/lapi_pdn.c +++ b/lte/lapi/src/lapi_pdn.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/lapi/src/lapi_pdn.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/lte/lapi/src/lapi_pin.c b/lte/lapi/src/lapi_pin.c index 31135b7fa..0a0496fa7 100644 --- a/lte/lapi/src/lapi_pin.c +++ b/lte/lapi/src/lapi_pin.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/lapi/src/lapi_pin.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/lte/lapi/src/lapi_power.c b/lte/lapi/src/lapi_power.c index c37e45474..31ae86df0 100644 --- a/lte/lapi/src/lapi_power.c +++ b/lte/lapi/src/lapi_power.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/lapi/src/lapi_power.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/lte/lapi/src/lapi_psave.c b/lte/lapi/src/lapi_psave.c index 10defd44c..8bc3aab02 100644 --- a/lte/lapi/src/lapi_psave.c +++ b/lte/lapi/src/lapi_psave.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/lapi/src/lapi_psave.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/lte/lapi/src/lapi_radio.c b/lte/lapi/src/lapi_radio.c index 0ba12362f..09ce0aa05 100644 --- a/lte/lapi/src/lapi_radio.c +++ b/lte/lapi/src/lapi_radio.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/lapi/src/lapi_radio.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/lte/lapi/src/lapi_sim.c b/lte/lapi/src/lapi_sim.c index dcf7efc1b..7de404417 100644 --- a/lte/lapi/src/lapi_sim.c +++ b/lte/lapi/src/lapi_sim.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/lte/lapi/src/lapi_sim.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