FreeCalypso > hg > fc-selenite
annotate scripts/test-setup-tms470.sh @ 212:7f3266e247d6
audio mode load: gracefully handle mode files of wrong AEC version
Irrespective of which AEC policy we adopt for FC Selenite (keep
L1_NEW_AEC disabled like in Magnetite or enable it like in Tourmaline),
we MUST gracefully handle the case of wrong AEC version on audio mode
load: disable AEC instead of loading garbage. Therefore, we apply
the same change to src/cs/services/audio/audio_mode_load.c as we made
in Tourmaline and Magnetite last year.
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Mon, 31 Oct 2022 00:31:30 +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 |
