Package: scanbuttond
Version: 0.2.3.cvs20090713-11
Severity: wishlist
Dear Maintainer,
please add support for Fujitsu fi-6130 and fi-6130Z scanners.
Kind regards
Andreas Jochens
-- System Information:
Debian Release: wheezy/sid
APT prefers unstable
APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Kernel: Linux 3.5-trunk-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Versions of packages scanbuttond depends on:
ii libc6 2.13-37
ii libsane 1.0.22-7.4
ii libusb-0.1-4 2:0.1.12-23+nmu1
Versions of packages scanbuttond recommends:
ii sane-utils 1.0.22-7.4
Versions of packages scanbuttond suggests:
pn lockfile-progs <none>
-- Configuration Files:
/etc/default/scanbuttond changed [not included]
-- no debconf information
--- debian/patches/fujitsu.patch 2012-11-27 21:40:04.000000000 +0100
+++ ../../orig/scanbuttond-0.2.3.cvs20090713/debian/patches/fujitsu.patch 2012-12-20 11:47:36.120784511 +0100
@@ -2,7 +2,7 @@
===================================================================
--- /dev/null 1970-01-01 00:00:00.000000000 +0000
+++ scanbuttond/backends/fujitsu.c 2012-11-07 21:52:33.000000001 +0100
-@@ -0,0 +1,293 @@
+@@ -0,0 +1,297 @@
+// fujitsu.c: Fujitsu device backend
+// This file is part of scanbuttond.
+// Copyleft )c( 2005-2006 by Bernhard Stiftner
@@ -34,17 +34,21 @@
+
+static char* backend_name = "Fujitsu USB";
+
-+#define NUM_SUPPORTED_USB_DEVICES 2
++#define NUM_SUPPORTED_USB_DEVICES 4
+
-+static int supported_usb_devices[NUM_SUPPORTED_USB_DEVICES][3] = {
++static int supported_usb_devices[NUM_SUPPORTED_USB_DEVICES][5] = {
+ { 0x04c5, 0x11a2, 1 }, // Fujitsu ScanSnap S1500
-+ { 0x04c5, 0x1096, 1 } // Fujitsu fi-5110EOX
++ { 0x04c5, 0x1096, 1 }, // Fujitsu fi-5110EOX
++ { 0x04c5, 0x114f, 1 }, // Fujitsu fi-6130
++ { 0x04c5, 0x11f3, 1 } // Fujitsu fi-6130Z
+};
+
+// TODO: check if this backend really works on the Epson 2580 too...
-+static char* usb_device_descriptions[NUM_SUPPORTED_USB_DEVICES][2] = {
++static char* usb_device_descriptions[NUM_SUPPORTED_USB_DEVICES][4] = {
+ { "Fujitsu", "ScanSnap S1500" },
-+ { "Fujitsu", "fi-5110EOX" }
++ { "Fujitsu", "fi-5110EOX" },
++ { "Fujitsu", "fi-6130" },
++ { "Fujitsu", "fi-6130Z" }
+};
+
+