[Bug 1010132] Re: Show copy dialog not working

2015-07-01 Thread Kunjomachen
*** This bug is a duplicate of bug 887821 ***
https://bugs.launchpad.net/bugs/887821

still present in 15.04

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1010132

Title:
  Show copy dialog not working

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity/+bug/1010132/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 887821] Re: Show copy dialog right click launcher entry doesn't work (on nautilus copy)

2015-07-01 Thread Kunjomachen
Still occurs on 15.04

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/887821

Title:
  Show copy dialog right click launcher entry doesn't work (on
  nautilus copy)

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity/+bug/887821/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1391260] Re: Genius MousePen i608X doesn't work in Ubuntu

2015-02-02 Thread Kunjomachen
@Giedrius StatkevĨius (giedrius-statkevicius)  Genius MousePen i608X
works well on  linux kernel version 3.18.3-031803-generic. Thankyou very
much

** Changed in: unity-control-center (Ubuntu)
   Status: Confirmed = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1391260

Title:
  Genius MousePen i608X doesn't work in Ubuntu

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-control-center/+bug/1391260/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1391260] Re: Genius MousePen i608X doesn't work in Ubuntu

2015-01-26 Thread Kunjomachen
@Giedrius StatkevĨius (giedrius-statkevicius) as of 3.16.0-25-generic it
still doesn't work.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1391260

Title:
  Genius MousePen i608X doesn't work in Ubuntu

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-control-center/+bug/1391260/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1391260] Re: Genius MousePen i608X doesn't work in Ubuntu

2014-12-31 Thread Kunjomachen
This is from http://www.spinics.net/lists/linux-input/msg31764.html


Here's a patch to make the hid-kye kernel module recognize a new
graphic tablet (which is a new version of the KYE i608x).

Technical stuff below:

Mine's branded as a Genius MousePen i608x.
lsusb returns this:
Bus 005 Device 002: ID 0458:501a KYE Systems Corp. (Mouse Systems)

It seems to share the same magic HID feature report than the other
tablets of this vendor.
(not sending it results in the tablet not sending pen pressure information).

I get the tablet to send absolute information about the pen and the mouse ;
the generated events look correct, and it integrates well with xorg evdev
(except for the mouse for which a dedicated xorg driver may be needed).


---

Signed-off-by: Sebastien Alaiwan sebastien.alaiwan@x
diff --git a/drivers/hid/hid-core.c b/drivers/hid/hid-core.c
index da52279..df5534d 100644
--- a/drivers/hid/hid-core.c
+++ b/drivers/hid/hid-core.c
@@ -1775,6 +1775,7 @@ static const struct hid_device_id 
hid_have_special_driver[] = {
{ HID_USB_DEVICE(USB_VENDOR_ID_KYE, USB_DEVICE_ID_KYE_ERGO_525V) },
{ HID_USB_DEVICE(USB_VENDOR_ID_KYE, USB_DEVICE_ID_KYE_EASYPEN_I405X) },
{ HID_USB_DEVICE(USB_VENDOR_ID_KYE, USB_DEVICE_ID_KYE_MOUSEPEN_I608X) },
+   { HID_USB_DEVICE(USB_VENDOR_ID_KYE, USB_DEVICE_ID_KYE_MOUSEPEN_I608X_2) 
},
{ HID_USB_DEVICE(USB_VENDOR_ID_KYE, USB_DEVICE_ID_KYE_EASYPEN_M610X) },
{ HID_USB_DEVICE(USB_VENDOR_ID_LABTEC, 
USB_DEVICE_ID_LABTEC_WIRELESS_KEYBOARD) },
{ HID_USB_DEVICE(USB_VENDOR_ID_LCPOWER, USB_DEVICE_ID_LCPOWER_LC1000 ) 
},
diff --git a/drivers/hid/hid-ids.h b/drivers/hid/hid-ids.h
index 34bb220..447cd8c 100644
--- a/drivers/hid/hid-ids.h
+++ b/drivers/hid/hid-ids.h
@@ -514,6 +514,7 @@
 #define USB_DEVICE_ID_KYE_GPEN_560 0x5003
 #define USB_DEVICE_ID_KYE_EASYPEN_I405X0x5010
 #define USB_DEVICE_ID_KYE_MOUSEPEN_I608X   0x5011
+#define USB_DEVICE_ID_KYE_MOUSEPEN_I608X_2 0x501A
 #define USB_DEVICE_ID_KYE_EASYPEN_M610X0x5013
 
 #define USB_VENDOR_ID_LABTEC   0x1020
diff --git a/drivers/hid/hid-kye.c b/drivers/hid/hid-kye.c
index e776963..7f4757f 100644
--- a/drivers/hid/hid-kye.c
+++ b/drivers/hid/hid-kye.c
@@ -186,6 +186,105 @@ static __u8 mousepen_i608x_rdesc_fixed[] = {
0xC0  /*  End Collection  */
 };
 
+/* Original MousePen i608X report descriptor size */
+#define MOUSEPEN_I608X_2_RDESC_ORIG_SIZE   482
+
+/* Fixed MousePen i608X report descriptor */
+static __u8 mousepen_i608x_2_rdesc_fixed[] = {
+   0x06, 0x00, 0xFF, /*  Usage Page (FF00h), */
+   0x09, 0x01,   /*  Usage (01h),*/
+   0xA1, 0x01,   /*  Collection (Application),   */
+   0x85, 0x05,   /*Report ID (5),*/
+   0x09, 0x01,   /*Usage (01h),  */
+   0x15, 0x80,   /*Logical Minimum (-128),   */
+   0x25, 0x7F,   /*Logical Maximum (127),*/
+   0x75, 0x08,   /*Report Size (8),  */
+   0x95, 0x07,   /*Report Count (7), */
+   0xB1, 0x02,   /*Feature (Variable),   */
+   0xC0, /*  End Collection, */
+   0x05, 0x0D,   /*  Usage Page (Digitizer), */
+   0x09, 0x02,   /*  Usage (Pen),*/
+   0xA1, 0x01,   /*  Collection (Application),   */
+   0x85, 0x10,   /*Report ID (16),   */
+   0x09, 0x20,   /*Usage (Stylus),   */
+   0xA0, /*Collection (Physical),*/
+   0x14, /*  Logical Minimum (0),*/
+   0x25, 0x01,   /*  Logical Maximum (1),*/
+   0x75, 0x01,   /*  Report Size (1),*/
+   0x09, 0x42,   /*  Usage (Tip Switch), */
+   0x09, 0x44,   /*  Usage (Barrel Switch),  */
+   0x09, 0x46,   /*  Usage (Tablet Pick),*/
+   0x95, 0x03,   /*  Report Count (3),   */
+   0x81, 0x02,   /*  Input (Variable),   */
+   0x95, 0x04,   /*  Report Count (4),   */
+   0x81, 0x03,   /*  Input (Constant, Variable), */
+   0x09, 0x32,   /*  Usage (In Range),   */
+   0x95, 0x01,   /*  Report Count (1),   */
+   0x81, 0x02,   /*  Input (Variable),   */
+   0x75, 0x10,   /*  Report Size (16),   */
+   0x95, 0x01,   /*  Report Count (1),   */
+   0xA4, /*  Push,   */
+   0x05, 0x01,   /*  Usage Page (Desktop),   */
+   0x55, 0xFD,   /*  Unit Exponent (-3), */
+   0x65, 0x13,   /*  Unit (Inch),*/
+   0x34, /*  

[Bug 1391260] [NEW] Genius MousePen i608X doesn't work in Ubuntu

2014-11-10 Thread Kunjomachen
Public bug reported:

My OS is Ubuntu 14.10.

My problem is almost same as in
http://ubuntuforums.org/showthread.php?t=2216333


lsusb returns this:
Bus 005 Device 002: ID 0458:501a KYE Systems Corp. (Mouse Systems)

It seems to share the same magic HID feature report than the other
tablets of this vendor.
(not sending it results in the tablet not sending pen pressure information)

ProblemType: Bug
DistroRelease: Ubuntu 14.10
Package: unity-control-center 14.10.0+14.10.20140922-0ubuntu2
ProcVersionSignature: Ubuntu 3.16.0-25.33-generic 3.16.7
Uname: Linux 3.16.0-25-generic x86_64
ApportVersion: 2.14.7-0ubuntu8
Architecture: amd64
CurrentDesktop: Unity
Date: Mon Nov 10 23:13:38 2014
ExecutablePath: /usr/bin/unity-control-center
InstallationDate: Installed on 2014-09-26 (44 days ago)
InstallationMedia: Ubuntu 14.04 LTS Trusty Tahr - Release amd64 (20140417)
SourcePackage: unity-control-center
UpgradeStatus: Upgraded to utopic on 2014-10-25 (16 days ago)
usr_lib_unity-control-center: deja-dup 32.0-0ubuntu1

** Affects: unity-control-center (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug utopic

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1391260

Title:
  Genius MousePen i608X doesn't work in Ubuntu

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-control-center/+bug/1391260/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs