annotate scripts/make-version.sh @ 672:3e4f212e5d49
targets/*.conf cleanup: remove unnecessary TPUDRV_blob= lines
MAIN_blob= and/or TPUDRV_blob= may be *optionally* defined in
targets/*.conf files; if either variable is defined, it means that
using the specified version of the blob library is allowed on this
target, albeit likely suboptimal; if the variable is not defined,
then using a blob is not an option and compilation from source is
required for this component.
MAIN_blob= and TPUDRV_blob= are now defaulted to empty in configure.sh,
thus there is no need to explicitly specify that using a blob is not
a valid option.
| author |
Mychaela Falconia <falcon@freecalypso.org> |
| date |
Fri, 29 May 2020 03:11:16 +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 '}'
|