diff options
author | Krzysztof Opasiak <k.opasiak@samsung.com> | 2016-07-07 15:27:11 +0200 |
---|---|---|
committer | Seung-Woo Kim <sw0312.kim@samsung.com> | 2016-07-25 14:39:49 +0900 |
commit | d31daef58f9725ac72634ce97f2dc4abd2461418 (patch) | |
tree | 653a67b4214acd6a9aebf3c2cf028da3b7544224 | |
parent | 9a233e06cb17d6ae0978eb59f9678bdb86003a07 (diff) | |
download | lthor-d31daef58f9725ac72634ce97f2dc4abd2461418.tar.gz lthor-d31daef58f9725ac72634ce97f2dc4abd2461418.tar.bz2 lthor-d31daef58f9725ac72634ce97f2dc4abd2461418.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. |