From 3a8bd97b3b98cbe8e7e0c727ade46eb2eee80068 Mon Sep 17 00:00:00 2001 From: Antoine Juckler Date: Thu, 3 Sep 2026 18:06:40 +0900 Subject: [PATCH] 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 --- 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))