diff options
author | Krzysztof Opasiak <k.opasiak@samsung.com> | 2016-07-07 15:27:11 +0200 |
---|---|---|
committer | Krzysztof Opasiak <k.opasiak@samsung.com> | 2016-07-13 13:08:36 +0200 |
commit | 9e713fde515050ecb7758a33731fa99e9ce78958 (patch) | |
tree | 617a3a563ca83516ff163116a2621180f9313d13 | |
parent | 92378d0f8aabf3a507a6e906c176bbf950c278eb (diff) | |
download | lthor-9e713fde515050ecb7758a33731fa99e9ce78958.tar.gz lthor-9e713fde515050ecb7758a33731fa99e9ce78958.tar.bz2 lthor-9e713fde515050ecb7758a33731fa99e9ce78958.zip |
Bump lthor version to 2.0
Due to major changes in lthor implementation let's bump
version to 2.0
Change-Id: I7b39080031c499a7e9f0899b32918d682d5f7497
Signed-off-by: Krzysztof Opasiak <k.opasiak@samsung.com>
-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. |