annotate scripts/make-version.sh @ 597:f18b29e27be5
First attempt at MCSI voice path automatic switching
The function is implemented at the ACI level in both aci2 and aci3,
successfully avoids triggering the DSP bug on the first call,
but the shutdown of MCSI upon call completion is not working properly yet
in either version.
author |
Mychaela Falconia <falcon@freecalypso.org> |
date |
Wed, 27 Mar 2019 22:18:35 +0000 |
parents |
352f80da6813 |
children |
|
rev |
line source |
10
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1 #!/bin/sh
|
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
2
|
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
3 if [ $# != 1 ]
|
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
4 then
|
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
5 echo "usage: $0 component-name" 1>&2
|
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
6 exit 1
|
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
7 fi
|
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
8
|
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
9 echo "static char *verstring_$1 = \"$1 FreeCalypso Magnetite\";"
|
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
10 echo
|
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
11 echo "char *$1_version(void)"
|
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
12 echo '{'
|
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
13 echo " return verstring_$1;"
|
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
14 echo '}'
|