26 lines
576 B
Plaintext
26 lines
576 B
Plaintext
#
|
|
# Author: W. Eric Norum
|
|
# Canadian Light Source
|
|
# eric@cls.usask.ca
|
|
#
|
|
# All RTEMS targets use the same Makefile fragment
|
|
#
|
|
RTEMS_BSP = pc686
|
|
RTEMS_TARGET_CPU = i386
|
|
GNU_TARGET = i386-rtems
|
|
|
|
MUNCH_SUFFIX = .boot
|
|
define MUNCH_CMD
|
|
$(RTEMS_TOOLS)/bin/$(OBJCOPY_FOR_TARGET) -O binary -R .comment -S $< $@
|
|
endef
|
|
|
|
OP_SYS_LDLIBS += -Wl,--gc-sections
|
|
ARCH_DEP_LDFLAGS = -L$(RTEMS_BASE)/$(GNU_TARGET)$(RTEMS_VERSION)/pc686/lib/
|
|
|
|
include $(CONFIG)/os/CONFIG.Common.RTEMS
|
|
|
|
#
|
|
# Put text segment where it will work with etherboot
|
|
#
|
|
OP_SYS_LDFLAGS += -Wl,-Ttext,0x100000
|