OzemirElion Posted December 29, 2018 Share Posted December 29, 2018 Hey guys! I have a Notebook Positivo Motion I34500AI (S15SL) MacOS 10.13.6 High Sierra Intel Core i3-6006U Graphics Intel HD 520 I need a lot of help to do the DSDT Patch. My goal is the Brightness Slider/Controller by Fn Keys and the Battery Status Indicator. It has been suggested to me the sites https://www.insanelymac.com/forum/topic/305030-guide-how-to-fix-brightness-hotkeys-in-dsdt/ and https://bitbucket.org/RehabMan/os-x-acpi-battery-driver but I could not fully understand. Send me MacBook-Pro-de-Ozemir.zip Link to comment Share on other sites More sharing options...
onemanosx Posted December 29, 2018 Share Posted December 29, 2018 [ref]OzemirElion[/ref], Place in Clover/ACPI/Patched. Reboot and upload new Send_me files. DSDT.aml.zip Donate Gitter Chat Acer Aspire V15 Nitro- Black Edition VN7-592G/HM170 Chipset Intel i7-6700HQ, 8GB RAM (UEFI Clover Catalina) MSI B360 Gaming Arctic Intel i5-8600 16GB RAM Asus Radeon RX580 8GB (UEFI Clover Catalina) Link to comment Share on other sites More sharing options...
OzemirElion Posted December 29, 2018 Author Share Posted December 29, 2018 [ref]OzemirElion[/ref], Place in Clover/ACPI/Patched. Reboot and upload new Send_me files. DSDT.aml.zip The battery status indicator is now working ... Send me 2 MacBook-Pro-de-Ozemir.zip Link to comment Share on other sites More sharing options...
onemanosx Posted December 29, 2018 Share Posted December 29, 2018 (edited) The battery status indicator is now working ... 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) Edited December 29, 2018 by Guest Donate Gitter Chat Acer Aspire V15 Nitro- Black Edition VN7-592G/HM170 Chipset Intel i7-6700HQ, 8GB RAM (UEFI Clover Catalina) MSI B360 Gaming Arctic Intel i5-8600 16GB RAM Asus Radeon RX580 8GB (UEFI Clover Catalina) Link to comment Share on other sites More sharing options...
OzemirElion Posted December 29, 2018 Author Share Posted December 29, 2018 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) Screenshot 2018-12-29 at 9.24.04 PM.png What does that mean? Link to comment Share on other sites More sharing options...
onemanosx Posted December 29, 2018 Share Posted December 29, 2018 [ref]OzemirElion[/ref], Place in Clover/ACPI/Patched. Reboot and upload new Send_me files. DSDT.aml.zip Added in 2 minutes 36 seconds: What does that mean? If you read the guide , you will understand https://bitbucket.org/RehabMan/os-x-acpi-battery-driver Donate Gitter Chat Acer Aspire V15 Nitro- Black Edition VN7-592G/HM170 Chipset Intel i7-6700HQ, 8GB RAM (UEFI Clover Catalina) MSI B360 Gaming Arctic Intel i5-8600 16GB RAM Asus Radeon RX580 8GB (UEFI Clover Catalina) Link to comment Share on other sites More sharing options...
OzemirElion Posted December 29, 2018 Author Share Posted December 29, 2018 [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 Here it is! Send me 3 MacBook-Pro-de-Ozemir.zip Link to comment Share on other sites More sharing options...
onemanosx Posted December 29, 2018 Share Posted December 29, 2018 Here it is! Check your brightness slider. I think its working now. Donate Gitter Chat Acer Aspire V15 Nitro- Black Edition VN7-592G/HM170 Chipset Intel i7-6700HQ, 8GB RAM (UEFI Clover Catalina) MSI B360 Gaming Arctic Intel i5-8600 16GB RAM Asus Radeon RX580 8GB (UEFI Clover Catalina) Link to comment Share on other sites More sharing options...
OzemirElion Posted December 29, 2018 Author Share Posted December 29, 2018 Check your brightness slider. I think its working now. Screenshot 2018-12-29 at 10.03.15 PM.png Unfortunately it is not showing up yet or working Link to comment Share on other sites More sharing options...
onemanosx Posted December 29, 2018 Share Posted December 29, 2018 [ref]OzemirElion[/ref], repair permissions and reboot. Donate Gitter Chat Acer Aspire V15 Nitro- Black Edition VN7-592G/HM170 Chipset Intel i7-6700HQ, 8GB RAM (UEFI Clover Catalina) MSI B360 Gaming Arctic Intel i5-8600 16GB RAM Asus Radeon RX580 8GB (UEFI Clover Catalina) Link to comment Share on other sites More sharing options...
OzemirElion Posted December 29, 2018 Author Share Posted December 29, 2018 [ref]OzemirElion[/ref], repair permissions and reboot. I repaired it with the Disk Utility App & Kext Utility, but no success with the Brightness Slider. Anything... Link to comment Share on other sites More sharing options...
onemanosx Posted December 29, 2018 Share Posted December 29, 2018 [ref]OzemirElion[/ref], Use clover folder and boot. CLOVER.zip Upload new send me files. Donate Gitter Chat Acer Aspire V15 Nitro- Black Edition VN7-592G/HM170 Chipset Intel i7-6700HQ, 8GB RAM (UEFI Clover Catalina) MSI B360 Gaming Arctic Intel i5-8600 16GB RAM Asus Radeon RX580 8GB (UEFI Clover Catalina) Link to comment Share on other sites More sharing options...
OzemirElion Posted December 29, 2018 Author Share Posted December 29, 2018 [ref]OzemirElion[/ref], Use clover folder and boot. CLOVER.zip Upload new send me files. Anything Send me 4 MacBook-Pro-de-Ozemir.zip Link to comment Share on other sites More sharing options...
onemanosx Posted December 29, 2018 Share Posted December 29, 2018 [ref]OzemirElion[/ref], Try this, and upload new send_me files. DSDT.aml.zip Donate Gitter Chat Acer Aspire V15 Nitro- Black Edition VN7-592G/HM170 Chipset Intel i7-6700HQ, 8GB RAM (UEFI Clover Catalina) MSI B360 Gaming Arctic Intel i5-8600 16GB RAM Asus Radeon RX580 8GB (UEFI Clover Catalina) Link to comment Share on other sites More sharing options...
Administrators MaLd0n Posted December 29, 2018 Administrators Share Posted December 29, 2018 [ref]OzemirElion[/ref], Try CLOVER.zip -Guides and Tutorials HERE -Hackintosh Tutorial Database - HERE -The largest EFI folder collection for Hackintosh HERE -Support Olarila Vanilla Hackintosh by making a donation HERE -Professional Consulting for macOS Hackintosh since 2006 HERE Link to comment Share on other sites More sharing options...
OzemirElion Posted December 29, 2018 Author Share Posted December 29, 2018 [ref]OzemirElion[/ref], Try this, and upload new send_me files. DSDT.aml.zip So... Anything... Send me 5 MacBook-Pro-de-Ozemir.zip Link to comment Share on other sites More sharing options...
onemanosx Posted December 29, 2018 Share Posted December 29, 2018 [ref]OzemirElion[/ref], Lets try this now for your brightness slider. Is your track pad working? DSDT.aml.zip Donate Gitter Chat Acer Aspire V15 Nitro- Black Edition VN7-592G/HM170 Chipset Intel i7-6700HQ, 8GB RAM (UEFI Clover Catalina) MSI B360 Gaming Arctic Intel i5-8600 16GB RAM Asus Radeon RX580 8GB (UEFI Clover Catalina) Link to comment Share on other sites More sharing options...
OzemirElion Posted December 29, 2018 Author Share Posted December 29, 2018 [ref]OzemirElion[/ref], Try CLOVER.zip onemanosx & MaLd0n, This activated the Brightness Slider! Link to comment Share on other sites More sharing options...
onemanosx Posted December 29, 2018 Share Posted December 29, 2018 [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/ Donate Gitter Chat Acer Aspire V15 Nitro- Black Edition VN7-592G/HM170 Chipset Intel i7-6700HQ, 8GB RAM (UEFI Clover Catalina) MSI B360 Gaming Arctic Intel i5-8600 16GB RAM Asus Radeon RX580 8GB (UEFI Clover Catalina) Link to comment Share on other sites More sharing options...
OzemirElion Posted December 29, 2018 Author Share Posted December 29, 2018 onemanosx, here is the Send Me... Ps.: I saw this Warning in ACPIBatteryManager in the Boot [see picture]. Does that mean a problem? Send me 6 MacBook-Pro-de-Ozemir.zip Link to comment Share on other sites More sharing options...
Administrators MaLd0n Posted December 29, 2018 Administrators Share Posted December 29, 2018 [ref]OzemirElion[/ref], one more, use this patch too in config.plist change EC0 to EC 4543305f 45435f5f disable hibernation https://Olarila.com/files/Utils/disablehibernate.command.zip master disable master-disable.command.zip repair permission https://Olarila.com/files/Utils/RepairPermissions.zip -Guides and Tutorials HERE -Hackintosh Tutorial Database - HERE -The largest EFI folder collection for Hackintosh HERE -Support Olarila Vanilla Hackintosh by making a donation HERE -Professional Consulting for macOS Hackintosh since 2006 HERE Link to comment Share on other sites More sharing options...
onemanosx Posted December 29, 2018 Share Posted December 29, 2018 (edited) [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. Edited December 29, 2018 by Guest Donate Gitter Chat Acer Aspire V15 Nitro- Black Edition VN7-592G/HM170 Chipset Intel i7-6700HQ, 8GB RAM (UEFI Clover Catalina) MSI B360 Gaming Arctic Intel i5-8600 16GB RAM Asus Radeon RX580 8GB (UEFI Clover Catalina) Link to comment Share on other sites More sharing options...
OzemirElion Posted December 29, 2018 Author Share Posted December 29, 2018 A bug: I have now connected the Notebook to the Charger and it is loading and increasing the Percentage, but the "Charging" icon is no longer appearing. Adicionado a 2 minutos 7 segundos: [ref]OzemirElion[/ref], does it only happen with new DSDT with working brightness slider? Yep! Link to comment Share on other sites More sharing options...
onemanosx Posted December 29, 2018 Share Posted December 29, 2018 [ref]OzemirElion[/ref], https://Olarila.com/forum/viewtopic.php?p=70839#p70839 Donate Gitter Chat Acer Aspire V15 Nitro- Black Edition VN7-592G/HM170 Chipset Intel i7-6700HQ, 8GB RAM (UEFI Clover Catalina) MSI B360 Gaming Arctic Intel i5-8600 16GB RAM Asus Radeon RX580 8GB (UEFI Clover Catalina) Link to comment Share on other sites More sharing options...
OzemirElion Posted December 29, 2018 Author Share Posted December 29, 2018 Sorry for being late. After running the "Repair Permissions" script Mac crashed a lot, it was slow ... I'm trying again ... So far I'm waiting for him to have a successful boot without injecting Kexts, because by injecting them the Mac restarts at the end of the boot. I think I need to repair the permissions via commands Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now