Jump to content

[pre-release] macOS High Sierra


3,737 posts in this topic

Recommended Posts

Guest ricoc90

For some reason I could not update through the app store. It would download the update and reboot the system without actually installing (the install files were in /macOS Install Data/ though)

So I decided to re-download the complete beta installer app, create a bootable USB and do a fresh install. Well, that gives me the exact same problem: The files are in /macOS Install Data/ but Clover doesn't pick up the partition...

To be more precise:

first I created the USB through the createinstallmedia method, booted from it and started the first stage of installation. The system rebooted, but the partition would not show up in Clovers bootmenu

Secondly I used the startosinstall method, but same result: the partition won't show up in Clover

post-1502423-0-11675300-1502150950_thumb.png

Anyone any idea?

Edit: nevermind, fixed it by manually adding the boot entry to Clover

 

%5B9a90a3218fc2fbb3d5f4dafaebb7bd52%5D_S

Link to comment
Share on other sites

Hi, I don't know whether this is somewhat off-topic, if so, feel free to contact me and delete the post.

 

As for XCPM for unsupported CPUs patches of 10.13, please try this one:

 

1) Patch for _cpuid_set_info:

The disassembled code looks like this: (From DP1)

ffffff80003a1326	8a 05 21 5d 75 00 	movb	0x755d21(%rip), %al
ffffff80003a132c	04 72 	addb	$0x72, %al
ffffff80003a132e	3c d0 	cmpb	$-0x30, %al
ffffff80003a1330	77 50 	ja	0xffffff80003a1382

Alright, so that add is what we want to patch, and it's only needed for Broadwell-E CPUs, the patch will be:

72 3c d0 77 50 0f b6 c0
to
6a 3c d0 77 50 0f b6 c0

2) Patch for _xcpm_bootstrap:

The disassembled code looks like this:

ffffff80003d08c3	89 d8 	movl	%ebx, %eax
ffffff80003d08c5	04 c4 	addb	$-0x3c, %al
ffffff80003d08c7	3c 22 	cmpb	$0x22, %al
ffffff80003d08c9	77 22 	ja	0xffffff80003d08ed

And the patch will be:

89 d8 04 c4 3c 22 77 22
to
89 d8 04 xx 3c 22 77 22

Note: The xx is your exact platform CPUID, for example, the default one is 0x3C and I want it to be Ivy Bridge which is 0x3A, and the desired patch is:

89 d8 04 c4 3c 22 77 22
to
89 d8 04 c6 3c 22 77 22

3) Instant reboot fix

Look at these ones:

ffffff80003d107e	48 8d 3d 9b e1 65 00 	leaq	_xcpm_pkg_scope_msrs(%rip), %rdi
ffffff80003d1085	be 07 00 00 00 	movl	$0x7, %esi
ffffff80003d108a	31 d2 	xorl	%edx, %edx
ffffff80003d108c	e8 8f fc ff ff 	callq	0xffffff80003d0d20
ffffff80003d1091	83 fb 00 	cmpl	$0x0, %ebx
ffffff80003d1094	74 05 	je	0xffffff80003d109b
ffffff80003d1096	45 20 e5 	andb	%r12b, %r13b
ffffff80003d1099	74 13 	je	0xffffff80003d10ae
ffffff80003d109b	48 8d 3d ce e2 65 00 	leaq	_xcpm_core_scope_msrs(%rip), %rdi
ffffff80003d10a2	be 03 00 00 00 	movl	$0x3, %esi
ffffff80003d10a7	31 d2 	xorl	%edx, %edx
ffffff80003d10a9	e8 72 fc ff ff 	callq	0xffffff80003d0d20
ffffff80003d10ae	48 8d 3d 4b e3 65 00 	leaq	_xcpm_SMT_scope_msrs(%rip), %rdi
ffffff80003d10b5	be 0b 00 00 00 	movl	$0xb, %esi
ffffff80003d10ba	31 d2 	xorl	%edx, %edx
ffffff80003d10bc	e8 5f fc ff ff 	callq	0xffffff80003d0d20

Alright, so the patches will be:

# _xcpm_SMT_scope_msrs
be 0b 00 00 00 5d e9 08 00 00 00 -> be 0b 00 00 00 5d c3 90 90 90 90
and
be 0b 00 00 00 31 d2 e8 5f fc ff ff -> be 0b 00 00 00 31 d2 90 90 90 90 90

# _xcpm_core_scope_msrs
be 03 00 00 00 31 d2 e8 72 fc ff ff -> be 03 00 00 00 31 d2 90 90 90 90 90

# _xcpm_pkg_scope_msrs
be 07 00 00 00 31 d2 e8 8f fc ff ff -> be 07 00 00 00 31 d2 90 90 90 90 90

And if you want to disable the calls/jumps entirely, you should ret this offset:

ffffff80003d0d20	55 	pushq	%rbp  // Change this '55' to 'c3'

The patch is:

BE 0B 00 00 00 5D E9 08 00 00 00 0F 1F 84 00 00 00 00 00 55 48 89 E5 41 57 -> BE 0B 00 00 00 5D E9 08 00 00 00 0F 1F 84 00 00 00 00 00 C3 48 89 E5 41 57

4) Performance fix

89 D8 C1 E0 08 48 63 D0 -> B8 00 FF 00 00 48 63 D0 

5) AVX stuffs (Only for Pentium and Celeron users)

B9 A0 01 00 00 0F 32 -> B9 A0 01 00 00 31 C0 

All credits go to Pike R. Alpha, okrasit, vit9696 and other generous guys.

 

EDIT @ 25/07/17: Removed redundant bytes for 10.13 DP4 compatibility

EDIT @ 17/07/17: Added more patches and credit information

EDIT @ 22/06/17: Removed redundant bytes for 10.13 DP2 compatibility

Were do I apply these patches exactly? I got 10.12.6 running with a xcpm bootstrap kernel patch, but can't get to the 10.13 installer, until I stumbled upon this. someone guide me please.

Link to comment
Share on other sites

All good here, still B.I issue.

post-1083558-0-33820500-1502162947_thumb.png

 

Edit.

Has anyone else noticed the lack of the display icon in the menu bar as well? The one for airplay and shortcut to display preferences? Has apple removed it or id it a hack bug?

  • Like 3
Link to comment
Share on other sites

Were do I apply these patches exactly? I got 10.12.6 running with a xcpm bootstrap kernel patch, but can't get to the 10.13 installer, until I stumbled upon this. someone guide me please.

Hi. Post your working patches for 10.12.6 here. I may make the new one for you. :)

  • Like 3
Link to comment
Share on other sites

Now I am testing HFS+J install

Edit ***

Works as it should be

 

 

123.png

 

124.png

 

 

 

 

 

 

Agreed with U @chris1111, done with clean install 10.13 DP5 (17A330h) on HFS+ using MBP10,1 SMBios and Clover r4149...  :)

@SavageUS: yeah, for Battery Indicator it still disappears as same as prev. Beta.

 

#EDIT: I just realized that now, ATM is no longer showing triple CPUs on my mach.. LoL  :hysterical:

post-826765-0-12869600-1502185064_thumb.png

  • Like 4
Link to comment
Share on other sites

Interesting workaround for 10.13 DP5 system SSD with HFS+

 

1.) Clone the 10.13 DP4 system SSD with CCC to a HFS+ SDD.
2.) Format 10.13 DP4 system SSD to HFS+
3.) Restore the 10.13 DP4 HFS+ system SSD Clone to the 10.13 DP4 HFS+ system SSD with CCC
4.) The 10.13 DP4 HFS+ system SSD will boot flawless, and has now the old HFS+ file system
5.) Update to DP5: file system will remain in HFS+

 

Conclusions:

 

1.) Update to DP5 seems not to force the user to use the APS file system if the DP4 file system SSD is HFS+

2.) The DP4/DP5 HFS+ workaround above should also directly work for DP5

  • Like 2
Link to comment
Share on other sites

Guest ricoc90

Good info.

Actually handoff patch is same like 10.12 on 10.13.

 

We need to find more bcm patch for handoff.

Hmm..

 

나의 LG-F800S 의 Tapatalk에서 보냄

A little update:

 

I added my device ID (14e4,43a0) to AirPortBrcm4360.kext's info.plist, 

 

Used this patch:

BCM4352-Airport-Extreme, (credit skvo)
com.apple.driver.AirPort.Brcm4360
6b100000 750d
6b100000 9090

From your post and now my wifi-card is recognized As AirPort Extreme and Handoff is working (so no need to replace kexts anymore)  :yes: 

~ rico$ kextstat | grep Brcm
   65    0 0xffffff7f821d6000 0x7b6000   0x7b6000   com.apple.driver.AirPort.BrcmNIC (1200.25.1a1) 91034AAF-7085-3E3F-BD79-D9CBADC8D817 <64 63 62 59 12 7 6 5 4 3 1>
  139    0 0xffffff7f85e75000 0x58c000   0x58c000   com.apple.driver.AirPort.Brcm4360 (1200.15.1a3) 61C373BE-3564-3F50-83C9-DA6B15653184 <64 63 62 59 12 7 6 5 4 3 1>

post-1502423-0-75457100-1502200410_thumb.pngpost-1502423-0-89960400-1502200419_thumb.pngpost-1502423-0-37656200-1502200431_thumb.png

Link to comment
Share on other sites

A little update:

 

I added my device ID (14e4,43a0) to AirPortBrcm4360.kext's info.plist,

 

Used this patch:

BCM4352-Airport-Extreme, (credit skvo)
com.apple.driver.AirPort.Brcm4360
6b100000 750d
6b100000 9090
From your post and now my wifi-card is recognized As AirPort Extreme and Handoff is working (so no need to replace kexts anymore) :yes:
~ rico$ kextstat | grep Brcm
   65    0 0xffffff7f821d6000 0x7b6000   0x7b6000   com.apple.driver.AirPort.BrcmNIC (1200.25.1a1) 91034AAF-7085-3E3F-BD79-D9CBADC8D817 <64 63 62 59 12 7 6 5 4 3 1>
  139    0 0xffffff7f85e75000 0x58c000   0x58c000   com.apple.driver.AirPort.Brcm4360 (1200.15.1a3) 61C373BE-3564-3F50-83C9-DA6B15653184 <64 63 62 59 12 7 6 5 4 3 1>
attachicon.gifSchermafbeelding 2017-08-08 om 16.04.34.pngattachicon.gifSchermafbeelding 2017-08-08 om 16.04.49.pngattachicon.gifSchermafbeelding 2017-08-08 om 16.05.07.png
Great! Thank you

 

나의 LG-F800S 의 Tapatalk에서 보냄

Link to comment
Share on other sites

hi...

 

was the ...17A330h(or with different number)  public beta released yet..?

 

if I use "open" at the HS at public beta program..will I get the new .".330h" ?

 

thanks..

 

c.frio

Link to comment
Share on other sites

Can you upload Clover r4150 please?

 

Thanks in advance!

 

KGP

Sure :)

 

There's a new one r4151

@Badruzeus

I was about to delete my post when I saw yours but you beat me to it for the second time.

 

You posted first and you deleted the post just right before I wanted to delete mine. ;)

Clover_v2.4k_r4151.pkg.zip

  • Like 5
Link to comment
Share on other sites

@Badruzeus

I was about to delete my post when I saw yours but you beat me to it for the second time.

 

You posted first and you you deleted the post just right before I wanted to delete mine. ;)

NP LoL  :D it' s just same thing; in order not to confuse people with duplicate post; I think bcoz my network becomes too fast on DP 5 so I'm ahead of U... LoL..  :hysterical:

  • Like 2
Link to comment
Share on other sites

Guest ricoc90

Core.pkg method isn't working anymore in DB5, any other method to install on ICH10? I need to replace AppleAHCIPort.kext to boot.

"/Applications/Install macOS High Sierra Beta.app/Contents/Resources/startosinstall" --applicationpath "/Applications/Install macOS High Sierra Beta.app" --converttoapfs YES/NO --volume /Volumes/YOUR_VOLUME/ --rebootdelay 30 --nointeraction

It'll reboot automatically. Reboot back in Sierra, replace AppleAHCIPort and reboot into your High Sierra volume to start the installation.

If the volume does not show up in Clover, make a custom boot entry for it. Pointing to the Volume UUID is enough.

Link to comment
Share on other sites

@cyberdevs ,high sierra 13 can be installed on ssd with apfs?

I haven't tested it yet on SSD. I just tested the new release on a HDDs. I had to remove the SSD disk from my test rig so I only have HDDs for now but I tested HFS and APFS on my HDD and it worked. I believe APFS on a SSD disk should be working just fine.

  • Like 2
Link to comment
Share on other sites

"/Applications/Install macOS High Sierra Beta.app/Contents/Resources/startosinstall" --applicationpath "/Applications/Install macOS High Sierra Beta.app" --converttoapfs YES/NO --volume /Volumes/YOUR_VOLUME/ --rebootdelay 30 --nointeraction

It'll reboot automatically. Reboot back in Sierra, replace AppleAHCIPort and reboot into your High Sierra volume to start the installation.

If the volume does not show up in Clover, make a custom boot entry for it. Pointing to the Volume UUID is enough.

 

And where I can replace AppleAHCIPort ?

  • Like 1
Link to comment
Share on other sites

And change in external icon patch for Plextor M2 HD

<dict>
				<key>Comment</key>
				<string>external Icon</string>
				<key>Disabled</key>
				<false/>
				<key>Find</key>
				<data>
				SIXAdAeAiyA=
				</data>
				<key>Name</key>
				<string>IONVMeFamily</string>
				<key>Replace</key>
				<data>
				SIXAZpCAiyA=
				</data>
			</dict>
		</array>
Link to comment
Share on other sites

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