FreeCalypso > hg > fc-selenite
annotate scripts/test-setup-tms470.sh @ 106:5ba0bee90efa
build system: new configuration naming mechanism
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 23 Jul 2018 16:38:50 +0000 |
parents | 5c4db73d289a |
children |
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 |
105
5c4db73d289a
build system support for memory supervision
Mychaela Falconia <falcon@freecalypso.org>
parents:
88
diff
changeset
|
11 MEMSUPER=0 |
30
c8a4561ef581
scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
12 |
105
5c4db73d289a
build system support for memory supervision
Mychaela Falconia <falcon@freecalypso.org>
parents:
88
diff
changeset
|
13 export BUILD_DIR TARGET CHIPSET DSP RF L1_DYN_DSP_DWNLD GPRS SRVC MEMSUPER |
30
c8a4561ef581
scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
14 |
c8a4561ef581
scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
15 set -e |
c8a4561ef581
scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
16 |
c8a4561ef581
scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
17 mkdir -p $BUILD_DIR |
c8a4561ef581
scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
18 scripts/config-headers.sh |
c8a4561ef581
scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
19 for i in `ls components` |
c8a4561ef581
scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
20 do |
c8a4561ef581
scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
21 echo $i |
88
b54e0f3759ff
scripts/test-setup-tms470.sh: updated
Mychaela Falconia <falcon@freecalypso.org>
parents:
30
diff
changeset
|
22 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
|
23 then |
b54e0f3759ff
scripts/test-setup-tms470.sh: updated
Mychaela Falconia <falcon@freecalypso.org>
parents:
30
diff
changeset
|
24 scripts/mk-component.sh $i |
b54e0f3759ff
scripts/test-setup-tms470.sh: updated
Mychaela Falconia <falcon@freecalypso.org>
parents:
30
diff
changeset
|
25 fi |
30
c8a4561ef581
scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
26 done |