annotate scripts/test-setup.sh @ 70:1fb5f04c57d4

src/g23m-gprs/sm/sm_mm_output_handler.c: ## fix
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 20 Jul 2018 01:09:12 +0000
parents c8a4561ef581
children
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
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
3 BUILD_DIR=build-sb
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
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
21 scripts/mk-component.sh $i
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
22 done