add support for car fw and enable drivers

This commit is contained in:
Alfonso Gamboa
2022-07-13 18:02:17 -07:00
parent 7e56f96e44
commit 77a4bdd8f0
7 changed files with 29 additions and 5 deletions

10
generate_checksum.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
#set release date before generation
date > SD_ROOT/wz_mini/usr/bin/app.ver
rm -f file.chk
find SD_ROOT/ -type f -exec md5sum "{}" + > file.chk
#Ignore demo.bin
find v2_install -type f ! -name "demo.bin" -exec md5sum "{}" + >> file.chk