blob: d8820fbf1928a8717f3f12a4b3ee30385133b907 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#!/bin/sh
# shellcheck shell=busybox
case "$1" in
rtl-sdr)
rtl_sdr 2>&1 | grep -q "RTL2832"
rtl_tcp -h 2>&1 | grep -q "RTL2832"
rtl_test -h 2>&1 | grep -q "RTL2832"
rtl_fm -h 2>&1 | grep -q "RTL2832"
rtl_eeprom -h 2>&1 | grep -q "RTL2832"
rtl_adsb -h 2>&1 | grep -q "ADS-B"
rtl_power -h 2>&1 | grep -q "RTL2832"
;;
librtlsdr)
# Pure shared library, checked by packaging and linking tools
exit 0
;;
*)
echo "test.sh: unknown subpackage '$1' — refusing to silently pass" >&2
echo "test.sh: update utils/rtl-sdr/test.sh to cover this subpackage" >&2
exit 1
;;
esac
|