This package is currently in oldpackages. Add here to keep support for gpsd. From oldpackages, this was bumped from 3.10 -> 3.15 and includes an upstream patch to allow building with musl. Signed-off-by: Pushpal Sidhu <psidhu@gateworks.com>
16 lines
511 B
Text
16 lines
511 B
Text
case "$ACTION" in
|
|
add)
|
|
# start process
|
|
# only pl2303 devices are handled
|
|
if [ "$PRODUCT" = "67b/2303/300" ] && [ "$TYPE" = "0/0/0" ] && [ "$INTERFACE" = "255/0/0" ]; then
|
|
sleep 3 && /etc/init.d/gpsd start
|
|
fi
|
|
;;
|
|
remove)
|
|
# stop process
|
|
# only pl2303 devices are handled
|
|
if [ "$PRODUCT" = "67b/2303/300" ] && [ "$TYPE" = "0/0/0" ] && [ "$INTERFACE" = "255/0/0" ]; then
|
|
/etc/init.d/gpsd stop
|
|
fi
|
|
;;
|
|
esac
|