mirror of
https://github.com/koreader/koreader
synced 2024-10-31 21:20:20 +00:00
cb2314d11b
* Run grep against /proc/modules directly instead of forking to lsmod * Revamp the CPUFreq governor choice logic I finally figured out why the scaling on the H2O was so wonky: Because it relies on an obscure i.MX hardware feature called DVFS, and it gets flipped for mysterious workaround-y reasons depending on Wi-Fi state... * Start playing with conservative, because just staying pegged at max clock is entirely stupid. And DVFS is extremely conservative, it needs somewhat sustained load to clock up... * Take care of the DVFS switcheroo in the Wi-Fi scripts
33 lines
1.4 KiB
Bash
Executable File
33 lines
1.4 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
CI_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
# shellcheck source=/dev/null
|
|
source "${CI_DIR}/common.sh"
|
|
|
|
# shellcheck disable=2016
|
|
mapfile -t shellscript_locations < <({ git grep -lE '^#!(/usr)?/bin/(env )?(bash|sh)' && git submodule --quiet foreach '[ "$path" = "base" -o "$path" = "platform/android/luajit-launcher" ] || git grep -lE "^#!(/usr)?/bin/(env )?(bash|sh)" | sed "s|^|$path/|"' && git ls-files ./*.sh; } | sort | uniq)
|
|
|
|
SHELLSCRIPT_ERROR=0
|
|
SHFMT_OPTIONS="-i 4 -ci"
|
|
|
|
for shellscript in "${shellscript_locations[@]}"; do
|
|
echo -e "${ANSI_GREEN}Running shellcheck on ${shellscript}"
|
|
shellcheck "${shellscript}" || SHELLSCRIPT_ERROR=1
|
|
echo -e "${ANSI_GREEN}Running shfmt on ${shellscript}"
|
|
# shellcheck disable=2086
|
|
if ! shfmt ${SHFMT_OPTIONS} -kp "${shellscript}" >/dev/null 2>&1; then
|
|
echo -e "${ANSI_RED}Warning: ${shellscript} contains the following problem:"
|
|
# shellcheck disable=2086
|
|
shfmt ${SHFMT_OPTIONS} -kp "${shellscript}" || SHELLSCRIPT_ERROR=1
|
|
continue
|
|
fi
|
|
# shellcheck disable=2086
|
|
if [ "$(cat "${shellscript}")" != "$(shfmt ${SHFMT_OPTIONS} "${shellscript}")" ]; then
|
|
echo -e "${ANSI_RED}Warning: ${shellscript} does not abide by coding style, diff for expected style:"
|
|
# shellcheck disable=2086
|
|
shfmt ${SHFMT_OPTIONS} -d "${shellscript}" || SHELLSCRIPT_ERROR=1
|
|
fi
|
|
done
|
|
|
|
exit "${SHELLSCRIPT_ERROR}"
|