source: rtems-tools/tester/rtems/rtems-bsps.ini @ 5d957c9

5
Last change on this file since 5d957c9 was 5d957c9, checked in by Sebastian Huber <sebastian.huber@…>, on 08/06/18 at 07:50:29

tester: Add RISC-V support to BSP builder

Update #3433.

  • Property mode set to 100644
File size: 4.5 KB
Line 
1#
2# RTEMS Tools Project (http://www.rtems.org/)
3# Copyright 2016-2017 Chris Johns (chrisj@rtems.org)
4# All rights reserved.
5#
6# This file is part of the RTEMS Tools package in 'rtems-bsp-builder'.
7#
8# Permission to use, copy, modify, and/or distribute this software for any
9# purpose with or without fee is hereby granted, provided that the above
10# copyright notice and this permission notice appear in all copies.
11#
12# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
13# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
14# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
15# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
16# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
17# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
18# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19
20[profiles]
21profiles = tier-1, tier-2, tier-3, tier-4, everything
22
23#
24# Define how each profile is to be treated. Note, hardware vs simulator testing
25# is handled in the configuration, there is not specific test to determine
26# this.
27#
28[tier-1-profile]
29active = Yes
30build = Yes
31tests = Yes
32
33[tier-2-profile]
34active = Yes
35build = Yes
36tests = Yes
37
38[tier-3-profile]
39active = Yes
40build = Yes
41tests = No
42
43[tier-4-profile]
44active = No
45build = No
46tests = No
47
48[everything-profile]
49active = Yes
50build = Yes
51tests = No
52
53#
54# Tiers.
55#
56[tiers]
57include = rtems-bsps-tiers.ini
58
59#
60# All the architectures and BSPs.
61#
62[everything]
63archs = arm,
64        bfin,
65        epiphany,
66        i386,
67        lm32,
68        m32c,
69        m68k,
70        mips,
71        moxie,
72        or1k,
73        powerpc,
74        riscv,
75        sh,
76        sparc,
77        sparc64,
78        v850
79bsps_arm = ${arm:bsps}
80bsps_bfin = ${bfin:bsps}
81bsps_epiphany = ${epiphany:bsps}
82bsps_i386 = ${i386:bsps}
83bsps_lm32 = ${lm32:bsps}
84bsps_m32c = ${m32c:bsps}
85bsps_m68k = ${m68k:bsps}
86bsps_mips = ${mips:bsps}
87bsps_moxie = ${moxie:bsps}
88bsps_or1k = ${or1k:bsps}
89bsps_powerpc = ${powerpc:bsps}
90bsps_riscv = ${riscv:bsps}
91bsps_sh = ${sh:bsps}
92bsps_sparc = ${sparc:bsps}
93bsps_sparc64 = ${sparc64:bsps}
94bsps_v850 = ${v850:bsps}
95
96#
97# Architectures
98#
99[architectures]
100include = rtems-bsps-arm.ini,
101          rtems-bsps-bfin.ini,
102          rtems-bsps-epiphany.ini,
103          rtems-bsps-i386.ini,
104          rtems-bsps-lm32.ini,
105          rtems-bsps-m32c.ini,
106          rtems-bsps-m68k.ini,
107          rtems-bsps-mips.ini,
108          rtems-bsps-moxie.ini,
109          rtems-bsps-or1k.ini,
110          rtems-bsps-powerpc.ini,
111          rtems-bsps-riscv.ini,
112          rtems-bsps-sh.ini,
113          rtems-bsps-sparc.ini,
114          rtems-bsps-sparc64.ini,
115          rtems-bsps-v850.ini
116
117#
118# The Build Options define how each combination is to be build.
119#
120[builds]
121#
122# The default variation.
123#
124default = all
125#
126# A default build with tests
127#
128tests = config:base, config:tests
129#
130# A default build without tests
131#
132standard = config:base
133no-tests = config:base
134#
135# The all build.
136#
137all = debug, profiling, smp, smp-debug,
138      posix, no-posix, posix-debug, posix-profiling,
139      network, no-network, network-debug,
140      smp-network, smp-network-debug
141#
142# The options for each varations.
143#
144debug             = config:base, config:debug
145profiling         = config:base, config:profiling
146smp               = config:base, config:smp
147smp-debug         = config:base, config:smp, config:debug
148posix             = config:base, config:posix
149no-posix          = config:base, config:no-posix
150posix-debug       = config:base, config:posix, config:debug
151posix-profiling   = config:base, config:posix, config:profiling
152network           = config:base, config:network
153no-network        = config:base, config:no-network
154network-debug     = config:base, config:network, config:debug
155smp-network       = config:base, config:smp, config:network
156smp-network-debug = config:base, config:smp, config:network, config:debug
157
158#
159# The config section holds the configuration options used in the builds.
160#
161[config]
162#
163# Base set of configure options every build needs.
164#
165base = --target=@ARCH@-rtems@RTEMS_VERSION@
166       --enable-rtemsbsp=@BSP@
167       --prefix=@PREFIX@
168#
169# Tests.
170#
171tests = --enable-tests
172#
173# The options for each varations.
174#
175debug             = --enable-rtems-debug
176no-debug          = --disable-rtems-debug
177profiling         = --enable-profiling
178no-profiling      = --disable-profiling
179smp               = --enable-smp
180no-smp            = --disable-smp
181posix             = --enable-posix
182no-posix          = --disable-posix
183network           = --enable-networking
184no-network        = --disable-networking
Note: See TracBrowser for help on using the repository browser.