Jump to content
30960 posts in this topic

Recommended Posts

Thanks for giving me the nvram.plist. It allows me to quickly find where the problem was.

 

My debug.log still have line endings. Strange. I did modified something about cr/lf are emitted to the console. I thought it would remove the cr/lf, leaving just the lf in debug.log. Which didn't seem to be a problem as it's standard mac. But no, my debug.log still has \r\n.

 

Could you open your debug.log in hex editor and tell what char do you have at the end of the line ?

Screenshot 2020-08-18 at 22.38.28.png

Edited by Jief_Machak

Done : empty dict allowed.

 

I've also committed a guard in XTheme::ClearScreen() for when UGAWidth == 0 || UGAHeight == 0. I also notice that the graphic banner is displayed when in text mode (I didn't know that graphic and text mode can mix...).

UGAWidth == 0 or UGAHeight == 0 can happen is GOP and UGADraw are unavailable. Which, most likely almost never happen... But can happen on my virtual config.

4 minutes ago, Jief_Machak said:

Here is my Clover efi. It's a debug version, might be slower than usual.

CloverX64.efi

unfortunately its the same message - cant load kext and failed to load kext. stuck on AppleIntelLpssController::_serviceMatchingTineSubr: fTimeServiceMatching timed out. fNotifications 0

  • Sad 1
42 minutes ago, MICKHAEL said:

unfortunately its the same message - cant load kext and failed to load kext. stuck on AppleIntelLpssController::_serviceMatchingTineSubr: fTimeServiceMatching timed out. fNotifications 0

Are you trying Big Sur ?

I'm not yet working on that, because I can't download Big Sur. So any commit you see from me for now won't bring new fetures.

6 minutes ago, Jief_Machak said:

Are you trying Big Sur ?

I'm not yet working on that, because I can't download Big Sur. So any commit you see from me for now won't bring new fetures.

yes) Big Sur Beta 4. you can't download? I could share with you over Mega. just let me know

 Hi @Jief_Machak

Latest commit 8b6f19f boot fine Catalina on Z390 Aorus Master.
 

Can't boot Big Sur: a lot of ACPI error despite MaLd0n's DSDT, stuck at apfs_module 2411 :cry:

 

 

IMPORTANT: crazybirdy's script for download BS attached

 

 

installScript_1016fullapp

Edited by Matgen84
2 minutes ago, Jief_Machak said:

No need to try Big Sur at the moment, I think. Clover's not ready. You'll know when it is from this forum...

 

In my previous post edited, there is crazybirdy's script attached for you, if you need 

31 minutes ago, Jief_Machak said:

Are you trying Big Sur ?

I'm not yet working on that, because I can't download Big Sur. So any commit you see from me for now won't bring new fetures.

here fusion put direct beta4 download

https://www.insanelymac.com/forum/topic/344428-pre-release-macos-big-sur/?do=findComment&comment=2733286

 

Edited by iCanaro
On 8/19/2020 at 10:30 PM, Jief_Machak said:

Wrong cast, I think. To test, I must enter GetBootFromOption(). It's only executed if (*(UINT32*)SelfLoadedImage->LoadOptions == CLOVER_SIGN). How do I do that ?

But you can test, should be ok.

0:133  0:000  Clover started with option to boot bootmgfw from EFI

:thumbsup_anim:

  • Like 1

Test Release r5121 build from source:

 

  • Mojave (my IvyBridge config): Hidden Entries works via GUI section config.plist. I can boot Recovery partition
  • Catalina (my Z390 config): Hidden Entries works via GUI section config.plist. I can boot Recovery partition

 

I hope that Clover will be compatible with Big Sur, soon. Thanks for developers efforts :)

 

 

Edited by Matgen84
  • Like 3
  • Thanks 1

@Cristina89,


Yeah, a custom entry to hide Recovery HD like below
 

Spoiler



	<key>GUI</key>
	<dict>
		<key>Custom</key>
		<dict>
			<key>Entries</key>
			<array>
				<dict>
					<key>Disabled</key>
					<false/>
					<key>FullTitle</key>
					<string>Recovery HD</string>
					<key>Hidden</key>
					<true/>
					<key>Ignore</key>
					<false/>
					<key>InjectKexts</key>
					<true/>
					<key>NoCaches</key>
					<false/>
					<key>Type</key>
					<string>OSXRecovery</string>
				</dict>
			</array>
		</dict>


 

no longer works in r5121.


Easiest work around is to remove the custom entry from your config.plist and just include "Recovery" in the "Hide" section of GUI...

 

	<key>GUI</key>
	<dict>
		<key>Hide</key>
		<array>
			<string>Recovery</string>
		</array>

 

Main GUI with hidden Recovery HD...

Spoiler

screenshot1.thumb.png.93777091fcd448c6cf7df03f7f7fea5f.png

 

Unhide Recovery HD by pressing <F3>...

Spoiler

screenshot2.thumb.png.d6ee1289578a0d8125dcc6a23348a323.png

 

  • Like 5
×
×
  • Create New...