From 893f6bf83dd3c99230de56eb7cdaaada2f091641 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 24 Nov 2012 08:28:17 +0530 Subject: [PATCH] Add driver for Nexus 10 on linux. Fixes #1082563 (Google Nexus 10 not detected) --- 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 803b3f7bcd..7024c5fd46 100644 --- a/src/calibre/devices/mtp/unix/devices.c +++ b/src/calibre/devices/mtp/unix/devices.c @@ -14,6 +14,9 @@ const calibre_device_entry_t calibre_mtp_device_table[] = { // Amazon Kindle Fire HD , { "Amazon", 0x1949, "Fire HD", 0x0007, DEVICE_FLAGS_ANDROID_BUGS} + // Nexus 10 + , { "Google", 0x18d1, "Nexus 10", 0x4ee2, DEVICE_FLAGS_ANDROID_BUGS} + , { NULL, 0xffff, NULL, 0xffff, DEVICE_FLAG_NONE } };