Jump to content

onemanosx

Members
  • Posts

    1,541
  • Joined

  • Last visited

Everything posted by onemanosx

  1. [ref]Pako Soto[/ref], run http://Olarila.com/files/Utils/RunMe.app.zip and post in DSDT request forum. https://Olarila.com/forum/viewtopic.php?p=70910#p70910 Come back here, if you have other issues to solve. Congrats!
  2. 1. delete voodoohda 2. download applealc kext 3. inject correct layout id for codec alc255 via clover https://github.com/acidanthera/AppleALC/wiki/Supported-codecs *Note: AppleALC will not work if you have modded AppleHDA or installed 3rd party audio kexts in S/L/E or L/E E5-574G-DSDT.aml.zip Patch includes battery fix > Install ACPI Battery kext.
  3. [ref]asurarox01[/ref], hence you will need to patch your own DSDT. I hope now you understand the importance of DSDT patching for individual system. It should be different because you did not include acpibattery kext in previous compile. Your gestures are probably working because you used ApplePS2SmartTouchPad.kext
  4. If you are using some random DSDT you found from another user, it is bound to fail. Without custom DSDT, battery indicator will never work. No new send_me file.
  5. You did not have acpi battery kext Download kext here https://bitbucket.org/RehabMan/os-x-acpi-battery-driver
  6. [ref]asurarox01[/ref], upload new send_me file.
  7. Re-do again and make sure you erase SSD with GUID partition and choose HSPlus/apfs as file system. Also check that you choose the correct SSD or partition for OS installation. By now, I assume you are trying High Sierra since Mojave does not support the GPU that you are having. Also check that BIOS is set at AHCI. Note: Do note make multiple posts in other thread with your issues.
  8. This is what you should choose on reboot Added in 11 seconds: This is what you should choose on reboot
  9. Your clover did not contain patched DSDT
  10. On second reboot, look what boot options are there at the clover boot screen.
  11. [ref]JeffB1960[/ref], You should download the HD3000 zip file, and install it in S/L/E with kext utility or similar and rebuild cache and permission. In Clover, however, you will need to inject the ig platform for your working HD3000. Read here for more details https://www.insanelymac.com/forum/topic/334899-intel-framebuffer-patching-using-whatevergreen/ Scroll to HD3000 and as suggested the ig platform id is Laptop: 0x00010000 (default). I am not too familiar with HD3000 but the basics are laid out for you to try. Good luck! Additional info: HD3000 works well in Sierra.
  12. [ref]asurarox01[/ref], you cant use another user's EFI although from same laptop build.
  13. [ref]OzemirElion[/ref], https://Olarila.com/forum/viewtopic.php?p=70839#p70839
  14. [ref]OzemirElion[/ref], see if this fixes the verbose messages. The messages should not cause any issues, though. DSDT.aml.zip PS: Also remember the patches Maldon posted above.
  15. [ref]OzemirElion[/ref], Awesome! Thanks to [ref]MaLd0n[/ref] for the tip. Upload new send_me file to check on something. Added in 7 minutes 28 seconds: [ref]OzemirElion[/ref], for brightness hotkeys to work, you need to do this yourself. its a personal touch. https://www.insanelymac.com/forum/topic/305030-guide-how-to-fix-brightness-hotkeys-in-dsdt/
  16. [ref]OzemirElion[/ref], Lets try this now for your brightness slider. Is your track pad working? DSDT.aml.zip
  17. [ref]asurarox01[/ref], Use Maldon's files.
  18. [ref]OzemirElion[/ref], Try this, and upload new send_me files. DSDT.aml.zip
  19. [ref]asurarox01[/ref], See Mald0n's post below
  20. [ref]OzemirElion[/ref], Use clover folder and boot. CLOVER.zip Upload new send me files.
  21. [ref]OzemirElion[/ref], repair permissions and reboot.
  22. Check your brightness slider. I think its working now.
  23. [ref]OzemirElion[/ref], Place in Clover/ACPI/Patched. Reboot and upload new Send_me files. DSDT.aml.zip Added in 2 minutes 36 seconds: If you read the guide , you will understand https://bitbucket.org/RehabMan/os-x-acpi-battery-driver
  24. For the records this is the script for working battery specific for your laptop model #16-bit registers into device label EC0 code_regex XIF1,\s+16, replace_matched begin IF10,8,IF11,8, end; into device label EC0 code_regex XIF2,\s+16, replace_matched begin IF20,8,IF21,8, end; into device label EC0 code_regex XIF3,\s+16, replace_matched begin IF30,8,IF31,8, end; into device label EC0 code_regex XIF4,\s+16, replace_matched begin IF40,8,IF41,8, end; into device label EC0 code_regex XIF7,\s+16, replace_matched begin IF70,8,IF71,8, end; into device label EC0 code_regex XST0,\s+16, replace_matched begin TSX0,8,TSX1,8, end; into device label EC0 code_regex XST1,\s+16, replace_matched begin ST10,8,ST11,8, end; into device label EC0 code_regex XST2,\s+16, replace_matched begin ST20,8,ST21,8, end; into device label EC0 code_regex XST3,\s+16, replace_matched begin ST30,8,ST31,8, end; #Create B1B2 Method into definitionblock code_regex . insert begin Method (B1B2, 2, NotSerialized) { Return(Or(Arg0, ShiftLeft(Arg1, 8))) }\n end; Since, I have had problem accessing code_regex for "16-Bit Method Fix", manual patching to the device names is implemented. #Fix 16-bit Method (manual patching) Replace \XIF1 with (B1B2(^^PCI0.LPCB.EC0.IF10,^^PCI0.LPCB.EC0.IF11) Replace \XIF2 with (B1B2(^^PCI0.LPCB.EC0.IF20,^^PCI0.LPCB.EC0.IF21) Replace \XIF3 with (B1B2(^^PCI0.LPCB.EC0.IF30,^^PCI0.LPCB.EC0.IF31) Replace \XIF4 with (B1B2(^^PCI0.LPCB.EC0.IF40,^^PCI0.LPCB.EC0.IF41) Replace \XIF7 with (B1B2(^^PCI0.LPCB.EC0.IF70,^^PCI0.LPCB.EC0.IF71) Replace \XST0 with (B1B2(^^PCI0.LPCB.EC0.TSX0,^^PCI0.LPCB.EC0.TSX1) Replace \XST1 with (B1B2(^^PCI0.LPCB.EC0.ST10,^^PCI0.LPCB.EC0.ST11) Replace \XST2 with (B1B2(^^PCI0.LPCB.EC0.ST20,^^PCI0.LPCB.EC0.ST21) Replace \XST3 with (B1B2(^^PCI0.LPCB.EC0.ST30,^^PCI0.LPCB.EC0.ST31)
×
×
  • Create New...