massive takeover of Firmware-parts from ChainLube

This commit is contained in:
2022-04-14 22:48:11 +02:00
parent ea5a266ee2
commit 9aa266792d
15 changed files with 1075 additions and 381 deletions

8
git_rev_macro.py Normal file
View File

@@ -0,0 +1,8 @@
import subprocess
revision = (
subprocess.check_output(["git", "rev-parse", "--short=10", "HEAD"])
.strip()
.decode("utf-8")
)
print("-DGIT_REV='\"%s\"'" % revision)