summaryrefslogtreecommitdiffstats
path: root/make/custom/lpc2478.cfg
blob: ceb6d28edecfc49968aaa3e80add8e1be657fac0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#
#  Config file for LPC2478 (QVGA Base Board from Embedded Artists).
#
#  $Id$
#

include $(RTEMS_ROOT)/make/custom/default.cfg

RTEMS_CPU = arm
RTEMS_BSP_FAMILY = lpc24xx

CPU_CFLAGS = -mcpu=arm7tdmi -mstructure-size-boundary=8 -mapcs-frame

CFLAGS_OPTIMIZE_V = -Os -g

define bsp-post-link
	$(OBJCOPY) -O binary '$@' '$(basename $@).bin'
	gzip -f -9 '$(basename $@).bin'
	# mkimage -A arm -O rtems -T kernel -C gzip \
	#     -a a0000000 -e a0000000 -name '$(notdir $@)' \
	#     -d '$(basename $@).bin.gz' '$(basename $@).img'
	$(default-bsp-post-link)
endef