carl9170: Update based on commit 370b7919114a02149088c482c8709cafb9bf7478 dated May...
[linux-libre-firmware.git] / carl9170fw / genapi.sh
1 #!/bin/sh
2
3 cat <<EOF > include/shared/version.h
4 #ifndef __CARL9170_SHARED_VERSION_H
5 #define __CARL9170_SHARED_VERSION_H
6 #define CARL9170FW_VERSION_YEAR $((100`date +%Y`%100))
7 #define CARL9170FW_VERSION_MONTH $((100`date +%m`%100))
8 #define CARL9170FW_VERSION_DAY $((100`date +%d`%100))
9 #define CARL9170FW_VERSION_GIT "`git describe 2>/dev/null`"
10 #endif /* __CARL9170_SHARED_VERSION_H */
11 EOF