Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 06/03/2019 in Posts

  1. Thanks a lot! EDIT: Please see https://sourceforge.net/p/cloverefiboot/code/4938/ Looks like the logic has slightly been changed, please try this kernel patch (temporarily) with Clover KernelToPatch: find 00 85 C0 0F 84 87 00 00 00 49 repl 00 85 C0 90 90 90 90 90 90 49 Hopefully Clover kext injection works after patching, if it does, I will update the source.
    13 points
  2. Only @PMheartsolve it for us <3
    9 points
  3. First beta... macOS Catalina 10.15 beta (19A471t) Release Notes!!! Useful information: macOSDeveloperBetaAccessUtility.dmg.zip (thanks to gengik84) Clover r4945 (thanks to Cyberdevs) Lilu_plugins (thanks to gengik84) Port Limit Patch (thanks to daliansky) older non metal nVidia and Intel cards (thanks to fusion71au) MBR installation on macOS Catalina (thanks to crazybirdy) - workaround!!! Mac Downloader (thanks to ricoc90) Stuck boot in Beta 5 (thanks to MaLd0n)
    8 points
  4. OK. So OpenCore boots latest beta macOS 10.15 without any problem! Kext injection is working without any interference. Thanks @vit9696
    8 points
  5. EDIT: Merged in Clover r4938. OK, and this is the binary to test (for kext injection under 10.15): Clover-4937-1015-kext-injection.zip (Please DO NOT use this now!) @Slice This is the basic diff, please review it, I am too lazy to post it again on Clover thread : Index: rEFIt_UEFI/Platform/Settings.c =================================================================== --- rEFIt_UEFI/Platform/Settings.c (revision 4937) +++ rEFIt_UEFI/Platform/Settings.c (working copy) @@ -6373,6 +6373,8 @@ if (Prop != NULL && Prop->string != NULL && Prop->string[0] != '\0') { if (AsciiStrStr (Prop->string, "Install%20OS%20X%20Mavericks.app")) { OSVersion = AllocateCopyPool (5, "10.9"); + } else if (AsciiStrStr (Prop->string, "Install%20macOS%20Catalina") || AsciiStrStr (Prop->string, "Install%20macOS%2010.15%20Beta")) { // FIXME: Remove Beta after final release + OSVersion = AllocateCopyPool (5, "10.15"); } else if (AsciiStrStr (Prop->string, "Install%20macOS%20Mojave") || AsciiStrStr (Prop->string, "Install%20macOS%2010.14")) { OSVersion = AllocateCopyPool (6, "10.14"); } else if (AsciiStrStr (Prop->string, "Install%20macOS%20High%20Sierra") || AsciiStrStr (Prop->string, "Install%20macOS%2010.13")) { Index: rEFIt_UEFI/Platform/kext_inject.c =================================================================== --- rEFIt_UEFI/Platform/kext_inject.c (revision 4937) +++ rEFIt_UEFI/Platform/kext_inject.c (working copy) @@ -623,8 +623,8 @@ UINT8 KBEMLDebugSearchEXT[] = { 0xE8, 0x3E, 0x00, 0x00, 0x00, 0xE9, 0x09, 0x00, 0x00, 0x00, 0x48, 0x8B, 0x7D, 0xE0, 0xE8 }; UINT8 KBEMLDebugReplaceEXT[] = { 0xE8, 0x3E, 0x00, 0x00, 0x00, 0x90, 0x90, 0x90, 0x90, 0x90, 0x48, 0x8B, 0x7D, 0xE0, 0xE8 }; -// Yosemite -// PMheart: Universal for 10.10 - 10.13, maybe still ok for furture ver +// Yosemite - High Sierra +// PMheart: Universal for 10.10 - 10.13 UINT8 KBEYosECSieHighSearchEXT[] = { 0xE8, 0x25, 0x00, 0x00, 0x00, 0xEB, 0x05, 0xE8 }; UINT8 KBEYosECSieHighReplaceEXT[] = { 0xE8, 0x25, 0x00, 0x00, 0x00, 0x90, 0x90, 0xE8 }; @@ -659,28 +659,35 @@ UINT8 KBESieDebugSearchSIP[] = { 0x31, 0xC9, 0x39, 0xC1, 0x0F, 0x85, 0x3C, 0x00, 0x00, 0x00, 0x48, 0x8B, 0x85 }; UINT8 KBESieDebugReplaceSIP[] = { 0x31, 0xC9, 0x39, 0xC1, 0xEB, 0x80, 0x90, 0x90, 0x90, 0x90, 0x48, 0x8B, 0x85 }; -// Mojave (EXT) -// PMheart: checked KBEMoja*EXT -// Need to pair with KBEHighSieMoja*SIP -UINT8 KBEMojaSearchEXT[] = { 0xE8, 0xAF, 0x00, 0x00, 0x00, 0xEB, 0x05, 0xE8 }; -UINT8 KBEMojaReplaceEXT[] = { 0xE8, 0xAF, 0x00, 0x00, 0x00, 0x90, 0x90, 0xE8 }; +// Mojave / Catalina (EXT) +// PMheart: checked KBEMojaCata*EXT +// Need to pair with KBEHighSieMoja*SIP (10.13 / 10.14) / KBECata*SIP (10.15) +UINT8 KBEMojaCataSearchEXT[] = { 0xE8, 0xAF, 0x00, 0x00, 0x00, 0xEB, 0x05, 0xE8 }; +UINT8 KBEMojaCataReplaceEXT[] = { 0xE8, 0xAF, 0x00, 0x00, 0x00, 0x90, 0x90, 0xE8 }; // High Sierra / Mojave 10.14 - 10.14.3 (SIP) // PMheart: for 10.14.4+, see KBEMoja4SearchSIP and KBEMoja4ReplaceSIP below // PMheart: checked KBEHighSieMoja3*SIP -// Need to pair with KBEMoja*EXT +// Need to pair with KBEMojaCata*EXT UINT8 KBEHighSieMoja3SearchSIP[] = { 0xC3, 0x48, 0x85, 0xDB, 0x74, 0x69, 0x48, 0x8B, 0x03, 0x48, 0x89, 0xDF, 0xFF, 0x50, 0x28, 0x48 }; UINT8 KBEHighSieMoja3ReplaceSIP[] = { 0xC3, 0x48, 0x85, 0xDB, 0xEB, 0x12, 0x48, 0x8B, 0x03, 0x48, 0x89, 0xDF, 0xFF, 0x50, 0x28, 0x48 }; // Mojave 10.14.4+ (SIP) // PMheart: checked KBEMoja4*SIP -// Need to pair with KBEMoja*EXT +// Need to pair with KBEMojaCata*EXT UINT8 KBEMoja4SearchSIP[] = { 0x48, 0x85, 0xC0, 0x74, 0x6C, 0x48, 0x89, 0xC3, 0x48, 0x8B, 0x00, 0x48, 0x89, 0xDF, 0xFF, 0x50, 0x28, 0x48 }; UINT8 KBEMoja4ReplaceSIP[] = { 0x48, 0x85, 0xC0, 0xEB, 0x15, 0x48, 0x89, 0xC3, 0x48, 0x8B, 0x00, 0x48, 0x89, 0xDF, 0xFF, 0x50, 0x28, 0x48 }; +// Catalina (SIP) +// PMheart: checked +// Need to pair with KBEMojaCata*EXT +UINT8 KBECataSearchSIP[] = { 0x00, 0x85, 0xC0, 0x0F, 0x84, 0x87, 0x00, 0x00, 0x00, 0x49 }; +UINT8 KBECataReplaceSIP[] = { 0x00, 0x85, 0xC0, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x49 }; + // Mojave 10.14 - 10.14.3 // Avoid race condition in OSKext::removeKextBootstrap when using booter kexts without keepsyms=1. // by vit9696 +// Need to pair with KBEMojaCata*EXT and KBEHighSieMoja3*SIP UINT8 KBEMoja3SearchKxldUnmap[] = { 0x00, 0x0F, 0x85, 0xB2, 0x01, 0x00, 0x00, 0x48 }; UINT8 KBEMoja3ReplaceKxldUnmap[] = { 0x00, 0x90, 0xE9, 0xB2, 0x01, 0x00, 0x00, 0x48 }; @@ -687,9 +694,18 @@ // Mojave 10.14.4+ // Avoid race condition in OSKext::removeKextBootstrap when using booter kexts without keepsyms=1. // by PMheart, based on vit9696's work +// Need to pair with KBEMojaCata*EXT and KBEMoja4*SIP UINT8 KBEMoja4SearchKxldUnmap[] = { 0x00, 0x0F, 0x85, 0xB1, 0x01, 0x00, 0x00, 0x48 }; UINT8 KBEMoja4ReplaceKxldUnmap[] = { 0x00, 0x90, 0xE9, 0xB1, 0x01, 0x00, 0x00, 0x48 }; +// Catalina +// Avoid race condition in OSKext::removeKextBootstrap when using booter kexts without keepsyms=1. +// by PMheart, based on vit9696's work +// Need to pair with KBEMojaCata*EXT and KBECata*SIP +UINT8 KBECataSearchKxldUnmap[] = { 0x00, 0x0F, 0x85, 0x7E, 0x01, 0x00, 0x00, 0x48 }; +UINT8 KBECataReplaceKxldUnmap[] = { 0x00, 0x90, 0xE9, 0x7E, 0x01, 0x00, 0x00, 0x48 }; + + // // We can not rely on OSVersion global variable for OS version detection, // since in some cases it is not correct (install of ML from Lion, for example). @@ -718,6 +734,7 @@ UINTN NumHighSieMoja3SIP = 0; // 10.13.X - 10.14.3 UINTN NumMojaEXT = 0; // 10.14.X UINTN NumMoja4SIP = 0; // 10.14.4+ + UINTN NumCataSIP = 0; // 10.15 DBG_RT(Entry, "\nPatching kernel for injected kexts...\n"); @@ -734,8 +751,9 @@ NumSieSIP = SearchAndCount(Kernel, KERNEL_MAX_SIZE, KBESieSearchSIP, sizeof(KBESieSearchSIP)); NumSieDebugSIP = SearchAndCount(Kernel, KERNEL_MAX_SIZE, KBESieDebugSearchSIP, sizeof(KBESieDebugSearchSIP)); NumHighSieMoja3SIP = SearchAndCount(Kernel, KERNEL_MAX_SIZE, KBEHighSieMoja3SearchSIP, sizeof(KBEHighSieMoja3SearchSIP)); - NumMojaEXT = SearchAndCount(Kernel, KERNEL_MAX_SIZE, KBEMojaSearchEXT, sizeof(KBEMojaSearchEXT)); // general EXT patch, for all 10.14.x - NumMoja4SIP = SearchAndCount(Kernel, KERNEL_MAX_SIZE, KBEMoja4SearchSIP, sizeof(KBEMoja4SearchSIP)); // SIP patch, ONLY for 10.14.4+ + NumMojaEXT = SearchAndCount(Kernel, KERNEL_MAX_SIZE, KBEMojaCataSearchEXT, sizeof(KBEMojaCataSearchEXT)); // general EXT patch, for all 10.14.x + NumMoja4SIP = SearchAndCount(Kernel, KERNEL_MAX_SIZE, KBEMoja4SearchSIP, sizeof(KBEMoja4SearchSIP)); // SIP patch, ONLY for 10.14.4+ + NumCataSIP = SearchAndCount(Kernel, KERNEL_MAX_SIZE, KBECataSearchSIP, sizeof(KBECataSearchSIP)); } else { NumSnow_i386_EXT = SearchAndCount(Kernel, KERNEL_MAX_SIZE, KBESnowSearchEXT_i386, sizeof(KBESnowSearchEXT_i386)); NumLion_i386_EXT = SearchAndCount(Kernel, KERNEL_MAX_SIZE, KBELionSearchEXT_i386, sizeof(KBELionSearchEXT_i386)); @@ -750,9 +768,14 @@ } // X64 - if (NumMojaEXT == 1) { + if (NumCataSIP == 1) { + Num = SearchAndReplace(Kernel, KERNEL_MAX_SIZE, KBEMojaCataSearchEXT, sizeof(KBEMojaCataSearchEXT), KBEMojaCataReplaceEXT, 1) + + SearchAndReplace(Kernel, KERNEL_MAX_SIZE, KBECataSearchSIP, sizeof(KBECataSearchSIP), KBECataReplaceSIP, 1) + + SearchAndReplace(Kernel, KERNEL_MAX_SIZE, KBECataSearchKxldUnmap, sizeof(KBECataSearchKxldUnmap), KBECataReplaceKxldUnmap, 1); + DBG_RT(Entry, "==> kernel Catalina: %d replaces done.\n", Num); + } else if (NumMojaEXT == 1) { // apply EXT patch first - Num = SearchAndReplace(Kernel, KERNEL_MAX_SIZE, KBEMojaSearchEXT, sizeof(KBEMojaSearchEXT), KBEMojaReplaceEXT, 1); + Num = SearchAndReplace(Kernel, KERNEL_MAX_SIZE, KBEMojaCataSearchEXT, sizeof(KBEMojaCataSearchEXT), KBEMojaCataReplaceEXT, 1); // then apply corresponding patches based on what we found if (NumMoja4SIP == 1) { // firstly, try to patch 10.14.4+ Index: rEFIt_UEFI/refit/main.c =================================================================== --- rEFIt_UEFI/refit/main.c (revision 4937) +++ rEFIt_UEFI/refit/main.c (working copy) @@ -635,7 +635,8 @@ AsciiStrnCmp(InstallerVersion, "10.11", 5) && AsciiStrnCmp(InstallerVersion, "10.12", 5) && AsciiStrnCmp(InstallerVersion, "10.13", 5) && - AsciiStrnCmp(InstallerVersion, "10.14", 5)) { + AsciiStrnCmp(InstallerVersion, "10.14", 5) && + AsciiStrnCmp(InstallerVersion, "10.15", 5)) { InstallerVersion = NULL; // flag known version was not found } if (InstallerVersion != NULL) { // known version was found in image Thanks!
    6 points
  6. And... booted on Ryzen (through KVM)! https://github.com/foxlet/macOS-Simple-KVM/tree/catalina
    6 points
  7. @CMMChris @Moviemakergr I think your Graphics or something alike is the actual thing that should be to blame. My patch should be fine I guess. @arsradu Of course, Lilu and its plugins haven't got updated, which will be unloaded by default on this unsupported Darwin version, try `-lilubetaall`. Ah, Vit has just committed: https://github.com/acidanthera/Lilu/commit/2da161ee9959320f25607cf20767f690ac720caf
    5 points
  8. Thanks @PMheart and @arsradu Done
    4 points
  9. 4 points
  10. Script to download the Catalina full installer app. installScript_allfullapp.zip
    4 points
  11. @gengik84 Thank you for macOSDeveloperBetaAccessUtility
    4 points
  12. Here's developer utility https://gofile.io/?c=KT4jJX
    4 points
  13. Yes native gt710 without any modify
    3 points
  14. Hopefully this would be the changes for XCPM, I don't want to duplicate the usage again, please see my old posts for 10.13 and 10.14 as well: https://www.insanelymac.com/forum/topic/334898-pre-release-macos-mojave/?page=2&amp;tab=comments#comment-2616660 (10.14) https://www.insanelymac.com/forum/topic/324194-pre-release-macos-high-sierra/?page=3#entry2435885 (10.13) And these are the new patches: XCPM patches 10.15 _cpuid_set_info Find: 72 3c d0 77 50 0f b6 c0 Repl: xx 3c d0 77 50 0f b6 c0 _xcpm_bootstrap Find: 8D 43 C4 3C 22 77 22 Repl: 8D 43 xx 3C 22 77 22 _xcpm_SMT_scope_msrs #1 Find: BE060000005DE908000000 Repl: BE060000005DC390909090 _xcpm_SMT_scope_msrs #2 Find: 31 D2 E8 3E FD FF FF Repl: 31 D2 90 90 90 90 90 _xcpm_core_scope_msrs Find: 31 D2 E8 51 FD FF FF Repl: 31 D2 90 90 90 90 90 _xcpm_pkg_scope_msrs Find: 31 D2 E8 74 FD FF FF Repl: 31 D2 90 90 90 90 90 disable all msrs above Find: BE 06 00 00 00 5D E9 08 00 00 00 0F 1F 84 00 00 00 00 00 55 Repl: BE 06 00 00 00 5D E9 08 00 00 00 0F 1F 84 00 00 00 00 00 C3 Performance patch (credit to @vit9696) Find: C1E3084863D389D048C1EA20 Repl: C1E308B800FF000031D29090
    3 points
  15. Finally, up and running as well.
    3 points
  16. Yep, that's what I thought. -lilubetaall flag still works apparently. With the current version. Catalina is currently installing. THANK YOU!
    3 points
  17. Yeah OpenCore is Thx Acidanthera team !
    3 points
  18. 3 points
  19. Hi everyone, like all years i will attempt at installing the new major os release in beta on an hackintosh, as fast as i can after the release. It's exiting to demostrate every year that our hackintosh are so good that we can start use the new betas in a matter of a few hours after the release. I know it's pointless, but it's very funny to do and also quite challenging, and it's nice to be one of the very first to hackintosh the new version every year. So here is how it's going to work: -download from a mac the latest release, and install it on an ssd attached via usb -retrive the correct info about the system binaries to mod the clover's kext injection to make it work with the new os (for sure it will not work for the new os release, that's why we neeed a modded clover) -copy the existing efi folder of the target hackintosh to the efi partition of the ssd attched via usb and then replace the clover's binaries with thew modified ones -boot the hackintosh from the ssd and see if it work or make some more mods and tweaking to make it work If the clover mod isn't successfoul or comes too late, i can always boot an installed os on the mac and put fake smc and all the other needed kexts inside the /s/l/e or /l/e folders (and then rebuilng permissions and prelinked kernel) and boot it on an hackintosh with the latest public release of clover, which will not have kext injection working, but it will be enought to allows the system to boot after preparing it on a mac. If all goes well it will be a successfoul install done quickly, luckly this year i am equiped with a very fast internet conenction (1gps ftth) at home and with the help of people working on clover for the mod thing, it will take me mostly the time for download, install, and waiting for the modified clover binaries to have the new os installed and demostrate that with hackintoshing you can do all the same things as a real mac as long as you have the understaing of the hackintosh behaviour. For the hackintosh i am going to use, the most native and oob it's the better for this thing, that's why i will use my trusty haswell machine with an i7 4770k, asus sabertooth z87 and an r9 280x, which is the best machine i have, which is not a mac, in terms of macos compatibility and does not require things like the usb port limit workarounds and has an original apple wifi card so i will be able to use it even if i don't succed in installing the ethernet driver or having the clover kext injection working. Reguarding the wwdc i will go at the Italian official IOS developers acedemy at the univeristy of naples to see the live stream and then i will quickly go home and start trying out all the new betas. So what's your opinin on this little thing i do every year? Are you going to attempt that as well? Will you follow the development of the hackintosh of the new version? I am very courious to hear from you guys.
    2 points
  20. Developers are being given a preview version of macOS Catalina today and a public beta will be available this summer (in July). The final version will be available to the general public in the fall. View full article
    2 points
  21. I've just got my hack. to were I'm happy with it. its been a long road. and up to this point was always evolving. and from the software side. id Like to thank EVERYONE that as given there time help and support in my Hackintosh adventure. the hardware side. as at times been a bit of a challenge (learning to bent stainless tubing) I got the powder coating done by a local company Please comment. Had to change the tubing around Best regards Baldy
    2 points
  22. Audio works -alcbeta -lilubeta
    2 points
  23. EDIT: Sorry! I am extremely stupid! Please see for corrections! Alright, so this would be the fix for FakeCPUID under 10.15 (But sorry, I cannot test!): --- orig-kernel_patcher.c 2019-06-04 05:26:39.000000000 +0800 +++ patched.c 2019-06-04 05:24:43.000000000 +0800 @@ -483,6 +483,18 @@ STATIC UINT8 HSieMojSearchModel[] = {0x89, 0xc1, 0xc0, 0xe9, 0x04}; // Need to use YosECSieSearchExt, LionReplaceModel +// Catalina +/* + This patch searches + mov eax, r12 || mov eax, r12 + shr al, 0x4 || shr eax, 0x10 + and replaces to + mov eax, FakeModel || mov eax, FakeExt + nop || nop +*/ +STATIC UINT8 CataSearchModel[] = {0x44, 0x89, 0xE0, 0xC0, 0xE8, 0x04}; +STATIC UINT8 CataSearchExt[] = {0x44, 0x89, 0xE0, 0xC1, 0xE8, 0x10}; +STATIC UINT8 CataReplaceMovEax[] = {0xB8, 0x00, 0x00, 0x00, 0x00, 0x90}; // mov eax, val || nop BOOLEAN PatchCPUID(UINT8* bytes, UINT8* Location, INT32 LenLoc, UINT8* Search4, UINT8* Search10, UINT8* ReplaceModel, @@ -552,14 +564,22 @@ return; } // High Sierra/Mojave patterns -// Sherlocks: 10.13/10.14.DP1 +// Sherlocks: 10.13/10.14 DBG_RT(Entry, "CPUID: try High Sierra/Mojave patch...\n"); - if (PatchCPUID(kernelData, &StrMsr8b[0], sizeof(StrMsr8b), &HSieMojSearchModel[0], + if (PatchCPUID(kernelData, &StrMsr8b[0], sizeof(StrMsr8b), &CataSearchModel[0], &YosECSieSearchExt[0], &LionReplaceModel[0], &LionReplaceModel[0], sizeof(HSieMojSearchModel), Entry)) { DBG_RT(Entry, "...done!\n"); return; } +// Catalina patterns +// PMheart: 10.15.DP1 + DBG_RT(Entry, "CPUID: try Catalina patch...\n"); + if (PatchCPUID(kernelData, &StrMsr8b[0], sizeof(StrMsr8b), &HSieMojSearchModel[0], + &CataSearchExt[0], &CataReplaceMovEax[0], &CataReplaceMovEax[0], + sizeof(CataSearchModel), Entry)) { + return; + } } // new way by RehabMan 2017-08-13 @Slice Please review this too, thanks!
    2 points
  24. https://telegra.ph/Download-macOS-Catalina-1015-Beta-19A371t-Full-Installer-wo-Accessing-App-Store-2019-06-03
    2 points
  25. Well, kext injection usually breaks with major OS versions. Mojave was pretty quick to get up and running last year. Hopefully it won't take long to fix Catalina.
    2 points
  26. Extracted from InstallESD.dmg/Packages/Core.pkg: kernel.zip
    2 points
  27. macappstores://itunes.apple.com/app/1455661060 https://itunes.apple.com/us/app/macos-catalina-beta/id1455661060?mt=12 [edit] It still need macOSDeveloperBetaAccessUtility.dmg.zip to download the link.
    2 points
  28. Anyone could send me the kernel? Thanks a lot! By the way, boot 10.15 directly with OpenCore As for Clover, I will check the kernel asap
    2 points
  29. I checked the debug.log but didn't see anything. I mentioned the version which I used recently. But this has happened to me with the earlier version too. Just like you said probably this is specific to my case. debug.log
    2 points
  30. TOSMotionSensor I am very pleased to share my very first (beta) release with you all. This is a driver for ALL Toshiba devices with a built in accelerometer. I am looking for anyone with such a device to try it out as well as any other kext developers to take a look at the source for any glaring mistakes. Good news is that I built this driver to be compatible with native macOS applications that use SMS (SMCMotionSensor/Sudden Motion Sensor) data. No proprietary software/patches/hacks necessary. Even more good news is that along with this I am also releasing a display autorotation app (open source) called Displace (read more below). I have also included a bare-minimum example of how to poll the SMCMotionSensor service for accelerometer data to jump start anyone who may be interested. You can find more information, source code, as well as prebuilt binaries at the Github page here. Displace As mentioned above, I have developed an autorotation tool to use alongside TOSMotionSensor or any accelerometer enables hack or Mac. I am also looking for devs and testers to give it a shot and let me know how it works for them. More information, source, and binaries are available here. It makes me very happy to be able to give something back (however niche) to the Hackintosh community. Even though it's not the most widely usable software, I hope it inspires someone to learn how to make their own drivers and share them here.
    2 points
  31. @vit9696 I see a branch called "fsmc-plugin-host" on VirtualSMC repo. Does it mean that FakeSMC plugins support will be added in the future?
    2 points
  32. try it for intel quick sync, is a correct value from iMac19,1 IntelGFX 0x3E928086 ig-platform-id 0x3E920003Check InjectIntelshikigva=60
    2 points
  33. In vain you did not do as Vandroiy2012 told you. "Install EmuVariableUefi" You said that you use AptioMemoryFix but this is not enough! Chipset 390 has no support for real NVRAM even with AptioMemoryFix. You have to install EmuVariableUefi-64.efi.
    2 points
  34. 2 points
  35. My machine is getting stuck after loading graphics acceleration when booting the installer. Kernel patch of @PMheart didn't change this behavior.
    1 point
  36. Hi @nelio33 Try adding the following hot patch to config.plist. Wifi cards are listed under ARPT in macOS and not PXSX. It's not essential that you should need to rename PXSX to ARPT for working WiFi, but in this instance it may be helpful. So here are the steps: Identify the address, bellow PXSX may be rooted under RP08 Using Clover configurator apply the following Hot Patch : Find Device: _SB.PCI0.RP08.PXSX ( PXSX is attached to a different root then use that root address. So here my root for PXSX is RP08 ) Rename: ARPT Save Clover Configurator Shutdown / and start Hackintosh ( may cause a kernel panic on restart, if it does just restart Hackintosh ) Check that rename has taken effect ( So, _SB.PCI0.RP08.PXSX is now _SB.PCI0.RP08.ARPT ) Hope this is helpful ?
    1 point
  37. Really thanks dude @MacPeet Yes, you've got it! It was that old patch, it worked with it. Now i've just added alcid=3 through the config, and it's fully injected. However, i've now a little thing, the volume doesn't produce any sound if it's from the middle bar to the lower level. So, i've to put the volume, into the highest level, to be able to hear something.
    1 point
  38. Sorry, worded that wrong. I meant internal speakers. No sound from the speakers inside my laptop. Internal Speaker-No sound, though it shows up below, no sound is made from the speakers. Headphones-Yes, I can hear sound and this works Internal Mic-Yes, works, tested with Siri ext. Mic (LineIn)-No (Vu meter bounces like its working, but it bounces even in a silent room, and no sound picked up from external mic)
    1 point
  39. This update: • Adds AirPlay 2 support for sharing videos, photos, music and more from your Mac directly to your AirPlay 2-enabled smart TV • Adds the ability to follow a magazine from the Apple News+ catalog browsing view • Includes support for the Reiwa (令和) era of the Japanese calendar • Improves audio latency on MacBook Pro models introduced in 2018 • Fixes an issue that prevented certain very large OmniOutliner and OmniPlan documents from rendering properly Update Combo View full article
    1 point
  40. uno che dal 9 marzo risponde il 1 maggio, NON si chiama ritardo... si chiama: me ne sbatto i cocones... infatti di solito il problema non è l'OS ma chi risiede la monitor e sedia Baio aveva speso del suo tempo per preparare un clover... testarlo era una mission impossible? per chiudere... eventuali problemi all'hack, li hai tu, non io, non baio non gengik...
    1 point
  41. What should be AMB.plist? EFI\CLOVER\AMB.plist not loaded with name from LoadOptions: Not Found
    1 point
×
×
  • Create New...