bsps: Move make/custom/* files to bsps

Adjust various build files.  Remove automatic generation of the
c/src/lib/libbsp/*/acinclude.m4 files from bootstrap script.

This patch is a part of the BSP source reorganization.

Update #3285.
This commit is contained in:
Sebastian Huber
2018-04-21 10:22:08 +02:00
parent 37dc0471b2
commit adb85dd473
276 changed files with 37 additions and 63 deletions

View File

@@ -0,0 +1,12 @@
#
# gensh1 RTEMS Test Database.
#
# Format is one line per test that is _NOT_ built.
#
include: testdata/disable-iconv-tests.tcfg
exclude: fileio
exclude: fsdosfsname01
exclude: iostream
exclude: linpack
exclude: utf8proc01

View File

@@ -0,0 +1,22 @@
#
# gensh1.cfg
#
# default configuration for Hitachi sh1 processors
#
# Author: Ralf Corsepius (corsepiu@faw.uni-ulm.de)
#
include $(RTEMS_ROOT)/make/custom/default.cfg
RTEMS_CPU=sh
# This contains the compiler options necessary to select the CPU model
# and (hopefully) optimize for it.
#
CPU_CFLAGS = -m1
# optimize flag: typically -O2
CFLAGS_OPTIMIZE_V = -O2 -g
CFLAGS_OPTIMIZE_V += -ffunction-sections -fdata-sections
LDFLAGS = -Wl,--gc-sections

View File

@@ -0,0 +1,12 @@
#
# gensh2 RTEMS Test Database.
#
# Format is one line per test that is _NOT_ built.
#
include: testdata/disable-iconv-tests.tcfg
exclude: fileio
exclude: fsdosfsname01
exclude: iostream
exclude: linpack
exclude: utf8proc01

View File

@@ -0,0 +1,21 @@
#
# gensh2.cfg
#
# default configuration for Hitachi sh1 processors
#
# Authors: Ralf Corsepius (corsepiu@faw.uni-ulm.de)
#
include $(RTEMS_ROOT)/make/custom/default.cfg
RTEMS_CPU=sh
# This contains the compiler options necessary to select the CPU model
# and (hopefully) optimize for it.
CPU_CFLAGS = -m2
# optimize flag: typically -O2
CFLAGS_OPTIMIZE_V = -O2 -g
CFLAGS_OPTIMIZE_V += -ffunction-sections -fdata-sections
LDFLAGS = -Wl,--gc-sections

View File

@@ -0,0 +1,28 @@
#
# gensh4.cfg
#
# default configuration for Hitachi SH7750 board
#
# Copyright (C) 2001 OKTET Ltd., St.-Petersburg, Russia
# Author: Victor V. Vengerov <vvv@oktet.ru>
include $(RTEMS_ROOT)/make/custom/default.cfg
RTEMS_CPU=sh
# This contains the compiler options necessary to select the CPU model
# and (hopefully) optimize for it.
#
# Seems to be good without initialisation FPSCR.
# Also works with SH4_FPSCR_DN bit set.
#CPU_CFLAGS = -m4-single-only -mfmovd -ml
#CPU_CFLAGS = -m4-single -ml
#
# It works with SH4_FPSCR_PR bit set
CPU_CFLAGS = -m4 -ml
# optimize flag: typically -O2
CFLAGS_OPTIMIZE_V = -O2 -g
CFLAGS_OPTIMIZE_V += -ffunction-sections -fdata-sections
LDFLAGS = -Wl,--gc-sections

View File

@@ -0,0 +1,15 @@
#
# simsh1 RTEMS Test Database.
#
# Format is one line per test that is _NOT_ built.
#
include: testdata/require-tick-isr.tcfg
include: testdata/disable-intrcritical-tests.tcfg
include: testdata/disable-iconv-tests.tcfg
exclude: fileio
exclude: fsdosfsname01
exclude: iostream
exclude: linpack
exclude: utf8proc01

View File

@@ -0,0 +1,18 @@
#
# simsh1.cfg
#
# default configuration for gdb-simulation of Hitachi sh1 processors
include $(RTEMS_ROOT)/make/custom/default.cfg
RTEMS_CPU=sh
# This contains the compiler options necessary to select the CPU model
# and (hopefully) optimize for it.
CPU_CFLAGS = -m1
# optimize flag: typically -O2
CFLAGS_OPTIMIZE_V = -O2 -g
CFLAGS_OPTIMIZE_V += -ffunction-sections -fdata-sections
LDFLAGS = -Wl,--gc-sections

View File

@@ -0,0 +1,15 @@
#
# simsh2 RTEMS Test Database.
#
# Format is one line per test that is _NOT_ built.
#
include: testdata/require-tick-isr.tcfg
include: testdata/disable-intrcritical-tests.tcfg
include: testdata/disable-iconv-tests.tcfg
exclude: fileio
exclude: fsdosfsname01
exclude: iostream
exclude: linpack
exclude: utf8proc01

View File

@@ -0,0 +1,18 @@
#
# simsh2.cfg
#
# default configuration for gdb-simulation of Hitachi sh2 processors
include $(RTEMS_ROOT)/make/custom/default.cfg
RTEMS_CPU=sh
# This contains the compiler options necessary to select the CPU model
# and (hopefully) optimize for it.
CPU_CFLAGS = -m2
# optimize flag: typically -O2
CFLAGS_OPTIMIZE_V = -O2 -g
CFLAGS_OPTIMIZE_V += -ffunction-sections -fdata-sections
LDFLAGS = -Wl,--gc-sections

View File

@@ -0,0 +1,14 @@
#
# The GDB SH Simulator does not have a tick interrupt
# and the simsh2e configuration has limited memory.
#
include: testdata/require-tick-isr.tcfg
include: testdata/disable-intrcritical-tests.tcfg
include: testdata/disable-iconv-tests.tcfg
exclude: fileio
exclude: fsdosfsname01
exclude: iostream
exclude: linpack
exclude: utf8proc01

View File

@@ -0,0 +1,17 @@
#
# Config file for the sh simulator in gdb as SH2E
#
include $(RTEMS_ROOT)/make/custom/default.cfg
RTEMS_CPU=sh
# This contains the compiler options necessary to select the CPU model
# and (hopefully) optimize for it.
CPU_CFLAGS = -m2e -ml
# optimize flag: typically -O2
CFLAGS_OPTIMIZE_V = -O2 -g
CFLAGS_OPTIMIZE_V += -ffunction-sections -fdata-sections
LDFLAGS = -Wl,--gc-sections

View File

@@ -0,0 +1,14 @@
#
# The GDB SH Simulator does not have a tick interrupt
# and the simsh4 configuration has limited memory.
#
include: testdata/require-tick-isr.tcfg
include: testdata/disable-intrcritical-tests.tcfg
include: testdata/disable-iconv-tests.tcfg
exclude: fileio
exclude: fsdosfsname01
exclude: iostream
exclude: linpack
exclude: utf8proc01

View File

@@ -0,0 +1,17 @@
#
# Config file for the sh simulator in gdb
#
include $(RTEMS_ROOT)/make/custom/default.cfg
RTEMS_CPU=sh
# This contains the compiler options necessary to select the CPU model
# and (hopefully) optimize for it.
CPU_CFLAGS = -m4 -ml
# optimize flag: typically -O2
CFLAGS_OPTIMIZE_V = -O2 -g
CFLAGS_OPTIMIZE_V += -ffunction-sections -fdata-sections
LDFLAGS = -Wl,--gc-sections