FreeCalypso > hg > fc-selenite
annotate scripts/test-setup-tms470.sh @ 92:e42d528f3e6e
components/main_ir: ramvecs module now goes outside of libs
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Sat, 21 Jul 2018 00:22:35 +0000 |
| parents | b54e0f3759ff |
| children | 5c4db73d289a |
| 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 |
