mirror of https://github.com/thesofproject/sof.git
23 lines
469 B
Bash
Executable File
23 lines
469 B
Bash
Executable File
|
|
# version for configure
|
|
# echo -n `git describe --abbrev=4`
|
|
|
|
# version for make dist
|
|
git describe --abbrev=4 > .version
|
|
git describe --abbrev=4 > .tarball-version
|
|
|
|
# git commit for IPC
|
|
echo "#define REEF_TAG \"`git describe --abbrev=4 | cut -d- -f3`\"" > src/include/version.h
|
|
|
|
# build counter
|
|
if [ -e .build ]; then
|
|
num=$((`cat .build` + 1))
|
|
else
|
|
num=0
|
|
fi
|
|
|
|
# save and insert build counter
|
|
echo $num > .build
|
|
echo "#define REEF_BUILD $num" >> src/include/version.h
|
|
|