From 66537d01bd9f2f7772e6e4f64918591b6694de26 Mon Sep 17 00:00:00 2001 From: Matt-E7R5 Date: Thu, 16 Dec 2021 17:13:56 -1000 Subject: [PATCH] Patch for RTEMS-mvme2700 --- configure/os/CONFIG.Common.RTEMS-mvme2700 | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/configure/os/CONFIG.Common.RTEMS-mvme2700 b/configure/os/CONFIG.Common.RTEMS-mvme2700 index 0ee8ac862..82715277e 100644 --- a/configure/os/CONFIG.Common.RTEMS-mvme2700 +++ b/configure/os/CONFIG.Common.RTEMS-mvme2700 @@ -11,14 +11,15 @@ MUNCH_SUFFIX = .boot define MUNCH_CMD $(RTEMS_TOOLS)/bin/$(OBJCOPY_FOR_TARGET) -O binary -R .comment -S $< rtems gzip -f9 rtems - $(RTEMS_TOOLS)/bin/$(LD_FOR_TARGET) -o $@ \ + $(RTEMS_TOOLS)/bin/$(LD_FOR_TARGET) -o $@.elf \ $(PROJECT_RELEASE)/lib/bootloader.o \ --just-symbols=$< \ -b binary rtems.gz \ - --no-warn-mismatch \ + --no-warn-mismatch \ -T $(PROJECT_RELEASE)/lib/ppcboot.lds \ -Map $<.map - rm -f rtems.gz + $(RTEMS_TOOLS)/bin/$(OBJCOPY_FOR_TARGET) -O binary $@.elf $@ + rm -f rtems.gz $@.elf endef include $(CONFIG)/os/CONFIG.Common.RTEMS