Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 12/23/2019 in all areas

  1. OC forked https://github.com/n-d-k/OpenCorePkg. Additional features/changes: ============ [ Multi-Boot ] - ACPI patches and Booter Quirks are optional for non macOS with setting ACPI->Quirks->EnableForAll / Booter->Quirks->EnableForAll to yes (default is no). - SMBIOS and Device Properties patches will only applied to macOS. [ Hotkeys ] - Full functional Hotkeys [1-9] corresponding to Boot Entry's Index number and dedicated W (Windows) / X (macOS) keys can be used without seeing Boot Picker. - While in boot picker, F10 can use to take a snapshot of the screen. [ Ui Boot Picker ] - Bios Date/time, auto boot to the same OS or manual set to always boot one OS mode, and OC version are displayed in boot picker. - Auto boot to previous booted OS (if Misc->Security->AllowSetDefault is NO/false). - macOS Recovery/Tools Entries are hidden by default, use Spacebar/Mouse click right in Boot Menu as a toggle on/off to show/hide hidden entries. - Mouse supported. [ Custom Entries ] - Custom entries are now listed first in picker menu and by the orders they are appeared in Misc->Boot->Entries, before all other entries. - Ability to change entry name found by auto scanner by adding custom entry with the exact same device path, this will give users the option to complete change how all boot entries listed in Boot Picker. [ Others ] - No verbose apfs.efi driver loading (if using apfs.efi instead of ApfsDriverLoader.efi). - ndk-macbuild.tool script are set to compile with latest edk2 (One can easily set to stable edk2 if prefer). Usage: - To build OpenCore, run "./ndk-macbuild.tool" at Terminal (require Xcode and Xcode Command Line Tool installed, and open xcode to accept license agreement before compiling). 4k light theme 4k dark theme.
    1 point
  2. Version 10.12 L

    98,726 downloads

    This download is only for users who have a laptop with a 2010 Intel® Arrandale Processor with Intel® HD Graphics: 1st Generation Intel® Core™ Processor with Intel HD Graphics (Arrandale only) Intel® Celeron® Processor with Intel® HD Graphics (Arrandale only) Intel® Pentium® Processor with Intel® HD Graphics (Arrandale only) Make sure the Device ID and Vendor ID match with the following: Device ID: 0042 or 0046 Vendor ID: 8086 In here you will find my QE/CI and CI only packages for your 1st Generation Intel HD Graphics IGPU for OS X Mountain Lion, OS X Mavericks, OS X Yosemite, OS X El Capitan, macOS Sierra, and macOS High Sierra. Choose your package: Download the Intel® HD Graphics QE/CI package if your laptop is using the LVDS connector. This package has the necessary kexts to enable Quartz Extreme with Core Image (QE/CI). This enables full hardware/graphics acceleration. or Download the Intel® HD Graphics CI package if your laptop is using the eDP connector. This package enables Core Image (CI) only. This enables partial acceleration. Note: CI only (CI) is only available on OS X Mavericks 10.9.5 and below. Future releases of macOS requires full graphics acceleration (QE/CI) for optimal performance and stability. For more information about 1st Generation Intel® HD Graphics, everything is explained in my guide: http://www.insanelymac.com/forum/topic/286092-guide-1st-generation-intel-hd-graphics-qeci/
    1 point
  3. If you have a working Brightness Slider and you might be using Brightness slider or manual hotkeys to control brightness then this guide may help you to use your Native hotkeys of laptop. (All the Credits goes to @RehabMan For OS-X-ACPI-Debug Kext and DSDT Patches.) This step assumes that you are using RehabMan's VoodooPS2Controller or Acidanthera's PS2Controller Install the kext: https://github.com/RehabMan/OS-X-ACPI-Debug Open MaciASL and click on patch.(Add rehab man repo) Apply "Add DSDT Debug Methods" and "Instrument EC Queries" that are under Brightness Fix. Save the DSDT and restart Look in Syslog as you press the key corresponding to brightness to determine which _QXX methods handle the keys (UPDATE: From Sierra Apple changed logging process. So you won't find ACPIdebug result using syslog command. Instead use following command ) log show --last 5 | grep ACPIDebug 6. Then patch DSDT: into method label _Q1D replace_content begin // Brightness Down\n Notify(\_SB.PCI0.LPCB.PS2M, 0x0205)\n Notify(\_SB.PCI0.LPCB.PS2M, 0x0285)\n end; into method label _Q1C replace_content begin // Brightness Up\n Notify(\_SB.PCI0.LPCB.PS2M, 0x0206)\n Notify(\_SB.PCI0.LPCB.PS2M, 0x0286)\n end; Change the variable _Q1D/_Q1C as per the log. 7. Try compiling and check if it generates errors 8. If it does, then change the PS2M to PS2X according to the one found in your DSDT. You can find your keyboard device simply by checking on IOReg. Note the device name from "IONameMatched" under ps2controller and then search that name in your DSDT. 9. Save and place the compiled DSDT. 10. Now you should see that you have your corresponding keys to change your brightness http://www.tonymacx86.com/images/smilies/smile_osx.png Create SSDT HotPatch (Preferred for Opencore users) 1. Proceed with above steps till 5 in order to figure out which EC Methods are used for brightness hot keys. 2. The first thing we need to do is to block the default methods from DSDT by renaming them from _Q11 & _Q12 to XQ11 & XQ12 respectively. (Considering my keys are method _Q11 & _Q12). To do this create two ACPI rename patch. Find : 5F513131 //hex value of _Q11 Replace : 58513131 //hex value of XQ11 Comment: _Q11 to XQ11 rename Find: 5F513132 replace: 58513132 Comment: _Q12 to XQ12 rename 3. Now create a hot patch SSDT with two methods named _Q11 and _Q12 to control brightness in Mac OS and for other OS we can just redirect to the earlier renamed methods XQ11 & XQ12. DefinitionBlock ("", "SSDT", 2, "hack", "BRKEYS", 0x00000000) { External (_SB_.PCI0.LPCB.EC0_, DeviceObj) External (_SB_.PCI0.LPCB.EC0_.XQ11, MethodObj) // Brightness down method External (_SB_.PCI0.LPCB.EC0_.XQ12, MethodObj) // Brightness up method External (_SB_.PCI0.LPCB.PS2M, DeviceObj) //rename to your keyboard device Scope (_SB.PCI0.LPCB.EC0) { Method (_Q11, 0, NotSerialized) // _Qxx: EC Query, xx=0x00-0xFF { If (_OSI ("Darwin")) { Notify (PS2M, 0x0365) //send f14,rename to your keyboard device. } Else { \_SB.PCI0.LPCB.EC0.XQ11 () //redirects to original method for other OS. } } Method (_Q12, 0, NotSerialized) // _Qxx: EC Query, xx=0x00-0xFF { If (_OSI ("Darwin")) { Notify (PS2M, 0x0366) //sends f15, rename to your keyboard device. } Else { \_SB.PCI0.LPCB.EC0.XQ12 () } } } } FOR more detail and Queries,Check Out original Post of @RehabMan Here; http://www.insanelym...18#entry1997112 Get Latest Version of OS-X-ACPI-Debug kext here: https://bitbucket.org/RehabMan/os-x-acpi-debug/downloads
    1 point
  4. At first to add all addresses, but then to delete not necessary addresses. What addresses to leave, it is necessary to define experimentally.
    1 point
  5. Did we still need "FSInject.efi" in CLOVER?? When i install Clover, i read the description of FSInject.efi and it's written "Provide injection of kernel extensions from Clover folder.". Honestly, i can boot without this driver,, So when i must use it??? I just use this driver right now
    1 point
  6. Addresses undertake from OpenCore log.
    1 point
  7. Adesso ci siamo come configurazione del programmino forse intendi questo?
    1 point
  8. devi anche rimuovere usbinjectall comunque se ripercorri il tuo vecchio topic, ritrovi esattamente l'iter di tutto
    1 point
  9. è normale che risulti sconosciuto su 10.13 rimuovi l patch per port limit dal config, rimuovi anche ssdt-Nvidia riavvia e rifai ioreg
    1 point
  10. Hello! You could try this: At Clover boot screen select the shell icon, typ in the opened terminal window " nvram -c " (without the quotes) Reboot and try to boot normally the system. Have fun.
    1 point
  11. MaLD0n does the DSDTs for me buddy as there’s nobody better then the master of it himself.
    1 point
  12. non era lo stesso hardware. al tempo avevi un 4790K come processore. Presta attenzione a queste cose a anche alle acpi.. non è da scherzarci molto a riguardo.
    1 point
  13. @vector sigma I can't release Clover.app in 5101 because I am in ElCapitan now. Please add Clover.app to 5101 release and some other files.
    1 point
  14. TBH, I set my showpicker to off and used hotkey w and x to switch between Windows and macOS without having to see boot picker at all. I gave the boot pickers some mods because it was too simple. But i'll add your suggestion into the to do list.
    1 point
×
×
  • Create New...