Merge branch 'mlimonci/shellcheck' into 'main'

Enable shellcheck for pre-commit

See merge request kernel-firmware/linux-firmware!5
main
Josh Boyer 2023-08-31 13:44:32 +00:00
commit 6c09731441
No known key found for this signature in database
3 changed files with 10 additions and 5 deletions

View File

@ -8,6 +8,10 @@ repos:
- id: check-yaml
- id: check-symlinks
- id: destroyed-symlinks
- repo: https://github.com/shellcheck-py/shellcheck-py
rev: v0.9.0.5
hooks:
- id: shellcheck
- repo: https://github.com/ambv/black
rev: 22.6.0
hooks:

View File

@ -23,6 +23,7 @@ case "$1" in
exit 1
fi

# shellcheck source=/dev/null
. ./.config
make

@ -34,7 +35,7 @@ case "$1" in
fi

install -m 644 carlfw/carl9170.fw \
../carl9170-$CONFIG_CARL9170FW_RELEASE_VERSION.fw
../carl9170-"$CONFIG_CARL9170FW_RELEASE_VERSION".fw
echo "done."
;;


View File

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