2009-10-15 Ralf Corsépius <ralf.corsepius@rtems.org>

* make/custom/gen68360_040.cfg: New (relocated from /make/custom).
	* make/custom/gen68360.cfg: New (relocated from /make/custom).
	* make/custom/pgh360.cfg: New (relocated from /make/custom).
This commit is contained in:
Ralf Corsepius
2009-10-15 09:15:00 +00:00
parent 6e823e6541
commit 7707b72e5a
4 changed files with 69 additions and 0 deletions

View File

@@ -1,3 +1,9 @@
2009-10-15 Ralf Corsépius <ralf.corsepius@rtems.org>
* make/custom/gen68360_040.cfg: New (relocated from /make/custom).
* make/custom/gen68360.cfg: New (relocated from /make/custom).
* make/custom/pgh360.cfg: New (relocated from /make/custom).
2009-09-30 Ralf Corsépius <ralf.corsepius@rtems.org>
* console/console.c: Include <rtems/termiostypes.h>.

View File

@@ -0,0 +1,29 @@
#
# Config file for a "generic 68360" BSP
#
# $Id$
#
RTEMS_CPU=m68k
ifeq ($(RTEMS_GEN68360_COMPANION_MODE),yes)
RTEMS_CPU_MODEL=m68040
else
RTEMS_CPU_MODEL=m68360
endif
include $(RTEMS_ROOT)/make/custom/default.cfg
# This is the actual bsp directory used during the build process.
RTEMS_BSP_FAMILY=gen68360
# This contains the compiler options necessary to select the CPU model
# and (hopefully) optimize for it.
ifeq ($(RTEMS_GEN68360_COMPANION_MODE),yes)
CPU_CFLAGS = -mcpu=68040
else
CPU_CFLAGS = -mcpu=cpu32
endif
# optimize flag: typically -O2
CFLAGS_OPTIMIZE_V = -O2 -g -fomit-frame-pointer

View File

@@ -0,0 +1,14 @@
#
# Configuration file for a 68040 using the 68360 in companion mode
#
# $Id$
#
#
# All gen68360 configurations share the same base file, only the cpu model
# differs.
#
RTEMS_GEN68360_COMPANION_MODE=yes
include $(RTEMS_ROOT)/make/custom/gen68360.cfg

View File

@@ -0,0 +1,20 @@
#
# Config file for a "generic 68360" BSP
#
# $Id$
#
RTEMS_CPU=m68k
RTEMS_CPU_MODEL=m68360
include $(RTEMS_ROOT)/make/custom/default.cfg
# This is the actual bsp directory used during the build process.
RTEMS_BSP_FAMILY=gen68360
# This contains the compiler options necessary to select the CPU model
# and (hopefully) optimize for it.
CPU_CFLAGS = -mcpu32
# optimize flag: typically -O2
CFLAGS_OPTIMIZE_V = -O2 -g -fomit-frame-pointer