Linus Walleij | 0dd71e9 | 2006-05-04 18:47:07 +0000 | [diff] [blame] | 1 | Building and Installing |
| 2 | ----------------------- |
Linus Walleij | 6fd2f08 | 2006-03-28 07:19:22 +0000 | [diff] [blame] | 3 | |
Linus Walleij | 0dd71e9 | 2006-05-04 18:47:07 +0000 | [diff] [blame] | 4 | See the "INSTALL" file. |
| 5 | |
| 6 | |
| 7 | Heritage |
| 8 | -------- |
| 9 | |
| 10 | libmtp is based on several ancestors: |
| 11 | |
| 12 | * libptp2 by Mariusz Woloszyn was the starting point used |
| 13 | by Richard A. Low for the initial starter port. You can |
| 14 | find it at http://libptp.sourceforge.net/ |
| 15 | |
| 16 | * libgphoto2 by Mariusz Woloszyn and Marcus Meissner was |
| 17 | used at a later stage since it was (is) more actively |
| 18 | maintained. libmtp tracks the PTP implementation in |
| 19 | libgphoto2 and considers it an upstream project. We will |
| 20 | try to submit anything generally useful back to libgphoto2 |
| 21 | and not make double efforts. In practice this means we |
| 22 | use ptp.c, ptp.h and ptp-pack.c verbatim from the libgphoto2 |
| 23 | source code. If you need to change things in these files, |
| 24 | make sure it is so general that libgphoto2 will want to |
| 25 | merge it to their codebase too. You find libgphoto2 as part |
| 26 | of gPhoto: http://gphoto.sourceforge.net/ |
| 27 | |
| 28 | * libnjb was a project that Richard and Linus were working |
Linus Walleij | fcf8891 | 2006-06-05 13:23:33 +0000 | [diff] [blame] | 29 | on before libmtp. When Linus took Richards initial port |
Linus Walleij | 0dd71e9 | 2006-05-04 18:47:07 +0000 | [diff] [blame] | 30 | and made an generic C API he re-used the philosophy and |
| 31 | much code from libnjb. Many of the sample programs are for |
| 32 | example taken quite literally from libnjb. You find it here: |
| 33 | http://libnjb.sourceforge.net/ |
| 34 | |
| 35 | |
| 36 | Compiling programs for libmtp |
| 37 | ----------------------------- |
| 38 | |
| 39 | libmtp has support for the pkg-config script by adding a libmtp.pc |
| 40 | entry in $(prefix)/lib/pkgconfig. To compile a libmtp program, |
| 41 | "just" write: |
| 42 | |
| 43 | gcc -o foo `pkg-config --cflags --libs libmtp` foo.c |
| 44 | |
| 45 | This also simplifies compilation using autoconf and pkg-config: just |
| 46 | write e.g. |
| 47 | |
| 48 | PKG_CHECK_MODULES(MTP, libmtp) |
| 49 | AC_SUBST(MTP_CFLAGS) |
| 50 | AC_SUBST(MTP_LIBS) |
| 51 | |
| 52 | To have libmtp LIBS and CFLAGS defined. Needless to say, this will |
| 53 | only work if you have pkgconfig installed on your system, but most |
| 54 | people have nowadays. |
| 55 | |
| 56 | If your library is installed in e.g. /usr/local you may have to tell |
| 57 | this to pkgconfig by setting the PKG_CONFIG_PATH thus: |
| 58 | |
| 59 | export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig |
| 60 | |
| 61 | |
| 62 | Documentation |
| 63 | ------------- |
| 64 | |
| 65 | Read the API documentation that can be generated with doxygen. |
| 66 | It will be output in doc/html if you have Doxygen properly |
| 67 | installed. (It will not be created unless you have Doxygen!) |
| 68 | |
| 69 | For information about the Media Transfer Protocol, see: |
| 70 | http://en.wikipedia.org/wiki/Media_Transfer_Protocol |
| 71 | |
| 72 | |
| 73 | Contributing |
| 74 | ------------ |
| 75 | |
| 76 | See the project page at http://libmtp.sourceforge.net/ |
Linus Walleij | ee73ef2 | 2006-08-27 19:56:00 +0000 | [diff] [blame] | 77 | We always need your help. There is a mailinglist and a |
| 78 | bug report system there. |
Linus Walleij | 6fd2f08 | 2006-03-28 07:19:22 +0000 | [diff] [blame] | 79 | |
Linus Walleij | a1b66f2 | 2007-05-10 20:02:16 +0000 | [diff] [blame] | 80 | |
| 81 | New Devices |
| 82 | ----------- |
| 83 | |
Linus Walleij | fcf8891 | 2006-06-05 13:23:33 +0000 | [diff] [blame] | 84 | If you happen upon a device which libmtp claims it cannot |
| 85 | autodetect, please submit the vendor ID and device ID |
| 86 | as a bug, patch or feature request on the Sourceforge |
Linus Walleij | da558be | 2007-03-10 21:42:25 +0000 | [diff] [blame] | 87 | bug tracker at our homepage. If it gives a sensible |
| 88 | output from "mtp-detect" then please attach the result as |
Linus Walleij | a1b66f2 | 2007-05-10 20:02:16 +0000 | [diff] [blame] | 89 | well as it teach us some stuff about your device. If you've |
| 90 | done some additional hacking, join our mailinglist and |
| 91 | post your experiences there. |
Linus Walleij | da558be | 2007-03-10 21:42:25 +0000 | [diff] [blame] | 92 | |
Linus Walleij | a1b66f2 | 2007-05-10 20:02:16 +0000 | [diff] [blame] | 93 | If you want to be able to hack some more and you're not |
| 94 | afraid of C hacking, add an entry for your device's |
| 95 | vendor/product ID and a descriptive string to the database |
| 96 | in the file src/libusb-glue.c. It is close to the top of the |
| 97 | file. |
| 98 | |
| 99 | If you want to poke around to see if your device has some |
| 100 | special pecularities, you can test some special device |
| 101 | flags (defined in src/libusb-glue.h) by inserting them |
| 102 | together with your device entry in src/libusb-glue.c. |
| 103 | Flags can be tested in isolation or catenated with "|" |
| 104 | (binary OR). If relatives to your device use a certain |
| 105 | flag, chances are high that a new device will need it |
| 106 | too, typically from the same manufacturer. |
| 107 | |
| 108 | The most common flag that needs to be set is the |
| 109 | DEVICE_FLAG_UNLOAD_DRIVER that detach any Linux kernel |
| 110 | drivers that may have attached to the device making |
Linus Walleij | 94f23d5 | 2007-08-04 19:37:28 +0000 | [diff] [blame] | 111 | MTP access impossible. This is however not expected to |
| 112 | really work: this is a problem being tracked as of |
| 113 | now (2007-08-04). See the "last resort" solutions below |
| 114 | if you really need to get your dual-mode device to work |
| 115 | with MTP. |
Linus Walleij | a1b66f2 | 2007-05-10 20:02:16 +0000 | [diff] [blame] | 116 | |
| 117 | If your device is very problematic we are curious of how it |
Linus Walleij | da558be | 2007-03-10 21:42:25 +0000 | [diff] [blame] | 118 | works under Windows, so we enjoy reading USB packet sniffs |
| 119 | that reveal the low-level traffic carried out between |
| 120 | Windows Media Player and your device. This can be done |
| 121 | using the trial version of HHD Softwares software-only |
| 122 | USB monitor. You need to get a copy of version 2.37 since |
| 123 | the newer trial versions won't let you carry out the |
| 124 | needed packet sniffs. (As of 2007-03-10 a copy can be found |
| 125 | at: http://www.cobbleware.com/files/usb-monitor-237.exe) |
| 126 | There are other USB monitors as well, some more expensive |
| 127 | alternatives use hardware and even measure electronic |
| 128 | characteristics of the traffic (which is far too much |
| 129 | detail for us). |
| 130 | |
Linus Walleij | a1b66f2 | 2007-05-10 20:02:16 +0000 | [diff] [blame] | 131 | If you are a device vendor, please consider assigning one |
| 132 | of your employees as a contact person for libmtp, have them |
| 133 | sign up to the libmtp development list and answer questions |
| 134 | and post new device ID:s as they are released to our |
| 135 | mailing list. By the way: do you have spare devices you |
| 136 | can give us? Send them to Richard (Mac support) or Linus |
| 137 | (Linux support). (So far nobody did that except for Microsoft |
| 138 | who sent us a Zune by proxy!) |
Linus Walleij | fcf8891 | 2006-06-05 13:23:33 +0000 | [diff] [blame] | 139 | |
Linus Walleij | 6fd2f08 | 2006-03-28 07:19:22 +0000 | [diff] [blame] | 140 | |
Linus Walleij | bd7624c | 2007-05-28 10:48:54 +0000 | [diff] [blame] | 141 | Devices does not work - last resort: |
| 142 | ------------------------------------ |
| 143 | |
| 144 | Some devices that are dual-mode are simply impossible to get |
| 145 | to work under Linux because the usb-storage(.ko) kernel |
| 146 | module hook them first, and refuse to release them, even |
Linus Walleij | 94f23d5 | 2007-08-04 19:37:28 +0000 | [diff] [blame] | 147 | when we specify the DEVICE_FLAG_UNLOAD_DRIVER flag. (Maybe |
| 148 | it DOES release it but the device will immediately be probed |
| 149 | at the USB mass storage interface AGAIN because it |
| 150 | enumerates.) |
Linus Walleij | bd7624c | 2007-05-28 10:48:54 +0000 | [diff] [blame] | 151 | |
| 152 | Try this, if you have a recent 2.6.x Linux kernel: |
| 153 | |
Linus Walleij | 94f23d5 | 2007-08-04 19:37:28 +0000 | [diff] [blame] | 154 | * Edit /etc/modprobe.d/blacklist |
Linus Walleij | bd7624c | 2007-05-28 10:48:54 +0000 | [diff] [blame] | 155 | |
| 156 | * Add the line "blacklist usb-storage" |
| 157 | |
| 158 | * Reboot. |
| 159 | |
| 160 | Now none of you USB disks, flash memory sticks etc will be |
| 161 | working (you just disabled them all). However you *can* try |
| 162 | your device, and it might have started working because there |
| 163 | is no longer a USB mass storage driver that tries to hook onto |
| 164 | the mass storage interface of your device. |
| 165 | |
Linus Walleij | 94f23d5 | 2007-08-04 19:37:28 +0000 | [diff] [blame] | 166 | If not even blacklisting works (check with |
| 167 | "lsmod | grep usb-storage"), there is some problem with |
| 168 | something else and you may need to remove or rename the file |
| 169 | /lib/modules/<VERSION>/kernel/drivers/usb/storage/usb-storage.ko |
| 170 | manually. |
| 171 | |
Linus Walleij | 5cb0b34 | 2007-08-04 21:27:01 +0000 | [diff] [blame] | 172 | Another method is to run (as root) something like: |
| 173 | |
| 174 | > rmmod usb_storage ; mtp-detect |
| 175 | |
| 176 | You can run most any command or a client like gnomad2 or |
| 177 | Amarok immediately after the rmmod command. This works |
| 178 | sometimes. |
| 179 | |
Linus Walleij | bd7624c | 2007-05-28 10:48:54 +0000 | [diff] [blame] | 180 | If you find the PerfectSolution(TM) to this dilemma, so you |
| 181 | can properly switch for individual devices whether to use it |
| 182 | as USB mass storage or not, please tell us how you did it. We |
| 183 | know we cannot use udev, because udev is called after-the-fact: |
| 184 | the device is already configured for USB mass storage when |
| 185 | udev is called. |
| 186 | |
| 187 | |
Linus Walleij | 15def33 | 2006-09-19 14:27:02 +0000 | [diff] [blame] | 188 | Calendar and contact support: |
| 189 | ----------------------------- |
Linus Walleij | d3bdf76 | 2006-02-20 22:21:56 +0000 | [diff] [blame] | 190 | |
Linus Walleij | 3c16fe4 | 2006-04-30 07:53:41 +0000 | [diff] [blame] | 191 | The Creative Zen series can read VCALENDAR2 (.ics) files |
Linus Walleij | 15def33 | 2006-09-19 14:27:02 +0000 | [diff] [blame] | 192 | and VCard (.vcf) files from programs like for example |
| 193 | Evolution with the following limitations/conditions: |
Linus Walleij | d3bdf76 | 2006-02-20 22:21:56 +0000 | [diff] [blame] | 194 | |
Linus Walleij | 3c16fe4 | 2006-04-30 07:53:41 +0000 | [diff] [blame] | 195 | - The file must be in DOS (CR/LF) format, use the unix2dos |
| 196 | program to convert if needed |
Linus Walleij | 15def33 | 2006-09-19 14:27:02 +0000 | [diff] [blame] | 197 | |
| 198 | - Repeat events in calendar files do not seem to be supported, |
| 199 | entries will only appear once. |
| 200 | |
| 201 | - Calendar (.ics) files should be stored in the folder "My Organizer" |
| 202 | when sent to the device (this directory should be autodetected |
Linus Walleij | 80b2c72 | 2006-06-22 17:57:17 +0000 | [diff] [blame] | 203 | for use with calendar files, otherwise use the option |
Linus Walleij | 15def33 | 2006-09-19 14:27:02 +0000 | [diff] [blame] | 204 | -f "My Organizer" to sendfile for this) Apparently this file can |
| 205 | also contain tasklists. |
| 206 | |
| 207 | - Contact (.vcf) files should be stored in the folder "My Contacts" |
| 208 | when sent to the device. (-f "My Contacts") |
| 209 | |
| 210 | - Some devices are picky about the name of the calendar and |
| 211 | contact files. For example the Zen Microphoto wants: |
| 212 | |
Linus Walleij | b1318d1 | 2006-09-25 14:59:26 +0000 | [diff] [blame] | 213 | Calendar: My Organizer/6651416.ics |
| 214 | Contacts: My Organizer/6651416.vcf |
| 215 | |
| 216 | |
| 217 | Syncing in with Evolution and Creative Devices |
| 218 | ---------------------------------------------- |
| 219 | |
| 220 | Evolution can easily export .ics an .vcf files, but you currently |
| 221 | need some command-line hacking to get you stuff copied over in |
| 222 | one direction host -> device. The examples/ directory contains a script |
| 223 | created for the Creative Zen Microphoto by Nicolas Tetreault. |
| 224 | |
Linus Walleij | 6e8cef4 | 2006-12-03 20:45:04 +0000 | [diff] [blame] | 225 | |
| 226 | It's Not Our Bug! |
| 227 | ----------------- |
| 228 | |
| 229 | Some MTP devices have strange pecularities. We try to work around |
| 230 | these whenever we can, sometimes we cannot work around it or we |
| 231 | cannot test your solution. |
| 232 | |
| 233 | * The Zen Vision:M (possibly more Creative Zens) has a firmware bug |
| 234 | that makes it drop the last two characters off a playlist name. |
| 235 | It is fixed in later firmware. |
| 236 | |
Linus Walleij | c41f2e8 | 2007-03-12 22:26:00 +0000 | [diff] [blame] | 237 | * For Creative Technology devices, there are hard limits on how |
| 238 | many files can be put onto the device. For a 30 GiB device (like |
| 239 | the Zen Xtra) the limit is 6000, for a 60 GiB device the limit |
| 240 | is 15000 files. For further Creative pecularities, see the |
| 241 | FAQ sections at www.nomadness.net. |
| 242 | |
Linus Walleij | d24a7ab | 2007-03-07 21:48:43 +0000 | [diff] [blame] | 243 | * Sandisk sansa c150 and probably several other Sandisk devices |
| 244 | (and possibly devices from other manufacturers) have a dual |
| 245 | mode with MTP and USB mass storage. The device will initially |
| 246 | claim to be mass storage so udev will capture is and make the |
Linus Walleij | da558be | 2007-03-10 21:42:25 +0000 | [diff] [blame] | 247 | use of MTP mode impossible. One way of avoiding it could be to |
Linus Walleij | d24a7ab | 2007-03-07 21:48:43 +0000 | [diff] [blame] | 248 | be to blacklist the "usb-storage" module in |
| 249 | /etc/modprobe.c/blacklist with a row like this: |
Linus Walleij | da558be | 2007-03-10 21:42:25 +0000 | [diff] [blame] | 250 | "blacklist usb-storage". Some have even removed the |
| 251 | "usb-storage.ko" (kernel module file) to avoid loading. |
Linus Walleij | d24a7ab | 2007-03-07 21:48:43 +0000 | [diff] [blame] | 252 | |
Linus Walleij | da558be | 2007-03-10 21:42:25 +0000 | [diff] [blame] | 253 | * The iriver devices (possibly all of them) cannot handle the |
Linus Walleij | 6e8cef4 | 2006-12-03 20:45:04 +0000 | [diff] [blame] | 254 | enhanced GetObjectPropList MTP command (0x9805) properly. So |
| 255 | they have been banned from using it. |
| 256 | |
Linus Walleij | da558be | 2007-03-10 21:42:25 +0000 | [diff] [blame] | 257 | * iriver devices have problems with older versions of libmtp and |
Linus Walleij | 8226522 | 2007-03-04 19:47:08 +0000 | [diff] [blame] | 258 | with new devices libmtp does not know of as of yet, since it |
| 259 | has an oldstyle USB device controller that cannot handle zero |
Linus Walleij | da558be | 2007-03-10 21:42:25 +0000 | [diff] [blame] | 260 | writes. (Register your device with us!) All their devices are |
| 261 | likely to need a special device flag in the src/libusb-glue.c |
| 262 | database. |
Linus Walleij | 8226522 | 2007-03-04 19:47:08 +0000 | [diff] [blame] | 263 | |
Linus Walleij | 6e8cef4 | 2006-12-03 20:45:04 +0000 | [diff] [blame] | 264 | * The Samsung Yepp T9 has several strange characteristics, some |
| 265 | that we've managed to work around. (For example it will return |
| 266 | multiple PTP packages in a single transaction.) |
| 267 | |
Linus Walleij | f2711b3 | 2007-02-26 20:18:40 +0000 | [diff] [blame] | 268 | * The early firmware for Philips HDD players is known to be |
| 269 | problematic. Please upgrade to as new firmware as you can get. |
| 270 | (Yes this requires some kind of Windows Installation I think.) |
| 271 | |
Linus Walleij | 6e8cef4 | 2006-12-03 20:45:04 +0000 | [diff] [blame] | 272 | * Very few devices that implement GetObjectPropList (0x9805) will |
| 273 | return the entire object list if you request a list for object |
| 274 | 0xffffffffu. (But they should.) So we're currently not using |
| 275 | that feature. |
Linus Walleij | d132d8e | 2007-04-03 23:24:54 +0000 | [diff] [blame] | 276 | |
| 277 | |
| 278 | Lost symbols |
| 279 | ------------ |
| 280 | |
| 281 | Shared libraries can be troublesome to users not experienced with |
| 282 | them. The following is a condensed version of a generic question |
| 283 | that has appeared on the libmtp mailing list from time to time. |
| 284 | |
| 285 | > PTP: Opening session |
| 286 | > Queried Creative Zen Vision:M |
| 287 | > gnomad2: relocation error: gnomad2: undefined symbol: |
| 288 | > LIBMTP_Get_Storageinfo |
| 289 | > (...) |
| 290 | > Are these type of errors related to libmtp or something else? |
| 291 | |
| 292 | The problem is of a generic nature, and related to dynamic library |
| 293 | loading. It is colloquially known as "dependency hell". |
| 294 | (http://en.wikipedia.org/wiki/Dependency_hell) |
| 295 | |
| 296 | The gnomad2 application calls upon the dynamic linker in Linux to |
| 297 | resolve the symbol "LIBMTP_Get_Storageinfo" or any other symbol |
| 298 | (ELF symbol, or link point or whatever you want to call them, a |
| 299 | symbol is a label on a memory address that the linker shall |
| 300 | resolve from label to actual address.) |
| 301 | For generic information on this subject see the INSTALL file and |
| 302 | this Wikipedia page: |
| 303 | |
| 304 | http://en.wikipedia.org/wiki/Library_(computing) |
| 305 | |
| 306 | When Linux /lib/ld-linux.so.X is called to link the symbols compiled |
| 307 | into gnomad2 (or any other executable using libmtp), it examines the |
| 308 | ELF file for the libmtp.so.X file it finds first and cannot resolve |
| 309 | the symbol "LIBMTP_Get_Storageinfo" (or whichever symbol you have a |
| 310 | problem witj) from it, since it's probably not there. There are many |
| 311 | possible causes of this symbol breakage: |
| 312 | |
| 313 | 1) You installed precompiled libmtp and gnomad2 packages (RPMs, debs |
| 314 | whatever) that do not match up. Typical cause: your gnomad2 package was |
| 315 | built against a newer version of libmtp than what's installed on your |
| 316 | machine. Another typical cause: you installed a package you found on |
| 317 | the web, somewhere, the dependency resolution system did not protest |
| 318 | properly (as it should) or you forced it to install anyway, ignoring |
| 319 | some warnings. |
| 320 | |
| 321 | 2) You compiled libmtp and/or gnomad2 from source, installing both or |
| 322 | either in /usr/local/lib and /usr/local/bin. This means at compile-time |
| 323 | gnomad2 finds the libmtp library in /usr/local/lib but at runtime, it |
| 324 | depends on the Linux system wide library loader (/lib/ld-linux.so.X) in |
| 325 | order to resolve the symbols. This loader will look into the file |
| 326 | /etc/ld.so.conf and/or the folder /etc/ld.so.conf.d in order to find |
| 327 | paths to libraries to be used for resolving the symbols. If you have |
| 328 | some older version of libmtp in e.g. /usr/lib (typically installed by a |
| 329 | package manager) it will take precedence over the new version you just |
| 330 | installed in /usr/local/lib and the newly compiled library in |
| 331 | /usr/local/lib will *not* be used, resulting in this error message. |
| 332 | |
| 333 | 3) You really did install the very latest versions (as of writing libmtp |
| 334 | 0.1.5 and gnomad2 2.8.11) from source and there really is no |
| 335 | pre-installed package of either on your machine. In that case I'm |
| 336 | totally lost, I have no idea what's causing this. |
| 337 | |
| 338 | Typical remedies: |
| 339 | |
| 340 | 1) If you don't want to mess around with your system and risk these |
| 341 | situations, only use pre-packaged software that came with the |
| 342 | distribution or its official support channels. If it still breaks, |
| 343 | blame your distribution, they're not packaging correctly. Relying on |
| 344 | properly packaged software and not installing things yourself *is* the |
| 345 | Linux solution to the "dependency hell" problem. |
| 346 | |
| 347 | 2) Read about dynamically linked library handling until the stuff I wrote |
| 348 | about in the previous list sounds like music to your ears, inspect |
| 349 | your /lib, /usr/lib, /usr/local/lib, /etc/ld.so.conf and the |
| 350 | /etc/ld.so.conf.d, remove all pre-packed versions using RPM, APT, |
| 351 | YaST or whatever your distribution uses, compile libmtp and gnomad2 |
| 352 | (or whatever) from source only and you will be enlighted. |
| 353 | |
| 354 | I don't know if this helps you, it's the best answer we can give. |