blob: 3bc96d26d5cbcce1dc12eb5af08769267ab72317 (
plain)
1
2
3
4
5
6
7
8
9
|
post_install() {
echo "Running iscan-registry to register plugins and firmware with iscan"
iscan-registry -a interpreter usb 0x04b8 0x0130 /usr/lib/iscan/libesint7C /usr/share/iscan/esfw7C.bin
}
pre_remove() {
echo "Unregistering gt-x770 plugins/firmware"
iscan-registry -r interpreter usb 0x04b8 0x0130 /usr/lib/iscan/libesint7C /usr/share/iscan/esfw7C.bin
}
|