-
-
Notifications
You must be signed in to change notification settings - Fork 29
[BUG] Installing Driver on Blade 2016 1060 breaks touchpad button functionality #43
Comments
This is insane. I've never heard of this happening?....And even have guards in my driver to prevent this.... can you post the output of
and
|
❯ dmesg | grep "laptop|razer" ❯ lsusb Thanks for answering this issue and for making the driver. |
Interesting. Firstly looks like my driver is misidentifying your laptop as a QHD Blade.... Secondly, i cannot see why it would cause your trackpad buttons to not work...can you do me a favour: Can you modify lines 144 on driver/src/razer_common.c from this: dev_info(&intf->dev, "Loading module\n");
if (intf->cur_altsetting->desc.bInterfaceProtocol != USB_INTERFACE_PROTOCOL_KEYBOARD) {
// Found the mouse - unload!
return -ENODEV;
} to this: dev_info(&intf->dev, "Loading module\n");
if (intf->cur_altsetting->desc.bInterfaceProtocol != USB_INTERFACE_PROTOCOL_KEYBOARD) {
// Found the mouse - unload!
hid_err(hdev, "Skipping mouse bind\n");
return -ENODEV;
} Then, from the driver directory run
Then, check if "Skipping mouse bind" is present within dmesg logs |
I received some errors and warnings when running make && sudo./test_module.sh. Compiling kernel modules |
just warnings....driver should have compiled |
I get this error when running Also I don't know if this is related but the backlights on caps, L shift and L ctrl are all off, while the rest of the keys are correctly set to the color I choose in the cli tool. |
dmesg | grep "laptop|razer" [ 1.906264] razercontrol: loading out-of-tree module taints kernel. |
Ok this is strange then. So I can clearly see the driver isn't binding to your touchpad....so no clue as to why your touchpad isn't working... As to why your ctrl keys are off, that shouldn't be possible! I suspect the older blades work differently.... Do you have access to windows on the laptop? - either in a VM or physically |
Yes I still have windows on the laptop. I've also installed wireshark but I have no idea what I'm looking for. |
hmm OK. I shall draft up a markdown doc on how to packet capture |
Thanks. |
Hi, I'm also having an identical problem. I'm on the Blade 2017 1060. Was there ever a solution for this? Thanks, and thank you for all of the work you've done to make these laptops actually useful on Linux. |
same problem here with razer blade 2016 on ubuntu |
Describe the bug
A clear way of describing how the driver is misbehaving
The buttons on the touchpad are no longer recognized by the OS.
To Reproduce
Steps to reproduce the behavior:
Follow steps to build driver and install it in the kernel. Restart computer and the touchpad buttons do not work.
Expected behavior
What should the driver do?
not break the touchpad buttons
Optional but useful, packet capture from synapse
If the driver is not doing as it should, it would be useful to provide a packet capture of you doing the same event in razer synapse. IE: increasing the fan RPM to 5000,
The text was updated successfully, but these errors were encountered: