Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 08/04/2018 in all areas

  1. Well, what do you know? It works! Thank you!
    4 points
  2. 2 points
  3. I have never used EFICheckDisabler.kext and don't have this popup issue that others are having.
    2 points
  4. Making a High Sierra USB Installer Entirely From Scratch in Windows This is a proof of concept tutorial, to show it's possible to create a vanilla High Sierra installer, entirely from scratch, in Windows (even without App Store downloaded "Install macOS High Sierra.app" from a real Mac ). @PikeRAlpha's link to Apple's Software Catalog provides us with all the URLs necessary to download the needed files directly from Apple instead of some dubious source from the internet... Pre-Requisites 8GB or larger USB drive. Edit: Recommend 16GB or larger for macOS Catalina 10.16 Boot Disk Utility v2.1.2017rev021b from @CVAD TransMac (free 15 day trial) Paragon Hard Disk Manager Free Download Installer Files Directly from Apple 1) Browse Apple's Regular Software Catalog and find the URLs to download the following 6 installer files... BaseSystem.dmg BaseSystem.chunklist InstallInfo.plist InstallESDDmg.pkg AppleDiagnostics.dmg AppleDiagnostics.chunklist (Hint - search page for "InstallESD" to find its URL and others nearby) to a folder named "SharedSupport" on your Windows NTFS drive. A browser download manager (eg Chrono for Chrome, dTA for FireFox) is handy since InstallESD is >4GB ---> allows you to pause/resume interrupted download... 2) Rename InstallESDDmg.pkg to InstallESD.dmg 3) Edit InstallInfo.plist with WordPad/text editor to remove the chunklistURL and chunklistid keys for InstallESD, and renaming it from InstallESDDmg.pkg to InstallESD.dmg (example of edited file attached to this post)... Note: You can verify the SHA1 checksum of your InstallESD.dmg and BaseSystem.dmg with the correct ones at this website. Boot Disk Utility to format the Installer USB and Restore OS X Base System HFS partition 1. Format USB with BDU & latest Clover ---> creates boot files in CLOVER partition + second FAT partition 2. Extract 4.hfs from \SharedSupport\BaseSystem.dmg with BDU --> save to it's local folder 3. Restore 4.hfs to USB second partition with BDU ---> 2nd partition becomes bootable "OS X Base System" Paragon Hard Disk Manager to extend HFS Partition to its Full Extent Open Paragon Partition Manager Free and resize the second partition of the USB drive to the full size allowed. Don't forget to apply the changes at the end... Transmac to Copy "SharedSupport" folder to OS X Base System 1. Open the TransMac program and navigate to the HFS+ Volume/Install macOS High Sierra.app/Contents folder. Right click anywhere in the empty space on the RHS pane and select "Copy Here"... 2. In the next stage, select the "SharedSupport" folder we created above as the "Files and Folders to be copied to the Mac Volume"... Clover Settings Clover configuration is required now. The default config.plist (in the Clover FAT32 partition of the USB) maybe sufficient to boot your machine if you’re lucky. If not, the hackintosh-vanilla-desktop-guide has some good explanations on the various settings available and also offers sample configuration files based on CPU type. Also, look at the Clover Wiki, Clover Instructions and Clover Configuration Thread for pointers and edit /EFI/Clover/config.plist accordingly with Wordpad or Notepad. The location of the important configuration files for Clover are summarized below config.plist--->EFI/CLOVER folder DSDT.aml with or without SSDT.aml--->EFI/CLOVER/ACPI/patched (don't need one if your DSDT is auto patched by Clover in config.plist) Kexts eg FakeSMC, NullCPUPowerManagement --->EFI/CLOVER/kexts/<osx version> or /Other. NB BootDiskUtility by default already has FakeSMC.kext installed here. You may need to add VoodooPS2Controller for your laptop keyboard/trackpad to work. If UEFI booting, you will most likely need one of the OsxAptioFixDrv-64 drivers copied from /EFI/CLOVER/drivers-off/drivers64UEFI to /EFI/CLOVER/drivers64UEFI. If you want to use the installer to run High Sierra in Windows on VMware, you can follow my guide to set up the Virtual Machine and replace Clover's default config with EFI_Clover for VMware (which is compatible to run in VMware). In the screenshots below, I have attached the USB Installer (in this case PhysicalDrive7) to my macOS Virtual Machine. Reboot the system to the USB installer to install High Sierra ... What happens if we don't have access to TransMac or Paragon Hard Disk Manager? Not a problem, as long as we get "OS X Base System" bootable, we can launch terminal from the Utilities Menu to copy the SharedSupport folder over to the Installer app. In essence, we will build the full installer app = 5GB+ on the target HD eg "Macintosh HD", by copying both the "small" installer app = 15MB (on "OS X Base System") and the SharedSupport folder from the NTFS volume (mounted in this example on /Volumes/DATA)... -bash-3.2# cd / -bash-3.2# cp -R Install\ macOS\ High\ Sierra.app /Volumes/Macintosh\ HD/ -bash-3.2# cp -R /Volumes/DATA/SharedSupport /Volumes/Macintosh\ HD/Install\ macOS\ High\ Sierra.app/Contents/ ...then start installation with the startosinstall utility... -bash-3.2# /Volumes/Macintosh\ HD/Install\ macOS\ High\ Sierra.app/Contents/Resources/startosinstall --volume /Volumes/Macintosh\ HD --converttoapfs NO --applicationpath /Volumes/Macintosh\ HD/Install\ macOS\ High\ Sierra.app The above steps can be automated with the attached "startosinstall.command" script, which will assemble "Install macOS High Sierra.app" on "Macintosh HD" and launch the startosinstall utility targeting the "Macintosh HD" volume. Copy/download to "Macintosh HD", then run in terminal (after attaching DATA USB with /Shared Support folder)... cd "/Volumes/Macintosh HD" chmod +x startosinstall.command ./startosinstall.command Updated Download Links for macOS Mojave 10.14.6_18G103 Browse Apple's Regular Software Catalog and find the URLs to download the following 6 installer files... BaseSystem.dmg BaseSystem.chunklist InstallInfo.plist InstallESDDmg.pkg AppleDiagnostics.dmg AppleDiagnostics.chunklist Note: In Mojave, Apple has removed the --converttoapfs NO and --applicationpath arguments from the startosinstall utility.... eg to use startosinstall for the above section "What happens if we don't have access to TransMac or Paragon Hard Disk Manager?", the syntax is now -bash-3.2# /Volumes/Macintosh\ HD/Install\ macOS\ Mojave.app/Contents/Resources/startosinstall --volume /Volumes/Macintosh\ HD This basically means that for Mojave, the default installation will always convert the target volume to the apfs file system. Updated Download Links for macOS Catalina 10.15.6_19G73 Browse Apple's Regular Software Catalog and find the URLs to download the following 6 installer files... BaseSystem.dmg BaseSystem.chunklist InstallInfo.plist InstallESDDmg.pkg AppleDiagnostics.dmg AppleDiagnostics.chunklist startosinstall.command.zip InstallInfo.plist_edited_10.13.6.zip InstallInfo.plist_edited_10.14.6.zip InstallInfo.plist_edited_10.15.6.zip
    1 point
  5. First off, this guide would not be possible without the help and experience of many experienced members, coders, and moderators. Many thanks to Bronya for creating the Kernels, Boot, and Various other files that allow Chameleon and Clover to boot and run Sierra on Ryzen systems. In a very short time Bronya has done an incredible job of providing functionality on Ryzen systems on OS X. Many thanks, again. I would also like to thank and credit Spakk, Shanee, Aikimoa, Gils/Papeircul, Chris1111 and the many testers and moderators that helped in the testing and help threads. I forgot to mention jaytarang92 who created a patcher (RyzenPatcher) using terminal to make Ryzen/chameleon install almost automatic, I have a feeling he will soon have a Clover version which will help everyone and speed the process. I have tested and repeated a procedure for creating a Clover based USB installer and Install guide for AMD Ryzen systems for macOS Sierra 12.4-12.5+. It will require downloading and compiling the files and apps listed below. It will require a working Mac or mackintosh. I also attached a video zip that reflects most of the steps. There are other methods for creating a USB installer but this is a simple method that has been repeatable for 3 consecutive installs. It works, but requires extra edits which may be a good thing because software updates often remove and replace files so these methods are needed for AppStore updates recovery. It's a Start! *****Update 8/1/17 Sierra 12.6 is not working for creating a USB installer if you have an earlier version of Sierra 12.3-12.5 the USB can be made and used. If all you have is version 12.6 then make the install on a SSD or HDD using either a data port (internal) or with a USB to Data converter/adapter. You can load and instal directly to the disk and then follow post 2 instructions and do the disk edit package included. Follow the video as well. Update: Nvidia Web drivers are not working to full potential, users are reporting approximately 50% or less performance compared to windows or Intel Hackintosh builds. AMD HD 7xxx (some R7, R9 series), and HD 8xxx (R9 series) and RX cards are working well, but not to full potential vs. Intel Hackintosh builds. Older Nvidia cards with "native drivers" in OS X are working well and do not require any fixes. For questions or comments about performance and or hardware compatibility please use this thread for support. http://www.insanelymac.com/forum/topic/325841-ryzen-macos-sierra-post-install-troubleshooting-nvidia-other-drivers-audio-hardware-compatibility-etc/?do=findComment&comment=2472842 Required materials: 1). macOS Sierra, create an Apple account and dowmnload the latest version of Sierra and place in Applications. If you click on Launcher (Rocket Ship) it should appear there. 2). Kext Wizzard! Very important. 3). Clover r4077 boot loader. ( Update, Clover version 4114 can be used instead of version 4077). 4). Pandoras Box, here at InsanelyMac in downloads section. 5). Clover Configurator. 6). Ryzen Clover Essentials package (attached). 7). 8gb or larger empty and GUID formatted USB stick. Run Disk Utility to erase and format in "Mac Extended Journaled". 8). A HDD or SSD erased and formatted same as above. 9). Any kexts or special drivers needs for your particular hardware like ethernet or wifi fixes, graphics drivers etc.. 10). Patience and perserverance. BIOS Settings. Serial Port=disabled, also may be labeled Super IO Configuration= disabled. XMP detection enabled (Ram frequency settings) XHCI Handoff= enabled EHCI Handoff= enabled HPET= enabled Power on by keyboard= enabled any key ( for sleep and deep sleep option). Open Pandora and select "Create Bootloader", select macOS Sierra and select install location (USB). Next, click on the Custom Kernel tab and go to top of window that pops up. Click on the Custom Kernel tab and scroll to location of your risen essentials package and select 16.5 kernel. It should appear in the window next to tab and check that you have USB and Sierra also loaded in the installer windows in Pandora. Hit "Start" button and wait (15-30 min + -). After instal is complete it will ask you if you want to instal Clover or chameleon, choose clover. When the Clover window opens check to see that UEFI and ESP boxes are checked in top left corner. Don't worry about other settings just go to bottom left and hit install. Now you have a pandora installer icon and an EFI (clover) folder on desktop. Open the EFI folder and open the Ryzen essentials EFI folder from package. Drag the Boot64EFI folder to the EFI (USB) and replace it. Next drag the Clover folder to the same EFI tab and choose replace option, don't merge this one. You should now have replaced all the clover files for the USB installer. Now, open the Pandora Installer and open the Kernel_16.5 folder packet. Open the usr folders for both windows and drag the Kernel16.5 files to the Installer usr folder and select "Merge" option. I did them one at a time, standalone, local and bin. Next, open the "System" folder on installer and then "Library" scroll to "Extrensions" folder and open. Drag the Extensions files from Kernel 16.5 folder to Installer Extensions folder tab. Choose replace option. Close Extensions folder tab when done. Open frameworks folder on Installer and got to kernel 16.5 files and drag Frameworks files one at a tine to Frameworks folder tab. you should get replace or Merge option. Choose Merge option. Close folder tab when done. Scroll to Kernel folder on Installer and open. there will be 2 kernels there, remove both top trash and drag the Kernel 16.5 kernel to installer Kernel folder tab, choose replace. Next, scroll to PreLinked Kernel folder and replace in same manner as above. ***** Now run Kext Wizzard and make sure to select the proper target disk "Pandora Installer". You should now have a bootable USB installer. However once Sierra is installed you will need to make all these edits again on the fresh install disk. Repeat the above process and also use the post install "Library" files. This not System-Library, it is in the Library folder prior to System on main disk partition. Choose the "Merge" option for App support and replace for Pref panes. Make al the ediis to the new Disk installation, then run Clover boot loader 4077 make sure to select the proper disk (fresh install) and then replace the files with the EFI files provided that were used for the USB installer. Open the Config.plist folder that matches your system Graphics hardware and drag it to the Clover Folder "tab" and follow "replace" prompts see zip attached to config folder. Edit the config.plist for your CPU frequency before booting. you can do this by using cursor arrows at clover boot menu. Use right pointer arrow to scroll to "options" hit enter and scroll to Boot Args. npci=0x3000 busratio=36 (current setting) Set bus ratio to your GHz for example 3000MHz = busratio=30, 3200MHz = busratio=32 etc.. On first boot hit the space bar at clover screen (after setting bus ratio above) and select: Verbose, Single User, KeepSymbols, Don't Reboot on Panic, and Debug Kexts options, scroll to bottom hit return and the enter to boot. It should stop at Root: type in "mount -uw" hit enter, type "fsck -fy" hit enter and wait then type "exit". All of these are done without the " " marks. It will either boot into Sierra or stop very close to booting. reboot if necessary and just hit enter. If you get booted run Kext wizard and then try a reboot. After you are configured and it boots Please use Clover Configurator to reset serial number UUID and MLB. These are provided for now but if everyone has the same numbers it could be problematic so create your own unique set up. Clover Configurator will do it all for you once you get the hang of it. Update: Here is the new Sierra 12.6 kernel package. kernel_ryzen_10.zip See here a video guide: . Video Guide for Clover USB Installer.USB Installer Clover Sierra Ryzen.m4v.zip Ryzen USB Installer Essentials v3.0.zip Ryzen Disk Edit Essentials v3.0.zip
    1 point
  6. Thank you @Pavo it is worked. Finally, I passed gIOScreenLockState and update successfully but no sound anymore. Could it be that you removed layout-id from config.plist? What is the CodecCommander.kext? I never use it before. I am usually keeping my kexts inside L/E? What should I do move to kexts to L/E or leave it Clover/Others folder?
    1 point
  7. When you get the gIOScreenLockState, message, it means that your video drivers could not load. That can happen for a variety of reasons. It happened to me on my laptop because I could not find a way to disable my Nvidia GPU and my laptop does not support dual graphics. Others have had different reasons. If you suspect the problem is with your video card, you might try to disable it in BIOS and use the GPU that is onboard with your CPU just to install the update. If you can then boot, you can try to install the video drivers you need for your RX 560. Once they're installed, you can try to boot with the RX 560 enabled. It wouldn't surprise me if your video kexts aren't loading because they are not within the prelinked kernel for the update. It's worth a try at least.
    1 point
  8. Try this EFI, you had a few things in your config that you didn't need and I also converted all your DSDT patches to single SSDT patches, which will allow you to be able to update your motherboard firmware without having to rematch your DSDT every single time. Also on the phase 1 of the updater if you have multi-monitors connected it will give you a black screen, known issue with RX 5xx series. telepati_EFI.zip
    1 point
  9. thank you so much. I used it for applehda patching and it works.
    1 point
  10. New Version 1.9.1 https://olarila.com/forum/viewtopic.php?f=6&amp;t=6516
    1 point
  11. here you go AppleHDA.kext.zip
    1 point
  12. G'morning, Allan. I didn't had time to venture into my hack yesterday, so I couldn't answer you on the same day. This is the wake reason after 5 mins: 2018-08-04 11:31:33.067843-0300 localhost kernel[0]: (AppleACPIPlatform) AppleACPIPlatformPower Wake reason: GIGE XDCI It doesn't wake instantly anymore after I pulled out keyboard's dongle - I'll learn to _PRW patch so I won't have to remove the USB every time I wake from sleep. Lag after wake still persists badly. I'm starting to think myself this might be related to native power management not working 100% for me. Gonna try different SMBIOS + ssdtPRgen and see how it goes.
    1 point
  13. @darkbluecode non so la versione del bios, dovresti chiedere a @simo230999br usa questo config.plist config.plist.zip e non usare dsdt Replace config.plist and don't use dsdt
    1 point
  14. Do you mean a real Mac? If not, then AppleALC can be modified so you can choose between speakers and headphones.
    1 point
  15. ok... salvati questa EFI intanto usa il tuo hack, testalo un po' e divertiti...
    1 point
  16. For Quick look, there is a topic : HOW TO
    1 point
  17. i3 7100 updated to beta 5 without any problem
    1 point
  18. 1 point
  19. This happens if you compile Clover on an apfs volume. Alphabetical order is maintained if compiled on an HFS+ volume (but mandatory drivers show first, then optional drivers in "drivers-Off", in alphabetical order) eg
    1 point
  20. 1 point
  21. Noooooo, hai fixato trackpad, tastiera, audio e batteria, GENIACCIO!!!! Per quanto riguarda la grafica ancora mi viene indicata quella integrata. Allego. Simone’s MacBook Pro.zip
    1 point
  22. Yep, the logo is a known issue, for as far as I know. And yeah, I was also wondering how to order the drivers alphabetically in the installer.
    1 point
  23. Hi Guys Great Job Thanks a lot @Slice @vector sigma @Sherlocks @arsradu for theirs work and their remarks. I test two UDK2018 script: they work well on Mojave with Xcode 10 beta 5. A small detail though: the Clover logo would not appear in dark mode I have a problem with the alphabetical order of UEFI drivers
    1 point
  24. Anyone else lost his Lan Ports? With the newest beta I don't have any lan devices... Anyone any idea ? imac.zip
    1 point
  25. mi fai un ioreg e hack_info.. almeno controllo?
    1 point
  26. Yep. I thought it could have been a bug somewhere, with the post-isntall script. But also, I see no reason why the post-install script would even go into the kexts folder to begin with. That's why I thought I could just ask... Also, it was weird from the beginning, cause I use the same version of Clover on my systems. And this only happened on one of them. :)) That was my next step debugging this issue. But I totally missed the part where I used a custom script to see if Error 65 occurs... and that script also installed FakeSMC. And now that I think about it, I remember I was surprised it did that. :)) I never thought it will actually create issues later on. But yeah, everything that Slice said makes perfect sense now. Many thanks, guys.
    1 point
  27. i alway kept FakeSMC in /EFI/CLOVER/kexts/Other. i never FakeSMC installation issue. 1. official Clover 2. Build_Clover.command Clover 3. https://github.com/Dids/clover-builder/releases
    1 point
  28. Yeah, but in this case, it was all automatic. Good thing I was paying attention to the log, so I could see what was it doing. :))) Otherwise, it would continue to be a mystery forever.
    1 point
  29. No, official installer never had FakeSMC as an option. It is unofficial installer should be. But Clover.iso does contain some version of FakeSMC but it will not delete anything, it is iso and no more.
    1 point
  30. But...does Clover have FakeSMC inside it...? Cause I didn't find an option in the installer to check/uncheck it... I mean, you do have this for drivers. But not for kexts. I could be very wrong though. And yeah, this happened when upgrading from one Clover version to the other. But still...there was no checkbox for FakeSMC.kext in Clover installer.
    1 point
  31. +1. But to correct my self, I wanted to say ban apfs.efi only if 1) ApfsDriverLoader is not present. 2) any?
    1 point
  32. All fine from my side. I mean, I already switched to it on all my systems. So yeah, from my experience, I'd say we could use it by default.
    1 point
  33. Guys, any problems with ApfsDriverLoader? What about make it now mandatory and ban apfs.efi(I mean deleting it if found during the build process and at installation time)? Please advice..
    1 point
  34. If the kext was install with some other clover package which had the kext then new package will consider that the option is unchecked and will remove it. If you always use official installer then it will never happen.
    1 point
  35. I think @arsradu talking of existing one. Clover doesn't provide it for installation even though an old copy is present inside the ThirdParty directory, but is unused.
    1 point
  36. You're most welcome. And yeah, it's weird... I just tried reinstalling 4634, with Finder opened to Clover/kexts/Other...and I watched that damn FakeSMC.kext the entire process and it did not go anywhere... Not sure how the hell did it get removed the last time.. And I tried this with both HS and Mojave. Worked perfectly fine with both. And different partitions. :)) So yeah....not sure. I'll keep an eye on this. But as you said, it's most likely not Clover's fault here. Thank you very much for all the time and effort you put into fixing these issues.
    1 point
  37. IMHO can't happen, or better to say not by Clover. Each Payload is just a cpio archive and this program doesn't overwrite existing folders or files while instead create missing ones, like can be the /EFI/CLOVER/kexts directory. So if that instead is happening the only guilty is cpio and we cannot do nothing and cause can be only the problematic file due to some weired circumstances. I can only advice to sosbitute your fakesmc with a new one and delete all the copies. Good, and thanks to you for testing.
    1 point
  38. I see. So Beta 2 doesn't have this issue, but Beta 4 and 5 do. So yeah, looks like an Xcode bug... Anyway, I promised I'll make a new clean install in Mojave. And...here I am. Yes, it does work. Clover 4634 can now be built successfully with Xcode Beta 5. And...I see what you did there. LOL ========= Translating Resources ======== /Users/jimmy/src/UDK2018/Clover/CloverPackage/package/../../../../opt/local Updating 'en' strings file for CloverUpdater... done Updating 'en' strings file for Clover Preference Panel... done Updating strings file for Clover Preference Panel... done (190 entries) Updating 'en' strings file for CloverUpdater... done Generating de interface... done Generating es interface... done Generating fr interface... done Generating hr interface... done Generating id interface... done Generating it interface... done Generating ja interface... done Generating ko interface... done Generating lv interface... done Generating nl interface... done Generating pl interface... done Generating pt-BR interface... done Generating pt interface... done Generating ro interface... done Generating ru interface... done Generating tr interface... done Generating uk interface... done Generating vi interface... done Generating zh_CN interface... done Generating zh_TW interface... done Building CloverUpdater application... [XCODE] Updating 'en' strings file for Clover Preference Panel... done Generating de interface... done Generating es interface... done Generating fr interface... done Generating hr interface... done Generating id interface... done Generating it interface... done Generating ja interface... done Generating ko interface... done Generating lv interface... done Generating nl interface... done Generating pl interface... done Generating pt-BR interface... done Generating pt interface... done Generating ro interface... done Generating ru interface... done Generating tr interface... done Generating uk interface... done Generating vi interface... done Generating zh_CN interface... done Generating zh_TW interface... done Updating strings file for Clover Preference Panel... done Check de strings... done Check en strings... done Check es strings... done Check fr strings... done Check hr strings... done Check id strings... done Check it strings... done Check ja strings... done Check ko strings... done Check lv strings... done Check nl strings... done Check pl strings... done Check pt-BR strings... done Check pt strings... done Check ro strings... done Check ru strings... done Check tr strings... done Check uk strings... done Check vi strings... done Check zh_CN strings... done Check zh_TW strings... done Building CloverPrefpane preference... [XCODE] ================= Making all in boot1-install ================= [XCODE] boot1-install ================= Making all in partutil ================= [XCODE] partutil ================= Making all in bdmesg ================= [XCODE] bdmesg ================= Making all in clover-genconfig ================= [XCODE] clover-genconfig ------------------------------- Building Clover Install Package ------------------------------- ====================== Preinstall ====================== [BUILD] Pre ===================== Installation ===================== [BUILD] UEFI.only ================== Target ESP ========================== [BUILD] Target.ESP =================== BiosBoot =========================== [BUILD] BiosBoot ===================== Utils ============================ [BUILD] Utils ===================== EFI folder ======================= [BUILD] EFIFolder ===================== BootLoaders ====================== [BUILD] AltBoot [BUILD] bootNo [BUILD] boot0af [BUILD] boot0ss ====================== CloverEFI ======================= [BUILD] cloverEFI.64.sata ======================== Themes ======================== [BUILD] metal [BUILD] BGM [BUILD] CloverThemeManager ================= drivers64 mandatory ================== [BUILD] AppleImageCodec-64 [BUILD] AppleUITheme-64 [BUILD] AppleKeyAggregator-64 [BUILD] XhciDxe-64 [BUILD] FSInject-64 [BUILD] FirmwareVolume-64 [BUILD] SMCHelper-64 ===================== drivers64 ======================== [BUILD] GrubISO9660-64 [BUILD] ApfsDriverLoader-64 [BUILD] GrubEXFAT-64 [BUILD] GrubNTFS-64 [BUILD] GrubUDF-64 =============== drivers64 UEFI mandatory =============== [BUILD] AppleImageCodec-64.UEFI [BUILD] AppleUITheme-64.UEFI [BUILD] DataHubDxe-64.UEFI [BUILD] AppleKeyAggregator-64.UEFI [BUILD] VBoxHfs-64.UEFI [BUILD] FSInject-64.UEFI [BUILD] FirmwareVolume-64.UEFI [BUILD] SMCHelper-64.UEFI =================== drivers64 UEFI ===================== [BUILD] HashServiceFix-64.UEFI [BUILD] UsbMouseDxe-64.UEFI [BUILD] OsxAptioFix3Drv-64.UEFI [BUILD] OsxFatBinaryDrv-64.UEFI [BUILD] UsbKbDxe-64.UEFI [BUILD] PartitionDxe-64.UEFI [BUILD] OsxAptioFix2Drv-64.UEFI [BUILD] CsmVideoDxe-64.UEFI [BUILD] VBoxIso9600-64.UEFI [BUILD] OsxLowMemFixDrv-64.UEFI [BUILD] VBoxExt4-64.UEFI [BUILD] Fat-64.UEFI [BUILD] EnglishDxe-64.UEFI [BUILD] ApfsDriverLoader-64.UEFI [BUILD] EmuVariableUefi-64.UEFI [BUILD] AptioInputFix-64.UEFI [BUILD] Ps2MouseDxe-64.UEFI [BUILD] VBoxExt2-64.UEFI [BUILD] AptioMemoryFix-64.UEFI [BUILD] NvmExpressDxe-64.UEFI [BUILD] OsxAptioFixDrv-64.UEFI ===================== RC Scripts ======================= [BUILD] rc.scripts.on.target [BUILD] rc.scripts.on.all.volumes [BUILD] rc.scripts.core ================= Optional RC Scripts ================== [BUILD] disable_sleep_proxy_client ==================== Clover Prefpane =================== [BUILD] CloverPrefpane ================= Post ================= [BUILD] Post -------------------------- Building process complete! -------------------------- Build info. =========== Package name: Clover_v2.4k_r4634.pkg MD5: c7da4311fae84f44f120b2c7874f07c0 Version: v2.4k Stage: v2.4k Date/Time: 2018-08-03 14:19:57 Built by: jimmy Copyright 2012-2018 adding: Clover_v2.4k_r4634.pkg (deflated 0%) adding: Clover_v2.4k_r4634.pkg.md5 (stored 0%) total 46016 drwxr-xr-x 9 jimmy staff 288 Aug 3 14:22 . drwxr-xr-x 14 jimmy staff 448 Aug 3 14:22 .. -rw-r--r--@ 1 jimmy staff 11566527 Aug 3 14:22 Clover_v2.4k_r4634.pkg -rw-r--r-- 1 jimmy staff 68 Aug 3 14:22 Clover_v2.4k_r4634.pkg.md5 -rw-r--r-- 1 jimmy staff 11530801 Aug 3 14:22 Clover_v2.4k_r4634.zip drwxr-xr-x 3 jimmy staff 96 Aug 3 14:21 Resources drwxr-xr-x 6 jimmy staff 192 Aug 3 14:22 build drwxr-xr-x 3 jimmy staff 96 Aug 3 14:22 package drwxr-xr-x 6 jimmy staff 192 Aug 3 14:22 utils logout Saving session... ...copying shared history...cp: /Users/jimmy/.bash_history: Permission denied ...saving history...-bash: /Users/jimmy/.bash_history: Permission denied truncating history files... ...completed. [Process completed] So...in a word: thank you! I guess that's two words. lol
    1 point
  39. Let me know then , last night I've set up a new hack (asus) and finally I was able to see the error 65 you mentioned that is nothing than a known bug in Xcode 10 build system (it is already in the radar ). Basically new Xcode didn't find generated resources (by ibtool) for just a matter of timing (they get generated, but Xcode looks for it before are in place) and my workaround is just to create and traslate xibs before invoke the make file.... so stuff are already there.
    1 point
  40. Actually no. Works fine now with clean sources in HS using Xcode 9 with CLT set to CLT 10. I’m testing Mojave as we speak (same CLT, only Xcode 10 Beta 5). Since it didn’t work before with the HS setup above, and it does now, I’m expecting it to work with Mojave as well. I’ll update you as soon as possible. I’m doing it with clean sources on both. So that will take a little bit more than just the building itself. But so far, yeah, seems to be working.
    1 point
  41. Yep, it does. And the ro.po file itself already has the necessary translations for PrefPane, for as far as I could see. I mean, I should probably be more confident about this, cause I added them there. :))) But yeah...not sure why it doesn't use them... Maybe there's something missing somewhere. But I don't think it will just not display any of those translations and only in PrefPane... That seems weird. Also, even weirder is the fact that it seems to work for KO. :)) I mean...what the hell? :))
    1 point
  42. WTF Apple? lol do they know something we do not? HAHAHHA that was me trying to download the new beta update on a Skylake desktop emulating smbios IM18,1
    1 point
  43. Because now it's finished i can show you the new feature i was working on for tinu 2.1 an efi partition mounter! I have created it because lots of users using tinu will also need that tool and also because i already had the code to mount and unmount the efi partiton embedded inise the app from the original 2.0 release, so i have tried to make a small subtool with a nice and clean UI, it's still under testing but eventually it will became a standalone tool in the future, for now it is part of tinu and it's under testing it will be accessible by using the tools tab into the menu bar. here are some screen shots made on my macbook
    1 point
  44. Here you go. Untested but should work. Sierra Ryzen.zip
    1 point
  45. Update Lilu and IntelGraphicsFixup to the latest versions , use -lilubetaall and -igfxbeta boot flags
    1 point
  46. Well, it has always been clear that this patch will most likely fail after the next update of the driver. Try to use the "built-in" patch which should still work as it doesn't rely on any specific code pattern.
    1 point
  47. My test code still works on it. I may go back to this in a month as I am semi-retiring and may have time to pick up the unlocker code once again.
    1 point
  48. The is the Post-Install topic following the Ryzen Clover Installation Guide for macOS Sierra. If you have yet to install Sierra on your Ryzen machine, check out that thread for help installing. Here we can discuss post install troubleshooting such as well known issues with NVIDIA Drivers, audio interfaces, etc. Here is one workaround for audio that I am using - My audio was not working and I spent days trying to get it to work (ASUS Prime X370 Pro) to no avail. Eventually I bought this for $10 and it worked immediately with no drivers or setup: https://www.amazon.com/gp/product/B072BMG9TB/ref=oh_aui_detailpage_o02_s00?ie=UTF8&psc=1 One question for starters, I am using a Radeon R9 280x with no graphics injection. If I put my Ryzen build to sleep, it changes power states correctly. When Powered back on, the monitors don't turn on. I don't know if this is related to the GPU, or just an issue in general, but in any case I would appreciate any help!
    1 point
×
×
  • Create New...