blob: 5fe732e49cd2e5999a05e39eac5624e9115e3262 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
case "$1" in
sispmctl)
# Help output works without a USB device connected
sispmctl -? 2>&1 | grep -qiF "sispmctl"
;;
libsispmctl)
ls /usr/lib/libsispmctl.so.* > /dev/null
;;
esac
|