Bump lthor version to 2.0
authorKrzysztof Opasiak <k.opasiak@samsung.com>
Thu, 7 Jul 2016 13:27:11 +0000 (15:27 +0200)
committerSeung-Woo Kim <sw0312.kim@samsung.com>
Mon, 25 Jul 2016 05:39:49 +0000 (14:39 +0900)
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>
AUTHORS
CMakeLists.txt
NOTICE

diff --git a/AUTHORS b/AUTHORS
index c9326d1..392fde2 100644 (file)
--- a/AUTHORS
+++ b/AUTHORS
@@ -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>
index 901d0d2..54a6695 100755 (executable)
@@ -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 (file)
--- 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.
+
 <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.