OSDN Git Service

* public snapshot of sid simulator
[pf3gnuchains/pf3gnuchains3x.git] / sid / bsp / pregen / pregen-configs.in
1 #! /bin/sh 
2 #
3 # Generate some sid configuration files ahead of time.
4 #
5 # Calling convention
6 # - cwd is in build tree, with usable ../configrun-sid
7
8 # snarf autoconf variables 
9 srcdir="@srcdir@"
10
11 if [ ! -x ../configrun-sid ]; then
12     echo "Call `basename $0` from BUILD/sid/bsp/pregen!"
13     exit 1
14 fi
15
16
17 crs () {
18     ../configrun-sid $@
19 }
20
21 mvic() {
22     mv -f $1 $srcdir/$2
23 }
24
25
26
27 crs --cpu=arm --no-run --gdb=5000 -EL
28 mvic sid.conf arm-gloss.conf
29
30 crs --cpu=arm --no-run --gdb=5000 -EL --tksm
31 mvic sid.conf arm-gloss-tksm.conf
32
33 crs --cpu=arm --no-run --gdb=5000 -EB
34 mvic sid.conf arm-glossBE.conf
35
36 crs --cpu=arm --no-run --gdb=5000 --board=pid7t-uart1:gdb -EL
37 mvic sid.conf arm-pid.conf
38
39 crs --cpu=arm --no-run --gdb=5000 --board=pid7t-uart1:gdb -EL --tksm
40 mvic sid.conf arm-pid-tksm.conf
41
42 crs --cpu=arm --no-run --gdb=5000 --board=pid7t-uart1:gdb -EB
43 mvic sid.conf arm-pidBE.conf
44
45 crs --cpu=arm --no-run --board=pid7t-cygmon-uart1:5000 -EL
46 mvic sid.conf arm-pid-cygmon.conf
47
48 crs --cpu=arm --no-run --board=pid7t-cygmon-uart1:5000 -EL --tksm
49 mvic sid.conf arm-pid-cygmon-tksm.conf
50
51 crs --cpu=arm --no-run --gdb=5000 --board=cma110:cma222-uart1:gdb -EL
52 mvic sid.conf arm-cma.conf
53
54 crs --cpu=arm --no-run --gdb=5000 --board=cma110:cma222-uart1:gdb -EL --tksm
55 mvic sid.conf arm-cma-tksm.conf
56
57