* Added macros for configuring MBUF and CLUSTER space allocation * More MBUF and CLUSTER space on mvme3100, mvme5500 and beatnik * MVME5500: link with bspExt, use .elf extension like other BSPs
26 lines
675 B
Plaintext
26 lines
675 B
Plaintext
#
|
|
# CONFIG.Common.RTEMS-mvme5500
|
|
# $Revision-Id$
|
|
# Author: W. Eric Norum <wenorum@lbl.gov>
|
|
#
|
|
# All RTEMS targets use the same Makefile fragment
|
|
#
|
|
EXE = .elf
|
|
RTEMS_TARGET_CPU = powerpc
|
|
GNU_TARGET = powerpc-rtems
|
|
ARCH_DEP_CFLAGS += -DMY_DO_BOOTP=NULL
|
|
ARCH_DEP_CFLAGS += -DHAVE_MOTLOAD
|
|
ARCH_DEP_CFLAGS += -DRTEMS_NETWORK_CONFIG_MBUF_SPACE=2048
|
|
ARCH_DEP_CFLAGS += -DRTEMS_NETWORK_CONFIG_CLUSTER_SPACE=5120
|
|
ARCH_DEP_CFLAGS += -DBSP_NVRAM_BASE_ADDR=0xf1110000
|
|
|
|
OP_SYS_LDLIBS += -lbspExt
|
|
|
|
MUNCH_SUFFIX = .boot
|
|
MUNCHNAME = $(PRODNAME:%$(EXE)=%$(MUNCH_SUFFIX))
|
|
define MUNCH_CMD
|
|
$(RTEMS_TOOLS)/bin/$(OBJCOPY_FOR_TARGET) -O binary $< $@
|
|
endef
|
|
|
|
include $(CONFIG)/os/CONFIG.Common.RTEMS
|