Jump to content

[pre-release] macOS High Sierra


3,737 posts in this topic

Recommended Posts

Had anyone else experienced the activation Trim Enabler ensures that the system opens much less quickly after the Boot process ?

On both APFS and HFS+

 

For me it was the opposite.  Once I enabled Trim, everything started working better.  But I did not use the Clover patch to enable Trim.  I used the Terminal command.

I have a similar issue like you.

One of my issues is battery indication on statusbar.

 

I checked battery indication in setting. But after reboot, battery indication is disappered

 

나의 LG-F800S 의 Tapatalk에서 보냄

 

I used a DSDT patch created by RehabMan for use with ACPIBatteryManager.kext.  Once I got that kext to load properly via kext injection, my battery showed up in the menubar consistently.  Before that, I had the same problem as you.  I would check the box to have the battery show in the menubar and it would uncheck right after I checked it.

  • Like 1
Link to comment
Share on other sites

For me it was the opposite.  Once I enabled Trim, everything started working better.  But I did not use the Clover patch to enable Trim.  I used the Terminal command.

 

maybe because I have 3 OS X system with different SSD ?

My boot Clover ESP is on Sierra 10.12 and I boot to the 10.13 

I try the Clover Trim and terminal , the result is the same

Need more test  :)

Link to comment
Share on other sites

I'm very sure it's not damaged, I'm not sure if the driver for sata is ok because if I make usb and select disk utility stay with loading disks a veeery looong time.

Same here. It took so long that I did not want to wait any more...

Link to comment
Share on other sites

IntelGraphicsFixup.kext with support of Kaby Lake Graphics.

 

  • Fixes PAVP freezes on Intel Azul (HD4400, HD4600), Skylake Graphics (HD530) and Kaby Lake Graphics (HD630)
  • Fixes boot logo on all known Intel Graphics starting with HD4000
  • Fixes display initialization issues for Skylake an Kaby Lake

Will be in trunk later. Author is on vacation :)

attachicon.gifIntelGraphicsFixup.kext.zip

In macOS High Sierra 10.13 use bootarg -igfxbeta.

In macOS Sierra 10.12.5 build 16F2073 works without bootarg

Notice:

macOS Sierra 10.12.5 build 16F2073 already have NATIVE Kaby Lake support

With Clover how would the boot argument be added to config.plist? Is it igfxbeta=1 or exactly as you put? BTW I can't get Shiki, Lilu or IntelGraphicsFixup to load at all in 10.13. Anything else needed to load these kexts? I am using the latest Lilu and Shiki from June 6.
Link to comment
Share on other sites

With Clover how would the boot argument be added to config.plist? Is it igfxbeta=1 or exactly as you put? BTW I can't get Shiki, Lilu or IntelGraphicsFixup to load at all in 10.13. Anything else needed to load these kexts? I am using the latest Lilu and Shiki from June 6.

 

-lilubeta -igfxbeta -shikibeta -alcbeta

 

Exactly as i wrote. All of this kexts have same argument structure... All this arguments defined in WiKi on GitHub and Sourceforge

  • Like 2
Link to comment
Share on other sites

-lilubeta -igfxbeta -shikibeta -alcbeta

 

Exactly as i wrote. All of this kexts have same argument structure... All this arguments defined in WiKi on GitHub and Sourceforge

Thanks I was looking for anything but I must of just missed it in the Wiki. Thanks it's working now.

  • Like 1
Link to comment
Share on other sites

I used a DSDT patch created by RehabMan for use with ACPIBatteryManager.kext.  Once I got that kext to load properly via kext injection, my battery showed up in the menubar consistently.  Before that, I had the same problem as you.  I would check the box to have the battery show in the menubar and it would uncheck right after I checked it.

This is the last remaining issue for me, i already have a patched DSDT from 10.12 where my battery indicator would work and always load but in 10.13 i have to tick the box the manually every boot. When i do a kextstat|grep -y ACPIB it doesnt show me the kext is loaded. How did you get the kext to inject? I have installed it in S/L/E and in CLOVER /other. My checkbox stays checked when i check it.

Link to comment
Share on other sites

This is the last remaining issue for me, i already have a patched DSDT from 10.12 where my battery indicator would work and always load but in 10.13 i have to tick the box the manually every boot. When i do a kextstat|grep -y ACPIB it doesnt show me the kext is loaded. How did you get the kext to inject? I have installed it in S/L/E and in CLOVER /other.

I think DP1's issue. I have same issue like you.

 

나의 LG-F800S 의 Tapatalk에서 보냄

Link to comment
Share on other sites

I think DP1's issue. I have same issue like you.

 

나의 LG-F800S 의 Tapatalk에서 보냄

More than likely but i believe @mnfesq has it functioning correctly.

Had anyone else experienced the bug that, when your computer goes into video sleep, after it wakes up, the mouse is no longer visible?  I am having multiple problems with sleep.  Lid sleep doesn't work.  Selecting sleep from the Apple menu does work but, after waking up, there is no video.  I thought I'd try the old-school sleep trick and that's when I found out that you lose your cursor after waking from video sleep.  DP2 can't come fast enough for me.

Video sleep and lid sleep working correctly here, no issues coming out of sleep. 

Link to comment
Share on other sites

More than likely but i believe @mnfesq has it functioning correctly.

Video sleep and lid sleep working correctly here, no issues coming out of sleep. 

 

i got it fixed now.

try to change your Battery name to BAT0 in dsdt. :)

post-980913-0-96222800-1497154245_thumb.png

 

apple laptop has BAT0

 

enjoy

 

added. suddenly disappeared battery show after reboot randomly

Link to comment
Share on other sites

My battery was already BAT0 from a previous DSDT patch. Battery status stays in status bar after lid sleep but not on reboot, i have manually enable it again.

I checked bootlog. Battery kext log that i cant see. But loaded in ioreg. Strange

 

나의 LG-F800S 의 Tapatalk에서 보냄

Link to comment
Share on other sites

FWIW, I think I figured out the cause of the AppleACPIPlatform panics with a friend (s/o shawnanastasio). The panic occurs in _isprint, which is supposed to determine if a character is printable or not. It looks up the char value (uses it as an index) in a lookup table. In AcpiTbPrintTableHeader (which calls _isprint), the chars in the AcpiTblHdr->Signature, AcpiTblHdr->OemId, AcpiTblHdr->OemTableId, and AcpiTblHdr->AslCompilerId are checked for unprintable chars (using _isprint) [those invalid chars are replaced with a question mark]. However... it looks like Apple forgot to cast the char as unsigned, causing char values over 0x7F to become a negative integer (acpica casts it to an unsigned char, preventing the index from becoming negative). So if the Signature, OemId, OemTableId, or AslCompilerId in the ACPI table header have chars that are greater than 0x7F, they'll cause _isprint to use a negative index (causing the panic). The MATS ACPI table has a 0x98 as a char val in the AslCompilerId, causing the panic when it's not dropped. I have some more info here.

  • Like 9
Link to comment
Share on other sites

Ofc i used his kext. Maybe we will wait that time

 

나의 LG-F800S 의 Tapatalk에서 보냄

I can deal with manually ticking a box for a DP1. Everything else on my laptop is working even my wifi without any new patches, just need to change the country code. IntelGraphicsFixUp fixed the "stretched" apple logo on bootup. Trackpad works, touchpad, brightness and volume keys.

  • Like 1
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...