mirror of
https://github.com/openwrt/packages.git
synced 2026-05-31 06:51:51 +08:00
12cb2ccffd
Skip version checks as none of the executables seem to report their versions. Signed-off-by: George Sapkin <george@sapk.in>
30 lines
347 B
Bash
Executable File
30 lines
347 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# shellcheck shell=busybox
|
|
|
|
case "$PKG_NAME" in
|
|
lm-sensors)
|
|
sensors --version | grep -F "$PKG_VERSION"
|
|
;;
|
|
|
|
lm-sensors-detect)
|
|
# Require user input
|
|
exit 0
|
|
;;
|
|
|
|
libsensors*)
|
|
# Shared libraries
|
|
exit 0
|
|
;;
|
|
|
|
isadump|isaset)
|
|
# Do not provide version information
|
|
exit 0
|
|
;;
|
|
|
|
*)
|
|
echo "Untested package: $PKG_NAME" >&2
|
|
exit 1
|
|
;;
|
|
esac
|