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.git
The following commit(s) were added to refs/heads/master by this push:
new 3a8bd97b3b9 tools/Unix.mk: add nuttx.asm to manifest
3a8bd97b3b9 is described below
commit 3a8bd97b3b98cbe8e7e0c727ade46eb2eee80068
Author: Antoine Juckler <[email protected]>
AuthorDate: Thu Sep 3 18:06:40 2026 +0900
tools/Unix.mk: add nuttx.asm to manifest
Fix bug where "nuttx.bin" was written to nuttx.asm instead of appending
nuttx.asm to nuttx.manifest
Signed-off-by: Antoine Juckler <[email protected]>
---
tools/Unix.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/Unix.mk b/tools/Unix.mk
index 06cef9522c4..9169fb16a71 100644
--- a/tools/Unix.mk
+++ b/tools/Unix.mk
@@ -602,7 +602,7 @@ endif
ifeq ($(CONFIG_RAW_DISASSEMBLY),y)
@echo "CP: nuttx.asm"
$(Q) $(OBJDUMP) -d $(BIN) > nuttx.asm
- $(Q) echo nuttx.bin >> nuttx.asm
+ $(Q) echo nuttx.asm >> nuttx.manifest
endif
$(call POSTBUILD, $(TOPDIR))