Guest ricoc90 Posted August 8, 2017 Share Posted August 8, 2017 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 bootmenuSecondly I used the startosinstall method, but same result: the partition won't show up in CloverAnyone any idea?Edit: nevermind, fixed it by manually adding the boot entry to Clover Link to comment Share on other sites More sharing options...
SavageAUS Posted August 8, 2017 Share Posted August 8, 2017 @Laptop users Is the battery indicator fixed in this beta? I'm downloading the update now and will report back. Sent from my SM-G930F using Tapatalk 1 Link to comment Share on other sites More sharing options...
Ahmed_shiko Posted August 8, 2017 Share Posted August 8, 2017 i have problem in install any soution Link to comment Share on other sites More sharing options...
eman.morales Posted August 8, 2017 Share Posted August 8, 2017 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 More sharing options...
crazybirdy Posted August 8, 2017 Share Posted August 8, 2017 i have problem in install any soution IMG_0684.JPG same problem as yours. "The target disk is too small....." as the same. Link to comment Share on other sites More sharing options...
SavageAUS Posted August 8, 2017 Share Posted August 8, 2017 All good here, still B.I issue. 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? 3 Link to comment Share on other sites More sharing options...
PMheart Posted August 8, 2017 Share Posted August 8, 2017 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. 3 Link to comment Share on other sites More sharing options...
Matgen84 Posted August 8, 2017 Share Posted August 8, 2017 Hi All work fine with 13,2 SMBios on my system. I'll try macpro6,1 SMBIOS later afternoon. Maybe fresh install. 3 Link to comment Share on other sites More sharing options...
Badruzeus Posted August 8, 2017 Share Posted August 8, 2017 Now I am testing HFS+J install Edit *** Works as it should be 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 4 Link to comment Share on other sites More sharing options...
camillionario Posted August 8, 2017 Share Posted August 8, 2017 Clean installation, no problems 1 Link to comment Share on other sites More sharing options...
KGP-iMacPro Posted August 8, 2017 Share Posted August 8, 2017 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 CCC4.) The 10.13 DP4 HFS+ system SSD will boot flawless, and has now the old HFS+ file system5.) 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 2 Link to comment Share on other sites More sharing options...
Cyberdevs Posted August 8, 2017 Share Posted August 8, 2017 All good here with a clean install. Clover r4150 2 Link to comment Share on other sites More sharing options...
Guest ricoc90 Posted August 8, 2017 Share Posted August 8, 2017 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) ~ 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> Link to comment Share on other sites More sharing options...
Sherlocks Posted August 8, 2017 Share Posted August 8, 2017 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 9090From your post and now my wifi-card is recognized As AirPort Extreme and Handoff is working (so no need to replace kexts anymore) ~ 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> Schermafbeelding 2017-08-08 om 16.04.34.pngSchermafbeelding 2017-08-08 om 16.04.49.pngSchermafbeelding 2017-08-08 om 16.05.07.png Great! Thank you 나의 LG-F800S 의 Tapatalk에서 보냄 Link to comment Share on other sites More sharing options...
KGP-iMacPro Posted August 8, 2017 Share Posted August 8, 2017 All good here with a clean install. Clover r4150 Can you upload Clover r4150 please? Thanks in advance! KGP Link to comment Share on other sites More sharing options...
C.Frio Posted August 8, 2017 Share Posted August 8, 2017 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 More sharing options...
Lucy183 Posted August 8, 2017 Share Posted August 8, 2017 Core.pkg method isn't working anymore in DB5, any other method to install on ICH10? I need to replace AppleAHCIPort.kext to boot. 1 Link to comment Share on other sites More sharing options...
Orion's Sword Posted August 8, 2017 Share Posted August 8, 2017 Intersting with the CsmVideoDxe-64.efi the verbose lines of the apfs.efi drivers no longer appear It still appears in my case. Link to comment Share on other sites More sharing options...
Cyberdevs Posted August 8, 2017 Share Posted August 8, 2017 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 5 Link to comment Share on other sites More sharing options...
Badruzeus Posted August 8, 2017 Share Posted August 8, 2017 @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 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.. 2 Link to comment Share on other sites More sharing options...
Guest ricoc90 Posted August 8, 2017 Share Posted August 8, 2017 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 More sharing options...
xtddd Posted August 8, 2017 Share Posted August 8, 2017 @cyberdevs ,high sierra 13 can be installed on ssd with apfs? Link to comment Share on other sites More sharing options...
Cyberdevs Posted August 8, 2017 Share Posted August 8, 2017 @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. 2 Link to comment Share on other sites More sharing options...
Lucy183 Posted August 8, 2017 Share Posted August 8, 2017 "/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 ? 1 Link to comment Share on other sites More sharing options...
Matthew82 Posted August 8, 2017 Share Posted August 8, 2017 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 More sharing options...
Recommended Posts