This is an automated email from the ASF dual-hosted git repository. xiaoxiang781216 pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git
commit 2946d7961b7e1e417c852a58e9628d9468cde72e Author: Marco Casaroli <[email protected]> AuthorDate: Tue Aug 4 09:42:33 2026 +0200 examples/fdpicxip: Follow the fdpic-embed.py rename. The two helper scripts this Makefile names gained a file extension when tools/fdpic came into the nuttx tree: checkpatch rejects an executable file that is not .sh, .py or .bat. Assisted-by: Claude Opus 5 (1M context) <[email protected]> Signed-off-by: Marco Casaroli <[email protected]> --- examples/fdpicxip/modules/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/fdpicxip/modules/Makefile b/examples/fdpicxip/modules/Makefile index 56dfd7ebb..3dd78a13f 100644 --- a/examples/fdpicxip/modules/Makefile +++ b/examples/fdpicxip/modules/Makefile @@ -46,10 +46,10 @@ CPU ?= cortex-m3 FDPICDIR = $(NUTTX_DIR)/tools/fdpic MODULE_MK = $(FDPICDIR)/nuttx-fdpic.mk -EMBED = $(FDPICDIR)/fdpic-embed +EMBED = $(FDPICDIR)/fdpic-embed.py # Where each generated header goes, and its path from the repository root -- -# fdpic-embed puts that on line 2, which is what nxstyle wants. +# fdpic-embed.py puts that on line 2, which is what nxstyle wants. DEMODIR = .. DEMOREL = apps/examples/fdpicxip @@ -127,7 +127,7 @@ lazymod.fdpic: lazymod.c $(BUILD) MODULE=lazymod SRCS=lazymod.c BINDNOW= # missingsym is linked with the bare .fdpic target rather than the default -# 'verify' one, because it is exactly what fdpic-verify is meant to catch. +# 'verify' one, because it is exactly what fdpic-verify.sh is meant to catch. missingsym.fdpic: missingsym.c $(BUILD) MODULE=missingsym SRCS=missingsym.c missingsym.fdpic
