source: rtems/c/src/lib/libbsp/m68k/mvme162/make/custom/mvme162.cfg @ b3decdb

4.115
Last change on this file since b3decdb was b3decdb, checked in by Joel Sherrill <joel.sherrill@…>, on 02/02/12 at 20:08:08

PR 1962/bsps - MVME162 Console Corrections and Improvements

  • console/console.c: char_ready() was never returning true so console never processed input data
  • console/console.c: added printk() support to default device
  • include/bsp.h: Added #define for MOT_162BUG_VEC_ADDRESS
  • startup/bspclean.c: Modified to use MOT_162BUG_VEC_ADDRESS
  • startup/bspstart.c: Modified to use MOT_162BUG_VEC_ADDRESS
  • make/custom/mvme162.cfg: Modified to use "RTEMS_CPU_MODEL=68lc040" and "CPU_CFLAGS = -mcpu=68040 -msoft-float" so BSP will always work with all board variations.
  • README: Added notes on user required configuration changes and information about board models and variants
  • README.models: New file that contains a detailed list of MVME162 models and variants.

Signed-off-by: Vic Hoover <victor.hoover.ctr@…>

  • Property mode set to 100644
File size: 568 bytes
Line 
1#
2#  Config file for the mvme162 BSP
3#
4#  $Id$
5#
6
7include $(RTEMS_ROOT)/make/custom/default.cfg
8
9RTEMS_CPU=m68k
10
11RTEMS_MVME162_MODEL=mvme162
12RTEMS_CPU_MODEL=m68lc040
13
14#  This contains the compiler options necessary to select the CPU model
15#  and (hopefully) optimize for it.
16#
17
18CPU_CFLAGS = -mcpu=68040 -msoft-float
19
20# optimize flag: typically -O2
21CFLAGS_OPTIMIZE_V = -O2 -g -fomit-frame-pointer
22
23define bsp-post-link
24        $(default-bsp-post-link)
25        $(OBJCOPY) -O binary $(basename $@).exe $(basename $@)$(DOWNEXT)
26endef
27
28# BSP-specific tools
29SLOAD=$(PROJECT_TOOLS)/sload
Note: See TracBrowser for help on using the repository browser.