annotate scripts/test-setup-tms470.sh @ 88:b54e0f3759ff

scripts/test-setup-tms470.sh: updated
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 20 Jul 2018 20:53:45 +0000
parents scripts/test-setup.sh@c8a4561ef581
children 5c4db73d289a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
30
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
1 #!/bin/sh
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
2
88
b54e0f3759ff scripts/test-setup-tms470.sh: updated
Mychaela Falconia <falcon@freecalypso.org>
parents: 30
diff changeset
3 BUILD_DIR=build-test
30
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
4 TARGET=fcdev3b
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
5 CHIPSET=10
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
6 DSP=36
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
7 RF=12
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
8 L1_DYN_DSP_DWNLD=1
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
9 GPRS=1
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
10 SRVC=1
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
11
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
12 export BUILD_DIR TARGET CHIPSET DSP RF L1_DYN_DSP_DWNLD GPRS SRVC
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
13
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
14 set -e
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
15
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
16 mkdir -p $BUILD_DIR
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
17 scripts/config-headers.sh
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
18 for i in `ls components`
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
19 do
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
20 echo $i
88
b54e0f3759ff scripts/test-setup-tms470.sh: updated
Mychaela Falconia <falcon@freecalypso.org>
parents: 30
diff changeset
21 if [ $i != libsys_fl -a $i != libsys_ir -a $i != main_ir ]
b54e0f3759ff scripts/test-setup-tms470.sh: updated
Mychaela Falconia <falcon@freecalypso.org>
parents: 30
diff changeset
22 then
b54e0f3759ff scripts/test-setup-tms470.sh: updated
Mychaela Falconia <falcon@freecalypso.org>
parents: 30
diff changeset
23 scripts/mk-component.sh $i
b54e0f3759ff scripts/test-setup-tms470.sh: updated
Mychaela Falconia <falcon@freecalypso.org>
parents: 30
diff changeset
24 fi
30
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
25 done