source: rtems/make/custom/score603e.cfg @ 641982a

4.104.115
Last change on this file since 641982a was 349475b, checked in by Joel Sherrill <joel.sherrill@…>, on 09/19/08 at 19:27:36

2008-09-19 Joel Sherrill <joel.sherrill@…>

  • custom/ep1a.cfg, custom/mtx603e.cfg, custom/mvme2100.cfg, custom/psim.cfg, custom/score603e.cfg: Eliminate vestiges of mpc603e define.
  • Property mode set to 100644
File size: 836 bytes
Line 
1#
2#  Config file for a PowerPC 603e based Vista VMEbus Single Board Computer.
3#  This BSP should work with the following models:
4#
5#     + Vista SCORE 603e
6#
7#  $Id$
8#
9
10include $(RTEMS_ROOT)/make/custom/default.cfg
11
12RTEMS_CPU=powerpc
13RTEMS_CPU_MODEL=mpc6xx
14
15# This is the actual bsp directory used during the build process.
16
17RTEMS_BSP_FAMILY=score603e
18
19
20#  This contains the compiler options necessary to select the CPU model
21#  and (hopefully) optimize for it.
22#
23CPU_CFLAGS = -mcpu=603e -Dppc603e -mmultiple -mstring -mstrict-align
24
25# optimize flag: typically -O2
26CFLAGS_OPTIMIZE_V = -O2 -g -fno-keep-inline-functions
27
28define bsp-post-link
29        $(default-bsp-post-link)
30        $(OBJCOPY) -O srec $(basename $@).exe $(basename $@).s1
31        sed -e 's/.$$//' $(basename $@).s1 | \
32          $(PACKHEX) >$(basename $@)$(DOWNEXT)
33        rm -f $(basename $@).s1
34endef
Note: See TracBrowser for help on using the repository browser.