From: Krzysztof Opasiak Date: Thu, 7 Jul 2016 13:27:11 +0000 (+0200) Subject: Bump lthor version to 2.0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F90%2F78990%2F3;p=tools%2Flthor.git 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 --- diff --git a/AUTHORS b/AUTHORS index c9326d1..392fde2 100644 --- a/AUTHORS +++ b/AUTHORS @@ -2,3 +2,4 @@ Jaehoon You Karol Lewandowski Rafal Krypa Piotr Wilczek +Krzysztof Opasiak 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 "") diff --git a/NOTICE b/NOTICE index d18014e..23fcab4 100644 --- a/NOTICE +++ b/NOTICE @@ -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. + (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.