29 lines
706 B
Plaintext
29 lines
706 B
Plaintext
#
|
|
# CONFIG.Common.RTEMS-mvme2100
|
|
# Author: W. Eric Norum <wenorum@lbl.gov>
|
|
#
|
|
# All RTEMS targets use the same Makefile fragment
|
|
#
|
|
EXE = .elf
|
|
RTEMS_BSP = mvme2100
|
|
RTEMS_TARGET_CPU = powerpc
|
|
GNU_TARGET = powerpc-rtems
|
|
ARCH_DEP_CFLAGS += -DMY_DO_BOOTP=NULL
|
|
ARCH_DEP_CFLAGS += -DHAVE_PPCBUG
|
|
|
|
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 $@ \
|
|
$(PROJECT_RELEASE)/lib/bootloader.o \
|
|
--just-symbols=$< \
|
|
-b binary rtems.gz \
|
|
--no-warn-mismatch \
|
|
-T $(PROJECT_RELEASE)/lib/ppcboot.lds \
|
|
-Map $<.map
|
|
rm -f rtems.gz
|
|
endef
|
|
|
|
include $(CONFIG)/os/CONFIG.Common.RTEMS
|