From 8126d47b960685cd81cebdea0c7c75231737ae6c Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 10 Jan 2013 10:57:59 +0530 Subject: [PATCH] Fix #1098049 (Kobo Arc is not recognized as a valid device under Linux) --- src/calibre/devices/mtp/unix/devices.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/calibre/devices/mtp/unix/devices.c b/src/calibre/devices/mtp/unix/devices.c index 098d0aedcb..b6d50bac5b 100644 --- a/src/calibre/devices/mtp/unix/devices.c +++ b/src/calibre/devices/mtp/unix/devices.c @@ -20,6 +20,9 @@ const calibre_device_entry_t calibre_mtp_device_table[] = { , { "Google", 0x18d1, "Nexus 10", 0x4ee2, DEVICE_FLAGS_ANDROID_BUGS} , { "Google", 0x18d1, "Nexus 10", 0x4ee1, DEVICE_FLAGS_ANDROID_BUGS} + // Kobo Arc + , { "Kobo", 0x2237, "Arc", 0xd108, DEVICE_FLAGS_ANDROID_BUGS} + , { NULL, 0xffff, NULL, 0xffff, DEVICE_FLAG_NONE } };