tools/Unix.mk: add nuttx.asm to manifest
Some checks are pending
MemBrowse Memory Report / changes-filter (push) Waiting to run
MemBrowse Memory Report / load-targets (push) Waiting to run
MemBrowse Memory Report / identical (push) Blocked by required conditions
MemBrowse Memory Report / analyze (push) Blocked by required conditions

Fix bug where "nuttx.bin" was written to nuttx.asm instead of appending
nuttx.asm to nuttx.manifest

Signed-off-by: Antoine Juckler <ajuckler@users.noreply.github.com>
This commit is contained in:
Antoine Juckler 2026-09-03 18:06:40 +09:00 committed by Xiang Xiao
parent c351769725
commit 3a8bd97b3b

View file

@ -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))