Merge branch 'mlimonci/shellcheck' into 'main'
Enable shellcheck for pre-commit See merge request kernel-firmware/linux-firmware!5main
commit
6c09731441
|
@ -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:
|
||||
|
|
|
@ -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."
|
||||
;;
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue