From 27d8ae36ba1738d84df21f7e97f05d2dda0dd2ba Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Sun, 29 Dec 2024 12:24:52 +0100 Subject: [PATCH] nshlib: 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 --- nshlib/CMakeLists.txt | 2 ++ nshlib/Make.defs | 2 ++ nshlib/Makefile | 2 ++ nshlib/nsh.h | 2 ++ nshlib/nsh_alias.c | 2 ++ nshlib/nsh_altconsole.c | 2 ++ nshlib/nsh_builtin.c | 2 ++ nshlib/nsh_codeccmd.c | 2 ++ nshlib/nsh_command.c | 2 ++ nshlib/nsh_console.c | 2 ++ nshlib/nsh_console.h | 2 ++ nshlib/nsh_consolemain.c | 2 ++ nshlib/nsh_dbgcmds.c | 2 ++ nshlib/nsh_ddcmd.c | 2 ++ nshlib/nsh_envcmds.c | 2 ++ nshlib/nsh_fileapps.c | 2 ++ nshlib/nsh_fscmds.c | 2 ++ nshlib/nsh_fsutils.c | 2 ++ nshlib/nsh_init.c | 2 ++ nshlib/nsh_login.c | 2 ++ nshlib/nsh_mmcmds.c | 2 ++ nshlib/nsh_mntcmds.c | 2 ++ nshlib/nsh_modcmds.c | 2 ++ nshlib/nsh_netcmds.c | 2 ++ nshlib/nsh_parse.c | 2 ++ nshlib/nsh_passwdcmds.c | 2 ++ nshlib/nsh_printf.c | 2 ++ nshlib/nsh_proccmds.c | 2 ++ nshlib/nsh_prompt.c | 2 ++ nshlib/nsh_routecmds.c | 2 ++ nshlib/nsh_script.c | 2 ++ nshlib/nsh_session.c | 2 ++ nshlib/nsh_syscmds.c | 2 ++ nshlib/nsh_system.c | 2 ++ nshlib/nsh_telnetd.c | 2 ++ nshlib/nsh_telnetlogin.c | 2 ++ nshlib/nsh_test.c | 2 ++ nshlib/nsh_timcmds.c | 2 ++ nshlib/nsh_usbconsole.c | 2 ++ nshlib/nsh_usbtrace.c | 2 ++ nshlib/nsh_vars.c | 2 ++ nshlib/nsh_wait.c | 2 ++ 42 files changed, 84 insertions(+) diff --git a/nshlib/CMakeLists.txt b/nshlib/CMakeLists.txt index b7d3fc50d..d09df277d 100644 --- a/nshlib/CMakeLists.txt +++ b/nshlib/CMakeLists.txt @@ -1,6 +1,8 @@ # ############################################################################## # apps/nshlib/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/nshlib/Make.defs b/nshlib/Make.defs index 8eae4359e..6f10f0272 100644 --- a/nshlib/Make.defs +++ b/nshlib/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # apps/nshlib/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/nshlib/Makefile b/nshlib/Makefile index 808d63af5..917d8baeb 100644 --- a/nshlib/Makefile +++ b/nshlib/Makefile @@ -1,6 +1,8 @@ ############################################################################ # apps/nshlib/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/nshlib/nsh.h b/nshlib/nsh.h index 42b7167c2..ef33088ac 100644 --- a/nshlib/nsh.h +++ b/nshlib/nsh.h @@ -1,6 +1,8 @@ /**************************************************************************** * apps/nshlib/nsh.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/nshlib/nsh_alias.c b/nshlib/nsh_alias.c index 0024548da..6c800f6c2 100644 --- a/nshlib/nsh_alias.c +++ b/nshlib/nsh_alias.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/nshlib/nsh_alias.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/nshlib/nsh_altconsole.c b/nshlib/nsh_altconsole.c index 3e2c9335b..7423fedf7 100644 --- a/nshlib/nsh_altconsole.c +++ b/nshlib/nsh_altconsole.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/nshlib/nsh_altconsole.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/nshlib/nsh_builtin.c b/nshlib/nsh_builtin.c index cfd951207..6ff8f99a6 100644 --- a/nshlib/nsh_builtin.c +++ b/nshlib/nsh_builtin.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/nshlib/nsh_builtin.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/nshlib/nsh_codeccmd.c b/nshlib/nsh_codeccmd.c index 859405d5c..796bcffd9 100644 --- a/nshlib/nsh_codeccmd.c +++ b/nshlib/nsh_codeccmd.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/nshlib/nsh_codeccmd.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/nshlib/nsh_command.c b/nshlib/nsh_command.c index 69fd54a92..3a91a1c2f 100644 --- a/nshlib/nsh_command.c +++ b/nshlib/nsh_command.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/nshlib/nsh_command.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/nshlib/nsh_console.c b/nshlib/nsh_console.c index ffa058640..2d8c315ad 100644 --- a/nshlib/nsh_console.c +++ b/nshlib/nsh_console.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/nshlib/nsh_console.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/nshlib/nsh_console.h b/nshlib/nsh_console.h index 9d305be01..1a9ccf034 100644 --- a/nshlib/nsh_console.h +++ b/nshlib/nsh_console.h @@ -1,6 +1,8 @@ /**************************************************************************** * apps/nshlib/nsh_console.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/nshlib/nsh_consolemain.c b/nshlib/nsh_consolemain.c index 23c650d87..d58f457e3 100644 --- a/nshlib/nsh_consolemain.c +++ b/nshlib/nsh_consolemain.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/nshlib/nsh_consolemain.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/nshlib/nsh_dbgcmds.c b/nshlib/nsh_dbgcmds.c index ada21293b..8f2f0e215 100644 --- a/nshlib/nsh_dbgcmds.c +++ b/nshlib/nsh_dbgcmds.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/nshlib/nsh_dbgcmds.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/nshlib/nsh_ddcmd.c b/nshlib/nsh_ddcmd.c index 4f43a1a45..d24aac52b 100644 --- a/nshlib/nsh_ddcmd.c +++ b/nshlib/nsh_ddcmd.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/nshlib/nsh_ddcmd.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/nshlib/nsh_envcmds.c b/nshlib/nsh_envcmds.c index 331af3e9f..d2378bb38 100644 --- a/nshlib/nsh_envcmds.c +++ b/nshlib/nsh_envcmds.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/nshlib/nsh_envcmds.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/nshlib/nsh_fileapps.c b/nshlib/nsh_fileapps.c index d49810a9d..54efd6de2 100644 --- a/nshlib/nsh_fileapps.c +++ b/nshlib/nsh_fileapps.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/nshlib/nsh_fileapps.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/nshlib/nsh_fscmds.c b/nshlib/nsh_fscmds.c index aef6fd72f..60b88e6dd 100644 --- a/nshlib/nsh_fscmds.c +++ b/nshlib/nsh_fscmds.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/nshlib/nsh_fscmds.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/nshlib/nsh_fsutils.c b/nshlib/nsh_fsutils.c index 48ddf74c8..99e948784 100644 --- a/nshlib/nsh_fsutils.c +++ b/nshlib/nsh_fsutils.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/nshlib/nsh_fsutils.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/nshlib/nsh_init.c b/nshlib/nsh_init.c index 5904269e4..4846ff15b 100644 --- a/nshlib/nsh_init.c +++ b/nshlib/nsh_init.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/nshlib/nsh_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/nshlib/nsh_login.c b/nshlib/nsh_login.c index 0b5996367..74876fc3d 100644 --- a/nshlib/nsh_login.c +++ b/nshlib/nsh_login.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/nshlib/nsh_login.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/nshlib/nsh_mmcmds.c b/nshlib/nsh_mmcmds.c index e84f6f599..518702b07 100644 --- a/nshlib/nsh_mmcmds.c +++ b/nshlib/nsh_mmcmds.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/nshlib/nsh_mmcmds.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/nshlib/nsh_mntcmds.c b/nshlib/nsh_mntcmds.c index 305ffdd93..62579d8b7 100644 --- a/nshlib/nsh_mntcmds.c +++ b/nshlib/nsh_mntcmds.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/nshlib/nsh_mntcmds.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/nshlib/nsh_modcmds.c b/nshlib/nsh_modcmds.c index 6b935e877..4c38dff79 100644 --- a/nshlib/nsh_modcmds.c +++ b/nshlib/nsh_modcmds.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/nshlib/nsh_modcmds.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/nshlib/nsh_netcmds.c b/nshlib/nsh_netcmds.c index cc49771c7..791e1c922 100644 --- a/nshlib/nsh_netcmds.c +++ b/nshlib/nsh_netcmds.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/nshlib/nsh_netcmds.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/nshlib/nsh_parse.c b/nshlib/nsh_parse.c index f6bff1b29..f6922b116 100644 --- a/nshlib/nsh_parse.c +++ b/nshlib/nsh_parse.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/nshlib/nsh_parse.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/nshlib/nsh_passwdcmds.c b/nshlib/nsh_passwdcmds.c index 889f13f77..5c7f86ed2 100644 --- a/nshlib/nsh_passwdcmds.c +++ b/nshlib/nsh_passwdcmds.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/nshlib/nsh_passwdcmds.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/nshlib/nsh_printf.c b/nshlib/nsh_printf.c index bb088e764..dbd8f09a5 100644 --- a/nshlib/nsh_printf.c +++ b/nshlib/nsh_printf.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/nshlib/nsh_printf.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/nshlib/nsh_proccmds.c b/nshlib/nsh_proccmds.c index 497aa0e00..8811357f5 100644 --- a/nshlib/nsh_proccmds.c +++ b/nshlib/nsh_proccmds.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/nshlib/nsh_proccmds.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/nshlib/nsh_prompt.c b/nshlib/nsh_prompt.c index 964534e1c..4dfe24c3c 100644 --- a/nshlib/nsh_prompt.c +++ b/nshlib/nsh_prompt.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/nshlib/nsh_prompt.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/nshlib/nsh_routecmds.c b/nshlib/nsh_routecmds.c index 51c2a7061..538b1105c 100644 --- a/nshlib/nsh_routecmds.c +++ b/nshlib/nsh_routecmds.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/nshlib/nsh_routecmds.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/nshlib/nsh_script.c b/nshlib/nsh_script.c index b9a210dff..52ab377a5 100644 --- a/nshlib/nsh_script.c +++ b/nshlib/nsh_script.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/nshlib/nsh_script.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/nshlib/nsh_session.c b/nshlib/nsh_session.c index b9ac839c0..761f84a04 100644 --- a/nshlib/nsh_session.c +++ b/nshlib/nsh_session.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/nshlib/nsh_session.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/nshlib/nsh_syscmds.c b/nshlib/nsh_syscmds.c index 7c7156aad..7990a2b39 100644 --- a/nshlib/nsh_syscmds.c +++ b/nshlib/nsh_syscmds.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/nshlib/nsh_syscmds.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/nshlib/nsh_system.c b/nshlib/nsh_system.c index 26aaecbd2..902e8f5a5 100644 --- a/nshlib/nsh_system.c +++ b/nshlib/nsh_system.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/nshlib/nsh_system.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/nshlib/nsh_telnetd.c b/nshlib/nsh_telnetd.c index 371993474..62f87e479 100644 --- a/nshlib/nsh_telnetd.c +++ b/nshlib/nsh_telnetd.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/nshlib/nsh_telnetd.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/nshlib/nsh_telnetlogin.c b/nshlib/nsh_telnetlogin.c index 4fc2a4af0..9e23cbc26 100644 --- a/nshlib/nsh_telnetlogin.c +++ b/nshlib/nsh_telnetlogin.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/nshlib/nsh_telnetlogin.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/nshlib/nsh_test.c b/nshlib/nsh_test.c index b04dfdbf2..242d730c2 100644 --- a/nshlib/nsh_test.c +++ b/nshlib/nsh_test.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/nshlib/nsh_test.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/nshlib/nsh_timcmds.c b/nshlib/nsh_timcmds.c index 3c54ca538..cd1bbc378 100644 --- a/nshlib/nsh_timcmds.c +++ b/nshlib/nsh_timcmds.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/nshlib/nsh_timcmds.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/nshlib/nsh_usbconsole.c b/nshlib/nsh_usbconsole.c index a11185840..cc7f97005 100644 --- a/nshlib/nsh_usbconsole.c +++ b/nshlib/nsh_usbconsole.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/nshlib/nsh_usbconsole.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/nshlib/nsh_usbtrace.c b/nshlib/nsh_usbtrace.c index 3faaae348..df05d45a3 100644 --- a/nshlib/nsh_usbtrace.c +++ b/nshlib/nsh_usbtrace.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/nshlib/nsh_usbtrace.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/nshlib/nsh_vars.c b/nshlib/nsh_vars.c index 57ed512cf..f940d64a3 100644 --- a/nshlib/nsh_vars.c +++ b/nshlib/nsh_vars.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/nshlib/nsh_vars.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/nshlib/nsh_wait.c b/nshlib/nsh_wait.c index 08106736b..d6d1de039 100644 --- a/nshlib/nsh_wait.c +++ b/nshlib/nsh_wait.c @@ -1,6 +1,8 @@ /**************************************************************************** * apps/nshlib/nsh_wait.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