diff options
-rw-r--r-- | AUTHORS | 1 | ||||
-rwxr-xr-x | CMakeLists.txt | 2 | ||||
-rw-r--r-- | NOTICE | 30 |
3 files changed, 26 insertions, 7 deletions
@@ -2,3 +2,4 @@ Jaehoon You <jaehoon.you@samsung.com> Karol Lewandowski <k.lewandowsk@samsung.com> Rafal Krypa <r.krypa@samsung.com> Piotr Wilczek <p.wilczek@samsung.com> +Krzysztof Opasiak <k.opasiak@samsung.com> diff --git a/CMakeLists.txt b/CMakeLists.txt index 901d0d2..54a6695 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -21,7 +21,7 @@ SET(PKGNAME "${PACKAGE}") SET(PREFIX ${CMAKE_INSTALL_PREFIX}) SET(BINDIR "${PREFIX}/bin") -SET(PACKAGE_VERSION "1.5") +SET(PACKAGE_VERSION "2.0") IF("${CMAKE_BUILD_TYPE}" STREQUAL "") @@ -3,14 +3,32 @@ Except as noted, this software is licensed under Apache License, Version 2. Please, see the LICENSE.APLv2 file for Apache License terms and conditions. ---------------------------------------------------------------------------- +Requirements: +- pkg-config + http://www.freedesktop.org/wiki/Software/pkg-config/ + +- libusb >= v1.0.17 + http://libusb.info/ + +- libarchive + http://www.libarchive.org/ + +As recently VID and PID used by lthor downloaders has been +black listed in CDC ACM kernel driver, lthor since version 2.0 +uses libusb for communication. + <OS X> (Requirements: OS X 10.7, 10.8) -For OS X 'pkg-config' package is required. It can be downloaded from: -http://www.freedesktop.org/wiki/Software/pkg-config/ -The libarchive download is available at: -http://www.libarchive.org/ +To use lthor >= v2.0 it is required to unbind CDC ACM +driver from the device. This can be done using this: + +$ kextstat | grep AppleUSBCDC | awk '{print $6}' | xargs -L1 -I{} sudo +kextunload -b {} + +WARNING: +This command unbinds CDC driver from all devices in system. -On OS X always execute lthor with -d /dev/cu.MYDEV -ex) lthor -d /dev/cu.SAMSUNG_VSP *.tar +This can be also achieved by writing codeless kext for device with +suitable VID and PID. |