[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2021-03-17 Thread coper
light on: i2ctransfer -f -y 2 w13@0x15 0x05 0x00 0x3d 0x03 0x06 0x00 0x07 0x00 0x0d 0x14 0x03 0x01 0xad light off: i2ctransfer -f -y 2 w13@0x15 0x05 0x00 0x3d 0x03 0x06 0x00 0x07 0x00 0x0d 0x14 0x03 0x00 0xad worked for me on asus UX333F wwith ubuntu 20.10 -- You received this bug

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2021-03-16 Thread magellan
Ok, I think this issue will be solved in a few days ! Thanks to you, I finally found the magic lines. My laptop is : Asus-VivoBook-ASUSLaptop-X421IA-M433IA The command "sudo i2cdetect -l" return theses lines : i2c-3 smbus SMBus PIIX4 adapter port 1 at 0b20 SMBus adapter i2c-1

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2021-03-16 Thread Pilot6
If the touchpad firmware can't do it by itself, or we can't find a way to enable it, it is not too difficult to write a kernel driver that will use touchpad events and convert them into keyboard events. Another option is to create a user space driver, like xderver-xorg- input-libinput,

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2021-03-16 Thread Pilot6
@clunphumb My guess is that some command is send through i2c during Windows boot process when the driver detects the device. This command enables the keyboard. Then the button at the upper right corner starts working as a NumLock button. You are catching another command that lights up the

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2021-03-16 Thread Petr Nosek
Hi, I can confirm, this works for me: light on: i2ctransfer -f -y 2 w13@0x15 0x05 0x00 0x3d 0x03 0x06 0x00 0x07 0x00 0x0d 0x14 0x03 0x01 0xad light off: i2ctransfer -f -y 2 w13@0x15 0x05 0x00 0x3d 0x03 0x06 0x00 0x07 0x00 0x0d 0x14 0x03 0x00 0xad My numpad is on on bus

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2021-03-15 Thread VanVan
It is extremely unlikely that this would cause problems, it would have to match exactly another bus command interpreted differently by another device, and we all have almost the same laptop. However, here is the same command improved to take into account your remarks, and thus send the commands

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2021-03-15 Thread Julian Oertel
At this point I would like to point out that i2ctransfer can, as stated in the manpages, cause serious damage to your i2c devices. Again, I'm not an expert at this and please correct me, if I'm wrong, but trying all bus addresses seems kind of risky to me. Instead, you can try to use the

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2021-03-15 Thread VanVan
It is normal to see these errors, this command sends the instruction to turn on the digital pad to all bus number. However, if this command did not turn on the numpad, it means that none of the bus number are compatible, you should have the same problem manually. -- You received this bug

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2021-03-15 Thread magellan
I used this command : for f in /dev/i2c-*; do sudo i2ctransfer -f -y ${f:9} w13@0x15 0x05 0x00 0x3d 0x03 0x06 0x00 0x07 0x00 0x0d 0x14 0x03 0x01 0xad; done And I get theses errors : Error: Adapter does not have I2C transfers capability Error: Adapter does not have I2C transfers capability

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2021-03-15 Thread magellan
Waouh ! It works ! I never thought it will be possible on Linux since there is no Asus support. I don't think there is special command to display the numbers. I think that when the command is sent to illuminate the pad, a program detect where the user tap on the numpad to display the number. The

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2021-03-15 Thread VanVan
For those who want to test if it works, just enter the following command: sudo apt-get install -y i2c-tools;for f in /dev/i2c-*; do sudo i2ctransfer -f -y ${f:9} w13@0x15 0x05 0x00 0x3d 0x03 0x06 0x00 0x07 0x00 0x0d 0x14 0x03 0x01 0xad; done -- You received this bug notification because you are

Re: [Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2021-03-15 Thread ANDREA MATTANA
worked changing address to 1: light on: sudo i2ctransfer -f -y 1 w13@0x15 0x05 0x00 0x3d 0x03 0x06 0x00 0x07 0x00 0x0d 0x14 0x03 0x01 0xad light off: sudo i2ctransfer -f -y 1 w13@0x15 0x05 0x00 0x3d 0x03 0x06 0x00 0x07 0x00 0x0d 0x14 0x03 0x00 0xad nothing else but big progress! :) Thanks Il

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2021-03-15 Thread VanVan
I can confirm that it's working for me by changing the bus number from 0 to 2. i2ctransfer -f -y 2 w13@0x15 0x05 0x00 0x3d 0x03 0x06 0x00 0x07 0x00 0x0d 0x14 0x03 0x01 0xad -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu.

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2021-03-15 Thread coper
same bug in ubuntu 20.10... last post seems to be a progress.. Thanks -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1810183 Title: numpad on touchpad doesn't work in ASUS Zenbook 14

Re: [Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2021-03-15 Thread ANDREA MATTANA
UX433F Ubuntu 18.04 doesn't work sudo i2ctransfer -f -y 0 w13@0x15 0x05 0x00 0x3d 0x03 0x06 0x00 0x07 0x00 0x0d 0x14 0x03 0x00 0xad Error: Sending messages failed: Remote I/O error Cheers, Andrea Il giorno lun 15 mar 2021 alle ore 11:01 Pilot6 <1810...@bugs.launchpad.net> ha scritto: > I

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2021-03-15 Thread Pilot6
I confirm that the command works for me too. But the numberpad doesn't seem to send input events. In this state a python script should work, but it is not a way of doing it properly. The numberpad should work as a keyboard. It is detected already as one. Maybe another command is needed to

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2021-03-15 Thread Pilot6
@clunphumb This is a progress. The numpad is detected as a keyboard. If you enable NumLick there it may start working. In this case it won't be too hard to do a kernel patch. But now I am too busy these days to dig into it. Probably next month I will be able to look into it. -- You received this

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2021-03-14 Thread Julian Oertel
Hello, I was able to take a more in-depth look at the log and ran some additional tests. I was able to determine the command which is used for turning on the lights of the numberpad: i2ctransfer -f -y 0 w13@0x15 0x05 0x00 0x3d 0x03 0x06 0x00 0x07 0x00 0x0d 0x14 0x03 0x01 0xad To turn them off,

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2021-03-13 Thread Julian Oertel
Hello, I've had success in probing the device with the aforementioned tool (https://github.com/bentiss/SimplePeripheralBusProbe). Sadly I'm not sure how to analyze the data. Hopefully someone else is able to make something out of it. I recorded the command which enables the numpad and the

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2021-02-23 Thread Lucas Santana Carlota
So sad, Asus doesn't care about linux users, that's the reality ... Our only hope is a community developed driver for this feature. -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1810183

Re: [Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2021-02-21 Thread ANDREA MATTANA
It should advertise the fact that the Asus notebooks do not support linux and features do not work. Maybe it would push Asus to change strategy. Il giorno dom 21 feb 2021 alle ore 10:05 Badaoui Mohamed < 1810...@bugs.launchpad.net> ha scritto: > 2 year old thread. I don't think Asus or some

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2021-02-21 Thread Badaoui Mohamed
2 year old thread. I don't think Asus or some other hardware manufacturer wants to fix it anymore. Once again Asus has shown that the linux community is the least of its concerns. Too bad :/ -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2021-02-01 Thread Karl Edwards
+1 same for me -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1810183 Title: numpad on touchpad doesn't work in ASUS Zenbook 14 Status in Linux: New Status in linux package in

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2021-01-23 Thread santicas20
Hello, having the same problem here with my Asus Zenbook 14. It would be great to have such a nice feature in Linux. Let me know if I can be of any help to provide logs or test some patches. -- You received this bug notification because you are a member of Kernel Packages, which is subscribed

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2021-01-22 Thread VanVan
Maybe it is possible to ask them directly : http://www.emc.com.tw/emc/en/Product/Solution/TouchpadSolutions -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1810183 Title: numpad on

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2021-01-22 Thread Evgeny Brazgin
@hydrogencl > I have reported this issue to ASUS support Thank you! I also requested tech support for the drivers for ExpertBook B9. Today I got the reply: > In regards to drivers for Ubuntu Linux 20.10, you will be required to contact Linux directly for drivers and tools for the fingerprint

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2021-01-22 Thread hydrogencl
I have reported this issue to ASUS support. If they don't reply, we have to demand them solve it by the support website: https://www.asus.com/support/product/contactus/services/questionform/?lang =us-en This issue belongs to ASUS. -- You received this bug notification because you are a member

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2021-01-13 Thread praveenpathak
Same issue with me. Asus Zenbook 14 UX425E, i7 11th gen 5.8.0-36-generic #40~20.04.1-Ubuntu SMP Wed Jan 6 10:15:55 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu.

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2020-10-23 Thread Adam Niedling
** Tags added: groovy -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1810183 Title: numpad on touchpad doesn't work in ASUS Zenbook 14 Status in Linux: New Status in linux package in

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2020-10-03 Thread hvico
Hello, I tried to apply the I2C probe from Pilot6 link above (https://github.com/bentiss/SimplePeripheralBusProbe). Unfortunatelly I couldn't make it work. I was able to overload my DSDT table and compile it (using Intel iasl.exe as Microsoft's asl.exe generated a file which produced lots of

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2020-10-03 Thread Badaoui Mohamed
It's a shame that Asus doesn't support Linux. They make great laptops that a lot of developers use because of it. If they continue not to support Linux, personally I will probably start to see what its competitors offer like Huawei for example. -- You received this bug notification because

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2020-10-03 Thread Pilot6
@turboconnard Asus won't help. Their policy is not to support Linux. It can be resolved only by someone who can hack the Windows driver. -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu.

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2020-10-03 Thread Alexis Clairet
Yep, I know that... the fact is the "bug" is here for a long time and apparently it's not going to be resolved soon without the help of Asus. This thread is linked every time someone on the internet ask for help with there laptop so my idea was to investigate the hack/software solution instead of

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2020-10-03 Thread Pilot6
@turboconnard That repo is not useful. It is a python prog that has nothing to do with the touchpad features. It emulates the touchpad capabilities. It can be done on any touchpad. The only way to get the backlight on and us the fetaure properly is to find out how to enable it. -- You received

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2020-10-03 Thread Alexis Clairet
Hi, I've got a vivobook X412D and I found this on stackoverflow: https://gitlab.com/Thraen/gx735_touchpad_numpad/ . It's not a driver but with a little tweaks in a minute, I managed to get numpad inputs (without leds on and by plugin a usb keyboard). When "Num lock" on the usb keyboard is

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2020-09-30 Thread max
+1 -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1810183 Title: numpad on touchpad doesn't work in ASUS Zenbook 14 Status in Linux: New Status in linux package in Ubuntu:

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2020-09-22 Thread magellan
I would be happy to help with this tool but it is too complicated for me... We have to compile the software. If an executable would exist, it will be more simple and I will try to help. -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2020-09-18 Thread Pilot6
I got a link from kernel maintainers to a tool that can help to hack Windows i2c bus. https://github.com/bentiss/SimplePeripheralBusProbe If anyone wants to try to get the command, it will be very helpful. -- You received this bug notification because you are a member of Kernel Packages, which

Re: [Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2020-09-18 Thread ANDREA MATTANA
I had the same thought reading the last message, best wishes to everyone that will try to solve the problem that is sadly ignored by the official developers. Many thanks, If you need any kind of support providing logs of any other things please let me know, I will be happy to help. Cheers, Andrea

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2020-09-18 Thread magellan
Hello, This is the first encouraging message I read on the subject! Unfortunately, I don't have the skills to help you but I hope with all my heart that someone will be able to help you so that we can finally enjoy our touchpad with the numberpad function. -- You received this bug notification

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2020-09-17 Thread Pilot6
On my x412da the touchpad is detected as 3 input devices: ELAN1401:00 04F3:30F2 Touchpad ELAN1401:00 04F3:30F2 Mouse ELAN1401:00 04F3:30F2 Keyboard The first one works as a touchpad. The other two don't. The keyboard is the device we need to enable the numpad. It has the LED detected even with

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2020-09-03 Thread Francisco Soares
+1 same problem with me, asus UX425JA 5.4.0-45-generic #49-Ubuntu SMP Wed Aug 26 13:38:52 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1810183

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2020-07-27 Thread magellan
Same problem for me : Asus Vivobook M433I Model S433IA-EB372T with AMD Ryzen 7 47000 processor OS : Linux Mint 20 based on Ubuntu 20.04 with Kernel 5.8 RC6 How long will we have to wait for a solution ? Is anybody still working on the driver ? How can we help to solve this issue ? I've bought

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2020-06-28 Thread marqus
Same here: Linux VivoBook-ASUSLaptop-X421JQ-K433JQ 5.4.0-39-generic #43-Ubuntu SMP Fri Jun 19 10:28:31 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux Linux version 5.4.0-39-generic (buildd@lcy01-amd64-016) (gcc version 9.3.0 (Ubuntu 9.3.0-10ubuntu2)) #43-Ubuntu SMP Fri Jun 19 10:28:31 UTC 2020 Thanks!

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2020-06-19 Thread Jordi Puigdellívol
Same here w/ - UX431FA - Ubuntu 20.04 Thanks! -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1810183 Title: numpad on touchpad doesn't work in ASUS Zenbook 14 Status in Linux: New

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2020-05-12 Thread florian
Same here +1 -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1810183 Title: numpad on touchpad doesn't work in ASUS Zenbook 14 Status in Linux: New Status in linux package in Ubuntu:

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2020-05-02 Thread Czumpf Zoltán
Same here! czumpf@czumpf-laptop:~$ inxi -Fxzd System:Kernel: 5.6.7-050607-generic x86_64 bits: 64 compiler: gcc v: 9.3.0 Desktop: Gnome 3.36.1 Distro: Ubuntu 20.04 LTS (Focal Fossa) Machine: Type: Laptop System: ASUSTeK product: ZenBook UX431DA_UM431DA v: 1.0 serial:

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2020-04-25 Thread Adam Niedling
** Tags added: fecal -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1810183 Title: numpad on touchpad doesn't work in ASUS Zenbook 14 Status in Linux: New Status in linux package in

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2020-04-13 Thread Badaoui Mohamed
:~$ uname -a Linux laptop 5.4.0-4-amd64 #1 SMP Debian 5.4.19-1 (2020-02-13) x86_64 GNU/Linux :~$ cat /proc/version Linux version 5.4.0-4-amd64 (debian-ker...@lists.debian.org) (gcc version 9.2.1 20200203 (Debian 9.2.1-28)) #1 SMP Debian 5.4.19-1 (2020-02-13) -- You received this bug

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2020-04-13 Thread Badaoui Mohamed
sudo dmidecode -t bios -t system System Information Manufacturer: ASUSTeK COMPUTER INC. Product Name: ZenBook UX433FN_UX433FN Version: 1.0 SKU Number: Family: ZenBook BIOS Information Vendor: American Megatrends Inc. Version:

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2020-04-13 Thread Badaoui Mohamed
With some code modification, this last solution just above works on a UX433 BUT this does not allow to switch the numpad light ON :'( So very hard to use. -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu.

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2020-04-13 Thread Badaoui Mohamed
Even flashing Asus UX433 BIOS with last version had not effect on the numpad :-/ -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1810183 Title: numpad on touchpad doesn't work in ASUS

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2020-03-24 Thread Robbie
My reply seems to have been removed, but this worked for me. https://gitlab.com/Thraen/gx735_touchpad_numpad -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1810183 Title: numpad on

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2020-03-23 Thread Robbie
While not an actual driver...I found this utility on reddit...It's a python script that checks for the mode, and if you're in the num pad mode, it evaluates position of tap and sends numpad presses. Works for me! https://gitlab.com/Thraen/gx735_touchpad_numpad/ -- You received this bug

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2020-03-14 Thread Misa
+1 affected by this. Kernel: 5.5.9-050509-generic x86_64 bits: 64 Desktop: Cinnamon 4.4.5 Distro: Linux Mint 19.3 Tricia Type: Laptop System: ASUSTeK product: ZenBook UX434FAC_UX433FAC v: 1.0 serial: Mobo: ASUSTeK model: UX434FAC v: 1.0 serial: UEFI: American Megatrends v:

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2020-03-09 Thread Piotr Arłukowicz
Same problem here!!! inxi -M -S System:Host: haran Kernel: 5.3.0-40-generic x86_64 bits: 64 Desktop: KDE Plasma 5.16.5 Distro: Ubuntu 19.10 (Eoan Ermine) Machine: Type: Laptop System: ASUSTeK product: ZenBook Pro Duo UX581GV_UX581GV v: 1.0 serial: Mobo: ASUSTeK model: UX581GV v: 1.0

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2020-02-20 Thread Robbie
I've never written drivers before but if someone wants to work on this with me, I'd love to help out. -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1810183 Title: numpad on touchpad

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2020-02-20 Thread Ktux
+1 on ASUS Vivobook 14 R424D with kubuntu 18.04 or 19.04. This feature is usefull for 14 inch notebook. -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1810183 Title: numpad on touchpad

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2020-01-20 Thread Badaoui Mohamed
+1 (with kernel 5.4.0-2-amd64) No message with "dmesg" :'( -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1810183 Title: numpad on touchpad doesn't work in ASUS Zenbook 14 Status in

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2020-01-10 Thread Ákos Blázsik
Similar defiled experience on ASUS Zenbook 14 UM431D with Ubuntu 19.10. -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1810183 Title: numpad on touchpad doesn't work in ASUS Zenbook 14

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2019-12-20 Thread WOZNIAK
+1 (with kernel 5.3.0-24) No message with "dmesg" No input with "xinput test" Really waiting for solution as this is a really useful feature from ASUS notebook -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu.

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2019-12-10 Thread hvico
I have an ASUS Zephyrus-GX501GI and I am affected by this issue (inability turn on the numeric pad). -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1810183 Title: numpad on touchpad

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2019-12-10 Thread Agustina Osimani
+1 also affected by this. -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1810183 Title: numpad on touchpad doesn't work in ASUS Zenbook 14 Status in Linux: New Status in linux

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2019-12-07 Thread Di@bl@l
Hi everyone, same here with ubuntu 19.10 and with asus vivobook S14 X420F. -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1810183 Title: numpad on touchpad doesn't work in ASUS Zenbook

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2019-10-24 Thread Adam Niedling
Same with the ASUS Zenbook UX333FA on Ubuntu 19.10. -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1810183 Title: numpad on touchpad doesn't work in ASUS Zenbook 14 Status in Linux:

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2019-10-18 Thread Pedro Diez
Same here, How can we help to solve it? -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1810183 Title: numpad on touchpad doesn't work in ASUS Zenbook 14 Status in Linux: New Status

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2019-10-18 Thread costing
Same here, on Ubuntu 19.10 with kernel 5.3.0 $ lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description:Ubuntu 19.10 Release:19.10 Codename: eoan $ uname -a Linux zen 5.3.0-18-generic #19-Ubuntu SMP Tue Oct 8 20:14:06 UTC 2019 x86_64 x86_64 x86_64

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2019-10-01 Thread Robbie
Wanted to drop in that I have an asus ROG zephyrus and no touchpad functionality for me either. Anything I can do to help? -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1810183 Title:

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2019-09-26 Thread Szabó László
Same here, Linux szabolaszlo-ZenBook-UX433FN-UX433FN 5.0.0-29-generic #31~18.04.1-Ubuntu SMP Thu Sep 12 18:29:21 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu.

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2019-09-26 Thread ANDREA MATTANA
Same here, UX433FN $uname -a Linux lambda 5.1.15-050115-generic #201906250430 SMP Tue Jun 25 04:33:37 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu.

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2019-09-25 Thread Biljo Issac
** Also affects: linux Importance: Undecided Status: New -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1810183 Title: numpad on touchpad doesn't work in ASUS Zenbook 14

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2019-09-23 Thread Federico Aloi
Same here, UX433FN. Linux asus-ux433fn 5.0.0-27-generic #28~18.04.1-Ubuntu SMP Thu Aug 22 03:00:32 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu.

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2019-08-21 Thread Rokas
Same with UX433FA and Ubuntu 18.04 -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1810183 Title: numpad on touchpad doesn't work in ASUS Zenbook 14 Status in linux package in Ubuntu:

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2019-07-24 Thread Brad Figg
** Tags added: cscc -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1810183 Title: numpad on touchpad doesn't work in ASUS Zenbook 14 Status in linux package in Ubuntu: Confirmed Bug

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2019-07-17 Thread Badaoui Mohamed
+1 Same issue with my ASUS ZenBook UX433F - Debian 10 - Kernel 5.2.0 - numpad not working. $ uname -a Linux laptop 5.2.0 -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1810183 Title:

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2019-07-17 Thread Luis Felipe Quiñones Nieto
+1 Same issue with my ASUS ZenBook UX433FN - Ubuntu 19.04 - Kernel 5.0.0-20-generic - numpad not working. This is one of the coolest features of this laptop and is not woking in Ubuntu. With Windows it works properly. -- You received this bug notification because you are a member of Kernel

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2019-07-09 Thread Kai-Heng Feng
Oh please run evtest on "AT Translated Set 2 keyboard", "Asus WMI hotkeys" or "00:16:94:31:EF:23". -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1810183 Title: numpad on touchpad

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2019-06-15 Thread Carlos Higa
+1 Using Zenbook UX433FN, Ubuntu 18.04, kernel 4.20.6-042006-generic. -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1810183 Title: numpad on touchpad doesn't work in ASUS Zenbook 14

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2019-06-14 Thread egcmi
+1 also affected by this. Kubuntu 18.04 kernel 5.0.0-05-generic on Asus ZenBook UX433FN -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1810183 Title: numpad on touchpad doesn't work

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2019-06-05 Thread Nikita Rushmanov
+1 also affected by this. I have an ASUS ROG Zephyrus S which also had a touchpad/numpad. I'm on Kubuntu 19.04. Kernel 5.0.0-16-generic. -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu.

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2019-05-17 Thread Dustin Holloway
Not explicity for the numpad. It does, however, show entries when changing the keyboard backlight as well as the monitor backlight. -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1810183

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2019-05-17 Thread Kai-Heng Feng
Does acpi_listen show anything? -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1810183 Title: numpad on touchpad doesn't work in ASUS Zenbook 14 Status in linux package in Ubuntu:

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2019-05-17 Thread Dustin Holloway
+1 also, affected by this issue -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1810183 Title: numpad on touchpad doesn't work in ASUS Zenbook 14 Status in linux package in Ubuntu:

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2019-04-27 Thread Fran Diéguez
dmesg reports nothing when pushing the button to activate the button. checking the evtest output for the touchpad I cant see anything interesting $ sudo evtest No device specified, trying to scan all of /dev/input/event* Available devices: /dev/input/event0: Lid Switch /dev/input/event1:

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2019-04-14 Thread BRUNET Delphine
Hello, I buy almost same asus Zenbook UX433FN and I have the same problem : numpad doesn't work. I didn't find any driver running on ubuntu... My config is ubuntu 18.04.2 LTS Linux version 4.19.11-041911-generic (kernel@kathleen) (gcc version 8.2.0 (Ubuntu 8.2.0-12ubuntu1)) #201812191931 SMP

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2019-04-08 Thread Kai-Heng Feng
Please attach dmesg after the hotkey gets pressed. -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1810183 Title: numpad on touchpad doesn't work in ASUS Zenbook 14 Status in linux

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2019-04-07 Thread Po-Hsu Lin
** Changed in: linux (Ubuntu) Status: Expired => Confirmed -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1810183 Title: numpad on touchpad doesn't work in ASUS Zenbook 14

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2019-03-08 Thread Launchpad Bug Tracker
[Expired for linux (Ubuntu) because there has been no activity for 60 days.] ** Changed in: linux (Ubuntu) Status: Incomplete => Expired -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu.

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2019-01-06 Thread Kai-Heng Feng
Seems like there's no driver support yet for this new feature. -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1810183 Title: numpad on touchpad doesn't work in ASUS Zenbook 14 Status

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2019-01-04 Thread Steve Bicko
"kernel-bug-exists-upstream" Tested the latest kernel (v4.20) as suggested by Kai-Heng but still it doesn't work! -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1810183 Title: numpad

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2019-01-04 Thread Warren Baird
I just got the same laptop today, and am having the same problem (although I'm running Linux Mint 19.1 instead of Ubuntu directly). I'm still getting things set up, but will get the 4.20 kernel installed as soon as I can and try this... -- You received this bug notification because you are a

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2019-01-03 Thread Kai-Heng Feng
Would it be possible for you to test the latest upstream kernel? Refer to https://wiki.ubuntu.com/KernelMainlineBuilds . Please test the latest v4.20 kernel[0]. If this bug is fixed in the mainline kernel, please add the following tag 'kernel-fixed-upstream'. If the mainline kernel does not fix

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2019-01-03 Thread Steve Bicko
apport information ** Description changed: I have Asus Zenbook 14 UX433FA which I have installed Ubuntu 18.10 alongside windows 10. The numeric keypads are within the touchpad and are supposed to be turned on by a button on the touchpad. This works well in Windows but doesn't work in

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2019-01-03 Thread Steve Bicko
apport information ** Tags added: apport-collected cosmic ** Description changed: I have Asus Zenbook 14 UX433FA which I have installed Ubuntu 18.10 alongside windows 10. The numeric keypads are within the touchpad and are supposed to be turned on by a button on the touchpad. This works

[Kernel-packages] [Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14

2019-01-03 Thread Paul White
** Package changed: ubuntu => linux (Ubuntu) -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1810183 Title: numpad on touchpad doesn't work in ASUS Zenbook 14 Status in linux package in

<    1   2   3