Jump to content

Leaderboard

Popular Content

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

  1. All OK with your Clover r4969 I tested 10.6.8, 10.7.5, 10.12.6, 10.13.6 as well as 10.15beta on my legacy desktop (signature no2)... Some boot logs attached but they are pretty boring (since kext injection all OK)! bootlog_10.6.8.txt.zip bootlog_10.12.6.txt.zip bootlog_10.13.6.txt.zip bootlog_10.15beta.txt.zip Edit Also updated Catalina DP1_19A471t to DP2_19A487l on my legacy Dell XPS M1530 laptop (Core2Duo, Geforce Tesla graphics) with OpenCore 0.0.3. Prepared USB installer with @dosdude's macOS Catalina Patcher v1.0b15 which enables you to clean install or upgrade install over your existing DP1 Catalina volume (even for machines with unsupported SMBIOS and non metal graphics card)... Same post install as for DP1 to enable graphics acceleration on the Geforce 8600M GT but note @ASentientBot has a newly patched CoreDisplay.framework for DP2 - see post#1472. To install kexts and frameworks in DP2, need to first mount the file system as R/W: sudo mount -uw /
    4 points
  2. Hackintool v2.6.6 - Added "Disable Gatekeeper and mount the disk in read/write mode" tool - Change GFX0 to IGPU selection no longer shows for dGPU
    2 points
  3. @gorki75 here's an pure-english section, so please post only in English, in this way all the members can understand you and give the proper help for ya! Thanks
    2 points
  4. It is also not technically possible. _OSI is provided by ACPI runtime (i.e. operating system), so OC (or anything else that runs ot bootloader stage) does not know it at all.
    2 points
  5. try this. it will help you Clover_v2.4k_r4972.zip
    2 points
  6. Wrong screenshot, you must take screensho in Status, i don't need your pci list, i can see pci list from IOREG. Btw, your problem is caused by wrong IRQ. Patch manual IRQ to your DSDT or OTF patch with clover. I have write the step about IRQ patch in config.plis above. Check it
    2 points
  7. No dude,, he needs IRQ patch,, he didn't apply IRQ patch in his DSDT. Just check Fix HPET, FixRTC, TMR and IPIC in config.plist of Clover
    2 points
  8. To be clear I've already checked the kernel and the below code seems to at least patch all occurrences as it is programmed for: BOOLEAN KernelIvyBridgeXCPM(VOID *kernelData, LOADER_ENTRY *Entry, BOOLEAN use_xcpm_idle) { UINT8 *kern = (UINT8*)kernelData; CHAR8 *comment; UINT32 i; UINT32 patchLocation; UINT64 os_version = AsciiOSVersionToUint64(Entry->OSVersion); // check whether Ivy Bridge if (gCPUStructure.Model != CPU_MODEL_IVY_BRIDGE) { DBG("Unsupported platform.\nRequires Ivy Bridge, aborted\n"); DBG("KernelIvyBridgeXCPM() <===FALSE\n"); return FALSE; } // check OS version suit for patches // PMheart: attempt to add 10.14 compatibility if (os_version < AsciiOSVersionToUint64("10.8.5") || os_version >= AsciiOSVersionToUint64("10.15")) { DBG("Unsupported macOS.\nIvy Bridge XCPM requires macOS 10.8.5 - 10.13.x, aborted\n"); DBG("KernelIvyBridgeXCPM() <===FALSE\n"); return FALSE; } else if (os_version >= AsciiOSVersionToUint64("10.8.5") && os_version < AsciiOSVersionToUint64("10.12")) { // 10.8.5 - 10.11.x no need the following kernel patches on Ivy Bridge - we just use -xcpm boot-args DBG("KernelIvyBridgeXCPM() <===\n"); return TRUE; } DBG("Searching _xcpm_pkg_scope_msr ...\n"); if (os_version >= AsciiOSVersionToUint64("10.12")) { // 10.12+ patchLocation = 0; // clean out the value just in case for (i = 0; i < 0x1000000; i++) { if (kern[i+0] == 0xBE && kern[i+1] == 0x07 && kern[i+2] == 0x00 && kern[i+3] == 0x00 && kern[i+4] == 0x00 && kern[i+5] == 0x31 && kern[i+6] == 0xD2 && kern[i+7] == 0xE8) { patchLocation = i+7; DBG("Found _xcpm_pkg_scope_msr\n"); break; } } if (patchLocation) { for (i = 0; i < 5; i++) { kern[patchLocation+i] = 0x90; } DBG("Applied _xcpm_pkg_scope_msr patch\n"); } else { DBG("_xcpm_pkg_scope_msr not found, patch aborted\n"); DBG("KernelIvyBridgeXCPM() <===FALSE\n"); return FALSE; } } comment = "_xcpm_bootstrap"; if (os_version <= AsciiOSVersionToUint64("10.12.5")) { // 10.12 - 10.12.5 STATIC UINT8 find[] = { 0x83, 0xC3, 0xC4, 0x83, 0xFB, 0x22 }; STATIC UINT8 repl[] = { 0x83, 0xC3, 0xC6, 0x83, 0xFB, 0x22 }; applyKernPatch(kern, find, sizeof(find), repl, comment); } else if (os_version < AsciiOSVersionToUint64("10.13")) { // 10.12.6 STATIC UINT8 find[] = { 0x8D, 0x43, 0xC4, 0x83, 0xF8, 0x22 }; STATIC UINT8 repl[] = { 0x8D, 0x43, 0xC6, 0x83, 0xF8, 0x22 }; applyKernPatch(kern, find, sizeof(find), repl, comment); // PMheart: attempt to add 10.14 compatibility } else if (os_version < AsciiOSVersionToUint64("10.15")) { // 10.13/10.14 STATIC UINT8 find[] = { 0x89, 0xD8, 0x04, 0xC4, 0x3C, 0x22 }; STATIC UINT8 repl[] = { 0x89, 0xD8, 0x04, 0xC6, 0x3C, 0x22 }; applyKernPatch(kern, find, sizeof(find), repl, comment); // PMheart: attempt to add 10.15 compatibility } else if (os_version < AsciiOSVersionToUint64("10.16")) { STATIC UINT8 find[] = { 0x8D, 0x43, 0xC4, 0x3C, 0x22 }; STATIC UINT8 repl[] = { 0x8D, 0x43, 0xC6, 0x3C, 0x22 }; applyKernPatch(kern, find, sizeof(find), repl, comment); } uless my cpu isn't involved, but should since is it a Core i5 3210M if I correctly understood the code.
    1 point
  9. It's clearly a bug, already solved in Xcode 10 last year. Not sure we need a solution, which I eventually have (I have a tiny command line for that in the hwsensor project), or just wait for a better Xcode 11 that will fix the bug as already was with predecessor. Anyway I din't try it my self as I installed Catalina only few hours ago, but I will soon.
    1 point
  10. thanks a lot 10.6 and 10.7 are same like before. no problems to boot 10.6 and 10.7. because pattern is not good to define. so i remained 10.6/10.7
    1 point
  11. @Sherlocks Hi, I tested the boot on 10.7, 10.8, 10.9 10.10, 10.11, 10.12 and the booting of it worked perfectly. Except on 10.7 it boots only in legacy mode, but not in uefi mode, but it has always been like that with my System, maybe it's my setup or my hardware. As a note: I had just booted the installer, had not installed the os versions on hdd/ssd. I had additionally tested the os versions that I had already installed: It was 10.13, 10.14, 10.15, they also booted perfectly, but you had already tested that. And as second note: I used the files from your uploaded zip to test it: injection test.zip. Couldn't test the version 10.6 because my processor is not compatible with it (Ivy Bridge) and maybe also my Graphic Card (GTX 680) btw. If the Config file or the Drivers is also important for that test, I can send you the files I used over PM
    1 point
  12. The lapic patch works at my first attempt with Catalina just some minutes ago (compiled the latest from sf). What is no longer working is the ivy-bridge xcpm patch, had to use AICPM.
    1 point
  13. Installing is quite different than just copying the files to Application folder. Interesting that PDFElement automatically adds the icon to the Launchpad, never seen that happen before from simply dragging an app into the Application folder.
    1 point
  14. Launchpad only adds app icons to it when downloading apps from the App Store, not by adding Apps to the Applications folder, if you manually add a app to the Applications folder you must drag and drop the icon from Applications folder to Launchpad. This is how Launchpad has always worked.
    1 point
  15. Lost the icons in Launchpad or Applications folder? Apple has changed the way Launchpad behaves! Instead of it auto-adding apps to Launchpad, now you have to drag them there (i.e. on top of the silver icon) from your applications folder - and subsequently they appear.
    1 point
  16. To you already spoke many times. ACPI common for all OS. It is not discussed.
    1 point
  17. Amigo a ferramenta do Piker cria o SSDT pro teu processador, é só rodar o script no terminal ssdtPRGen.sh-Beta.zip
    1 point
  18. @MacPeet my AppleHDA in S/L/E is untouched as this is a clean install and tried this guide first as linked by toleda from the 'other' forum. This one ^ I didn't see in other guides I came across with. Now working with layoutID=6. Testing jacks and other peripherals will give feedback shortly. THANK YOU so much @Andres ZeroCross!
    1 point
  19. Are you using "Auto" Appearance? If so try setting Dark or Light and test icons.
    1 point
  20. hi everyone i want to test all mac os boot. i tested 10.13 10.14 10.15 if you have lower macos, please report all. since 10.6~10.12. it will be help for clover with future. no need to install macos. just make usb installer and test get installation windows thanks in advance injection test.zip
    1 point
  21. Fixed it!! Through another simpler script I found, some googling, trial & error in terminal, I figured out that it was the number of disks I have that was the problem. Basically I have 5 internal disks and some are partition and RAID, so all of my external disks were being given numbers of 10 or above and the script that the fixUSB.sh script uses will only find disks 0-9. So after reading up on the grep command, I discovered that you needed to write it as [0-9][0-9] to return double figures, and now it finds disks 10 and above and works! I couldn't figure out how to get it to look for anything below 10 though, but for me I don't think will be a problem.
    1 point
  22. https://github.com/acidanthera/AppleALC/pull/425 please check @vandroiy2012
    1 point
  23. Hi Allan, it was a hard day for me. I bended the pin in the battery socket while switching the battery on and off and it was a nightmare to fix it. I did it, but decided not to disconnect battery anymore. Nevertheless, I managed to make the system boot all the times. I updated LG control Center in Windows and probably it changed something in bios (or may be updated it) After that the booting success frequency without battery disconnection increased drastically and I managed to find a clover config, that makes me boot every time. Now the graphics is what I'm working on. The graphic does not start. I can login to the system only remotely via screen sharing. Here is the file with the information I collected using you app. Send me dimas-Air.xirosterni.home.zip
    1 point
  24. 1 point
  25. Clover has protection against installing all AptioFix drivers. If AptioMemoryFix presents then others will be ignored. I will support Clover as long as it will be useful for anybody.
    1 point
  26. New firmware version 3.1.84 is posted at https://www.aquantia.com/support/driver-download/ I've updated 3 different Aquantia cards with it and it's working well. (had an issue with 3.1.81 bricking my OWC Thunderbolt 3 to 10GbE Adapter, but 3.1.84 seems solid) Must flash under windows though.
    1 point
  27. Very good tool. I give it a try .....
    1 point
  28. EFI Agent v1.2.8 Released - macOS Catalina fix
    1 point
×
×
  • Create New...