Contribute
Register

[solved] Brightness keys not working on 10.13.6

Status
Not open for further replies.
Ah yeah , I got confused reading the guide
 
I patched this , but nothing happens :
into method label _Q0E replace_content
begin
// Brightness Down\n
Notify(\_SB.PCI0.LPCB.PS2M, 0x0205)\n
Notify(\_SB.PCI0.LPCB.PS2M, 0x0285)\n
end;
into method label _Q0F replace_content
begin // Brightness Up\n
Notify(\_SB.PCI0.LPCB.PS2M, 0x0206)\n
Notify(\_SB.PCI0.LPCB.PS2M, 0x0286)\n
end;
 
I patched this , but nothing happens :
into method label _Q0E replace_content
begin
// Brightness Down\n
Notify(\_SB.PCI0.LPCB.PS2M, 0x0205)\n
Notify(\_SB.PCI0.LPCB.PS2M, 0x0285)\n
end;
into method label _Q0F replace_content
begin // Brightness Up\n
Notify(\_SB.PCI0.LPCB.PS2M, 0x0206)\n
Notify(\_SB.PCI0.LPCB.PS2M, 0x0286)\n
end;
No "Problem Reporting" files attached.
Read FAQ, "Problem Reporting" again. Carefully. Attach all requested files/output.
https://www.tonymacx86.com/threads/faq-read-first-laptop-frequent-questions.164990/
Use the gen_debug.sh tool mentioned in the FAQ, that way it is less likely you'll omit something.
 
Files attached
 

Attachments

  • debug_28391.zip
    3.8 MB · Views: 53
Files attached

You're notifying the wrong object.
As per brightness guide, you should be sending the Notify to the keyboard device, not the mouse device.
You wrote PS2M instead of PS2K.
 
Changed it to PS2K but still nothing
 

Attachments

  • debug_6455.zip
    3.8 MB · Views: 69
Changed it to PS2K but still nothing

Your notify codes are wrong for ApplePS2SmartTouchPad.kext.
Read the guide carefully. It has correct codes for that kext.

Note: You should not mix VoodooPS2Controller.kext and ApplePS2SmartTouchPad.kext. Your kextcache proves you installed both,... which is wrong.
 
So I installed ACPI keyboard , applied the patch , but Fn brightness down sets the brightness up and Fn brightness up sets the brightness up too but also sets the volume down
 

Attachments

  • debug_5575.zip
    3.9 MB · Views: 51
Problem solved , used the second patch
 
Status
Not open for further replies.
Back
Top