blob: 9a9966b7b4e371f349f9b732aa5886feaa68bb2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
post_install() {
echo "Running iscan-registry to register plugins and firmware with iscan"
iscan-registry -a interpreter usb 0x04b8 0x012d \
/usr/lib/iscan/libesint66 /usr/share/iscan/esfw66.bin
}
pre_remove() {
echo "Unregistering gt-s600 plugins/firmware"
iscan-registry -r interpreter usb 0x04b8 0x012d \
/usr/lib/iscan/libesint66 /usr/share/iscan/esfw66.bin
}
|