darkera13
Members-
Posts
25 -
Joined
-
Last visited
-
Days Won
1
Content Type
Profiles
Articles, News and Tips
Forums
Everything posted by darkera13
-
EAPD/Jack sense Fix (No sound and jack sense issue after sleep)
darkera13 replied to EMlyDinEsH's topic in AppleHDA
Can you share your code? I want try to help. -
I got a solution for max brightness at boot (dont need display sleep) for HD4000 by patch AppleInterFramebufferCarpri.kext (HD3000 is AppleIntelSNBGraphicsFB). Using HexEdit open AppleInterFramebufferCarpri.kext/Contents/MacOS/AppleInterFramebufferCarpri and do follow: 10.9 Search: 00000040 10070000 1007 Replace: 00000040 12130000 1213 10.8 Search: 00000020 10070000 1007 Replace: 00000020 12130000 1213 Clover patch 10.9 <dict> <key>Comment</key> <string>Max Brightness</string> <key>Find</key> <data> AAAAQBAHAAAQBw== </data> <key>Name</key> <string>AppleIntelFramebufferCapri</string> <key>Replace</key> <data> AAAAQBITAAASEw== </data> </dict> P/S: I dont remember where i get this information. Sorry to the author.
-
EAPD/Jack sense Fix (No sound and jack sense issue after sleep)
darkera13 replied to EMlyDinEsH's topic in AppleHDA
Play a silence mp3 file, you think? -
Fn HotKey and ALS sensor driver for Asus Notebooks
darkera13 replied to EMlyDinEsH's topic in Miscellaneous
LID sleep & Fn + F7 working with vanilla ACPIxxx kext of 10.9 without any patch. dsdt.aml.zip -
Fn HotKey and ALS sensor driver for Asus Notebooks
darkera13 replied to EMlyDinEsH's topic in Miscellaneous
But my keyboard backlight always off when lid open, work fine if wake by power button. I dont want use Fn + F4 to turn it on . Update: After check the EC0W method, i find out the way to make it work as it should be. Now when open lid, the keyboard backlight accurately restore the state before sleep. Thanks for your suggestion. Search: WRAM (0x044B, KBBR) Repace: If (LGreater (KBBR, Zero)) { WRAM (0x044B, KBBR) } Else { WRAM (0x044B, KLDT) } -
Fn HotKey and ALS sensor driver for Asus Notebooks
darkera13 replied to EMlyDinEsH's topic in Miscellaneous
Fix keyboard backlight not auto wake when wake on LID. Must apply this patch first https://osxlatitude.com/index.php?/topic/1968-fn-hotkey-driver-for-asus-notebooks/?p=23959 Add to _LID Method: If (LEqual (Local0, One)) { ^^ATKD.SKBL (0x03) } Like this: Method (_LID, 0, NotSerialized) // _LID: Lid Status { Store (One, Local0) Store (^^PCI0.LPCB.EC0.RPIN (0x46), Local0) If (LEqual (Local0, Ones)) { Store (One, Local0) } If (And (VGAF, One)) { Store (One, ^^PCI0.IGPU.CLID) } If (LEqual (Local0, One)) { ^^ATKD.SKBL (0x03) } Return (Local0) } -
Fn HotKey and ALS sensor driver for Asus Notebooks
darkera13 replied to EMlyDinEsH's topic in Miscellaneous
Update: Lid sleep & Fn + F7 working fine without patching on 10.9 Final. Tested on UX31A Zenbook. -
Of course, EAPD added but still not working.
-
Try again. If still not work, I think we should wait for the help of EMlyDinEsH. AppleHDA.kext.zip
-
Try again. PS: HDMI only show when you connected HDMI device. AppleHDA.kext.zip
-
So your Bluetooth may be AR3011. Try v1.5, it work with my Combo AR9285+AR3011.
-
Please try the attachment. ALC275 10.8.5.zip
-
Fix for no Audio issue after Sleep in Realtek codecs
darkera13 replied to EMlyDinEsH's topic in The Archive
Path: IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/HDEF@1B Speak node: 0x14 (exactly) I try to change path on startUpdate function and rebuild but no luck. 10.8.4 work great, 10.8.5 and 10.9 not work. PS: Check Console.log has "EAPD: Enabled Successfully" but still not work. -
Fix for no Audio issue after Sleep in Realtek codecs
darkera13 replied to EMlyDinEsH's topic in The Archive
Just tried, but not work with on my Asus UX31A. My headphone work great after wake with no need patch IOAudioFamily, but Speaker not work even after reload AppleHDA.kext. -
Fix for no Audio issue after Sleep in Realtek codecs
darkera13 replied to EMlyDinEsH's topic in The Archive
Hi, can you make a version of 10.9 GM? Thanks! -
ELAN, FocalTech and Synaptics (Smart Touchpad) Driver
darkera13 replied to EMlyDinEsH's topic in Smart Touchpad
I dont't try with Elan's previous vesion, but try with ApplePS2Controller before change to Elan, it worked with -s (can use keyboard). I think Elan must load before terminal appear (like ApplePS2Controller), but dont know how to do. I attach my boot log. kernel.log.zip -
ELAN, FocalTech and Synaptics (Smart Touchpad) Driver
darkera13 replied to EMlyDinEsH's topic in Smart Touchpad
I think v.2.7.5 has a bug, it not work if boot with -s (both UseKernelCache = Yes/No) -
Kext to disable Intel Turbo Boost on Battery Power
darkera13 replied to qwerty12's topic in Kernel Extensions
Work great on Zenbook Prime UX31A (10.8.4). Thank for hard work. -
Display backlight Driver for Asus Notebooks
darkera13 replied to EMlyDinEsH's topic in Miscellaneous
Kernel Panic on Zenbook Prime (OSX 10.8.4) both version. Can you fix it? Thanks a lot. -
Fn HotKey and ALS sensor driver for Asus Notebooks
darkera13 replied to EMlyDinEsH's topic in Miscellaneous
Can you share the battery DSDT? -
Fix for no Audio issue after Sleep in Realtek codecs
darkera13 replied to EMlyDinEsH's topic in The Archive
Work great on Zenbook Prime UX31A. Thank EMlyDinEsH, you are my hero! -
Fn HotKey and ALS sensor driver for Asus Notebooks
darkera13 replied to EMlyDinEsH's topic in Miscellaneous
Sorry, my mistake. My DSDT is wrong, i try patch new DSDT and it work like a charm. Thank you very much! -
Fn HotKey and ALS sensor driver for Asus Notebooks
darkera13 replied to EMlyDinEsH's topic in Miscellaneous
Thank you! -
Fn HotKey and ALS sensor driver for Asus Notebooks
darkera13 replied to EMlyDinEsH's topic in Miscellaneous
Yup, DSDT edited. Nothing work ( Here is my dsdt https://dl.dropbox.com/u/70253928/dsdt.aml. I thinks nothing wrong, but nothing work except F7 (screen off) always working. -
Fn HotKey and ALS sensor driver for Asus Notebooks
darkera13 replied to EMlyDinEsH's topic in Miscellaneous
Not work on my Zenbook Prime UX31A!