]> git.proxmox.com Git - mirror_linux-firmware.git/blob - carl9170fw/genapi.sh
Merge branch 'mlimonci/encoding' into 'main'
[mirror_linux-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