mirror of
https://github.com/tylernguyen/x1c6-hackintosh.git
synced 2025-02-05 09:33:13 -06:00
Added working fn_keys patch and updated README
This commit is contained in:
parent
5c6754a820
commit
ba869be5fd
2 changed files with 35 additions and 0 deletions
34
ACPI/patch-files/3_Fn_Keys.txt
Executable file
34
ACPI/patch-files/3_Fn_Keys.txt
Executable file
|
@ -0,0 +1,34 @@
|
|||
# _Q6A (F4 key -> F17) Microphone Mute key
|
||||
into method label _Q6A replace_content
|
||||
begin
|
||||
Notify(\_SB.PCI0.LPCB.PS2K, 0x0168)\n
|
||||
Notify(\_SB.PCI0.LPCB.PS2K, 0x01e8)\n
|
||||
end;
|
||||
|
||||
# _Q15 (F5 key) Brightness down key
|
||||
into method label _Q15 replace_content
|
||||
begin
|
||||
Notify(\_SB.PCI0.LPCB.PS2K, 0x0205)\n
|
||||
Notify(\_SB.PCI0.LPCB.PS2K, 0x0285)\n
|
||||
end;
|
||||
|
||||
# _Q14 (F6 key) Brightness up key
|
||||
into method label _Q14 replace_content
|
||||
begin
|
||||
Notify(\_SB.PCI0.LPCB.PS2K, 0x0206)\n
|
||||
Notify(\_SB.PCI0.LPCB.PS2K, 0x0286)\n
|
||||
end;
|
||||
|
||||
# _Q64 (F8 key -> F18 ) Wireless disable key
|
||||
into method label _Q64 replace_content
|
||||
begin
|
||||
Notify(\_SB.PCI0.LPCB.PS2K, 0x0169)\n
|
||||
Notify(\_SB.PCI0.LPCB.PS2K, 0x01e9)\n
|
||||
end;
|
||||
|
||||
# _Q66 (F9 key -> F19 ) Settings key
|
||||
into method label _Q66 replace_content
|
||||
begin
|
||||
Notify(\_SB.PCI0.LPCB.PS2K, 0x016a)\n
|
||||
Notify(\_SB.PCI0.LPCB.PS2K, 0x01ea)\n
|
||||
#end;
|
|
@ -11,6 +11,7 @@ Hand-off is unstable - not needed
|
|||
USB Power Property Injection - unsure of real values
|
||||
Battery life optimization - currently average 6-7 hours of regular usage
|
||||
With the exeption of volume and brightness, function keys do not properly work - DSDT patches and testing in progress
|
||||
Keymapping is not perfect, need to do a complete ADB map
|
||||
Performance optimization
|
||||
|
||||
## Hardware Replacements:
|
||||
|
|
Loading…
Reference in a new issue