From 0b354aca0b12188b72a1db72ef6e2ac7b00c77cb Mon Sep 17 00:00:00 2001 From: simbit18 Date: Sat, 8 Aug 2026 17:13:44 +0200 Subject: [PATCH 1/6] apps/examples/smf: nxstyle fix Relative files path - fix Relative file path does not match actual file. Signed-off-by: simbit18 --- examples/smf/CMakeLists.txt | 18 +++++++++++++++++- examples/smf/Make.defs | 2 +- examples/smf/Makefile | 2 +- 3 files changed, 19 insertions(+), 3 deletions(-) diff --git a/examples/smf/CMakeLists.txt b/examples/smf/CMakeLists.txt index bba48ca029a..2c21ff6535e 100644 --- a/examples/smf/CMakeLists.txt +++ b/examples/smf/CMakeLists.txt @@ -1,7 +1,23 @@ # ############################################################################## -# apps/examples/hsm_psicc2/CMakeLists.txt +# apps/examples/smf/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 +# 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 +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations under +# the License. +# # ############################################################################## if(CONFIG_EXAMPLES_SMF) diff --git a/examples/smf/Make.defs b/examples/smf/Make.defs index 00be2807919..fe4423c17ff 100644 --- a/examples/smf/Make.defs +++ b/examples/smf/Make.defs @@ -1,5 +1,5 @@ ############################################################################ -# apps/examples/hello/Make.defs +# apps/examples/smf/Make.defs # # SPDX-License-Identifier: Apache-2.0 # diff --git a/examples/smf/Makefile b/examples/smf/Makefile index 2fd9309c131..992cf09ece6 100644 --- a/examples/smf/Makefile +++ b/examples/smf/Makefile @@ -1,5 +1,5 @@ ############################################################################ -# apps/examples/hsm_psicc2/Makefile +# apps/examples/smf/Makefile # # SPDX-License-Identifier: Apache-2.0 # From c5821468462aa0a8accd3558073d64603720d6fa Mon Sep 17 00:00:00 2001 From: simbit18 Date: Sat, 8 Aug 2026 17:16:34 +0200 Subject: [PATCH 2/6] apps/examples/xedge_demo: nxstyle fix Relative files path - fix Relative file path does not match actual file. Signed-off-by: simbit18 --- examples/xedge_demo/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/xedge_demo/Makefile b/examples/xedge_demo/Makefile index 720c880004b..42fa028581e 100644 --- a/examples/xedge_demo/Makefile +++ b/examples/xedge_demo/Makefile @@ -1,5 +1,5 @@ # ############################################################################## -# apps/examples/xedge_demo/CMakeLists.txt +# apps/examples/xedge_demo/Makefile # # SPDX-License-Identifier: Apache-2.0 # From b5911673a619bc7129155491d66fde820d3b3b1c Mon Sep 17 00:00:00 2001 From: simbit18 Date: Sat, 8 Aug 2026 17:21:35 +0200 Subject: [PATCH 3/6] apps/industry/nxmodbus: nxstyle fix Relative files path - fix Relative file path does not match actual file. Signed-off-by: simbit18 --- industry/nxmodbus/Make.defs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/industry/nxmodbus/Make.defs b/industry/nxmodbus/Make.defs index 539b48d64e9..3803f4a9dcf 100644 --- a/industry/nxmodbus/Make.defs +++ b/industry/nxmodbus/Make.defs @@ -1,5 +1,5 @@ ############################################################################ -# apps/modbus/nxmodbus/Make.defs +# apps/industry/nxmodbus/Make.defs # # SPDX-License-Identifier: Apache-2.0 # From 2b782025dde64b832a5486743b780e52bdac9deb Mon Sep 17 00:00:00 2001 From: simbit18 Date: Sat, 8 Aug 2026 17:56:41 +0200 Subject: [PATCH 4/6] apps/interpreters/jimtcl: nxstyle fix Missing file header - fix Missing file header Signed-off-by: simbit18 --- interpreters/jimtcl/CMakeLists.txt | 22 ++++++++++++++++++++++ interpreters/jimtcl/Make.defs | 22 ++++++++++++++++++++++ interpreters/jimtcl/Makefile | 22 ++++++++++++++++++++++ 3 files changed, 66 insertions(+) diff --git a/interpreters/jimtcl/CMakeLists.txt b/interpreters/jimtcl/CMakeLists.txt index ba3b646974a..c9df153f267 100644 --- a/interpreters/jimtcl/CMakeLists.txt +++ b/interpreters/jimtcl/CMakeLists.txt @@ -1,3 +1,25 @@ +# ############################################################################## +# apps/interpreters/jimtcl/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 +# 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 +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations under +# the License. +# +# ############################################################################## + if(CONFIG_INTERPRETERS_JIMTCL) set(JIMTCL_VERSION 0.83) set(JIMTCL_TARBALL ${JIMTCL_VERSION}.tar.gz) diff --git a/interpreters/jimtcl/Make.defs b/interpreters/jimtcl/Make.defs index eb5a44b0c7b..2634e479a57 100644 --- a/interpreters/jimtcl/Make.defs +++ b/interpreters/jimtcl/Make.defs @@ -1,3 +1,25 @@ +############################################################################ +# apps/interpreters/jimtcl/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 +# 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 +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. +# +############################################################################ + ifneq ($(CONFIG_INTERPRETERS_JIMTCL),) CONFIGURED_APPS += $(APPDIR)/interpreters/jimtcl endif \ No newline at end of file diff --git a/interpreters/jimtcl/Makefile b/interpreters/jimtcl/Makefile index f470167f23d..b4645abab13 100644 --- a/interpreters/jimtcl/Makefile +++ b/interpreters/jimtcl/Makefile @@ -1,3 +1,25 @@ +############################################################################ +# apps/interpreters/jimtcl/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 +# 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 +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. +# +############################################################################ + include $(APPDIR)/Make.defs PROGNAME = jimsh From e520f093e5af7bb8e781b0425876395efc76f32a Mon Sep 17 00:00:00 2001 From: simbit18 Date: Sat, 8 Aug 2026 18:00:25 +0200 Subject: [PATCH 5/6] apps/tee/optee_client: nxstyle fix Relative files path - fix Relative file path does not match actual file. Signed-off-by: simbit18 --- tee/optee_client/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tee/optee_client/CMakeLists.txt b/tee/optee_client/CMakeLists.txt index c711dd8378d..a1f8cde3618 100644 --- a/tee/optee_client/CMakeLists.txt +++ b/tee/optee_client/CMakeLists.txt @@ -1,5 +1,5 @@ # ############################################################################## -# apps/tee/libteec/CMakeLists.txt +# apps/tee/optee_client/CMakeLists.txt # # SPDX-License-Identifier: Apache-2.0 # From 30308a8adaab637ed682e636b1ac46d1ae002acb Mon Sep 17 00:00:00 2001 From: simbit18 Date: Sat, 8 Aug 2026 18:03:38 +0200 Subject: [PATCH 6/6] apps/system/adcscope: nxstyle fix Relative files path - fix Relative file path does not match actual file. Signed-off-by: simbit18 --- system/adcscope/Make.defs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/adcscope/Make.defs b/system/adcscope/Make.defs index 1e16190e443..3f617e6ccb4 100644 --- a/system/adcscope/Make.defs +++ b/system/adcscope/Make.defs @@ -1,5 +1,5 @@ ############################################################################ -# apps/systen/adcscope/Make.defs +# apps/system/adcscope/Make.defs # # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with