This is a repository where I store files that were configured to run macOS properly on HP EliteDesk 800 G3.
You can use the EFI folder or refer to the configurations here to make your own bootable macOS installation USB. More information on creating bootable macOS installation USB please checkout the official guide from OpenCore. If you are on the same HP model or system, you can copy or modify my EFI folder and place it into EFI partition of your USB.
Explainations for files and configurations are presented in way that user can understand and apply for his/her own PC with the same system or model.
Disclaimer: I do not own any responsibilities if your PC running into problems by patching the files or applying the guide here. Please do your own research.
Required: Please reset your BIOS to default settings before this
Advanced → Boot Options
Advanced → Secure Boot Configuration
Advanced → System Options
Advanced → Built-in Device Options
Notice: Make sure to save your settings before restarting
Below are three SSDTs required for my system. To find SSDTs for your system, please refer to this document.
Location:
EFI/OC/ACPI/
Required
Optional
Location:
EFI/OC/Drivers/
Required
Optional
VirtualSMC
package)VirtualSMC
package)CPUFriend.kext
)Location:
EFI/OC/Kexts/
The USBPorts.kext file in the EFI folder was created using Hackintool. The kext file is used to recognize all the ports of my machine. If you are having a different model, you can refer to the video here for making one. Thanks to Tech Labs.
Required (only remove when you are good with your set up)
-v
: boot macOS in verbose modedebug=0x100
: prevents macOS not to reboot when facing a kernel panic, this will help giving you some insights why the system is not booting.keepsyms=1
: prints the symbols during a kernel panic.Extras
You will notice that the boot-args
from my config.plist
file has the argument alcid=20
. It will be needed for playing boot chime with internal audio. The number 20
is layout ID for my Conexant audio device, which you can find all the supported coded in this page.
Also, there is an extra argument igfxonln=1
that I aimed to force all displays online for fixing wake issue (but not helped at all). You may want to delete this argument.
So literally you will need this in your
boot-args
:-v debug=0x100 keepsyms=1 alcid=xx
, withxx
is your audio layout ID.
Follow the guide over here by choosing your correct CPU model name.
From my system on Kaby Lake and Intel Graphics HD 630, I will need to set
under PciRoot(0x0)/Pci(0x2,0x0)
from DeviceProperties
section of config.plist
file.
Notice: If you are on HD 630, it's safe to choose <00001659> as <00001B59> caused an issue for one of my DisplayPorts (not receive signal after booting).
Follow the guide from OpenCore here
GUI bootloader
I already included the EFI folder that contains Resources for a GUI bootloader, and also configured the config.plist
.
If you want to modify the theme, feel free to change it from the property Misc -> Boot -> PickerVariant
of config.plist
file. Options can be found here.
Boot chime
Important: if you are not using my EFI folder, make sure you have
AudioDxe.efi
in yourEFI/OC/Drivers/
and it must be on the same OpenCore version withHfsPlus.efi
andOpenRuntime.efi
.
You need to define two things below in order to get boot chime:
AudioCodec
: go to Terminal and run:
ioreg -rxn IOHDACodecDevice | grep IOHDACodecAddress
Then you will probably see this:
| "IOHDACodecAddress" = 0x0
| "IOHDACodecAddress" = 0x2
There will be few lines appear on Terminal, mostly will be two. First is the internal audio (in my case that is the Conexant one), and the second one will be HDMI/DVI sound. In this case I will pick 0x0
for the AudioCodec
as I want to play boot chime from the internal audio.
You can change it to another value appears, if it won't work, just switch to another one.
AudioDevice
: run gfxutil to find the path
/path/to/gfxutil -f HDEF
You will receive something like this:
00:1f.3 8086:a2f0 /PCI0@0/HDEF@1F,3 = PciRoot(0x0)/Pci(0x1F,0x3)
Grab the right part after the =
, in my case it would be PciRoot(0x0)/Pci(0x1F,0x3)
.
After get the
AudioCodec
andAudioDevice
, put them underUEFI -> Audio
. Other configurations I have already made, you can change the others if you know.
Contributions are always welcomed. Please make a Pull request from your side, I will review and merge if it looks good.