Fix carl9170fw shell scripts for shellcheck errors

Signed-off-by: Mario Limonciello <mario.limonciello@amd.com>
This commit is contained in:
Mario Limonciello 2023-08-30 23:03:33 -05:00
parent 5ebb5914a3
commit c79933a830
2 changed files with 6 additions and 5 deletions

View File

@ -23,6 +23,7 @@ case "$1" in
exit 1 exit 1
fi fi
# shellcheck source=/dev/null
. ./.config . ./.config
make make
@ -34,7 +35,7 @@ case "$1" in
fi fi
install -m 644 carlfw/carl9170.fw \ install -m 644 carlfw/carl9170.fw \
../carl9170-$CONFIG_CARL9170FW_RELEASE_VERSION.fw ../carl9170-"$CONFIG_CARL9170FW_RELEASE_VERSION".fw
echo "done." echo "done."
;; ;;

View File

@ -3,9 +3,9 @@
cat <<EOF > include/shared/version.h cat <<EOF > include/shared/version.h
#ifndef __CARL9170_SHARED_VERSION_H #ifndef __CARL9170_SHARED_VERSION_H
#define __CARL9170_SHARED_VERSION_H #define __CARL9170_SHARED_VERSION_H
#define CARL9170FW_VERSION_YEAR $((100`date +%Y`%100)) #define CARL9170FW_VERSION_YEAR $((100$(date +%Y)%100))
#define CARL9170FW_VERSION_MONTH $((100`date +%m`%100)) #define CARL9170FW_VERSION_MONTH $((100$(date +%m)%100))
#define CARL9170FW_VERSION_DAY $((100`date +%d`%100)) #define CARL9170FW_VERSION_DAY $((100$(date +%d)%100))
#define CARL9170FW_VERSION_GIT "`git describe 2>/dev/null`" #define CARL9170FW_VERSION_GIT $(git describe 2>/dev/null)
#endif /* __CARL9170_SHARED_VERSION_H */ #endif /* __CARL9170_SHARED_VERSION_H */
EOF EOF