This repo contains information for getting macOS working on an Intel NUC7i3BNH.
This EFI is built and tested on latest Ventura release: retro-compatibility with Big Sur and Monterey is fine!
This EFI is also compatible with latest macOS Sonoma, but, honestly, how pleasant (i.e. snappy) do you think user experience would be on an operating system mounted on an Intel 7 i3 processor (not even capable of Turbo Boost) with only 2 cores?
This repository is for personal purposes
- Read the entire README before you start.
- I am not responsible for any damages you may cause.
- Should you find an error or improve anything — whether in the config or in the documentation — please consider opening an issue or pull request.
- Complete EFI packs are available in the Releases page (please, refer to the rightside menu).
- Please do not clone or download the main branch for daily use: it may include unstable code just because it is my repository.
If you find this bootloader configuration useful, consider giving it a star to make it more visible.
If you find my work useful, please consider donating via PayPal.
What is an Intel NUC? It is a tiny barebone PC size of a few CD cases piled on top of each other.
Mine is NUC7i3BNH which is the Core i3 model with a 2.5'' slot for an additional SATA drive coupled with a BenQ PD2500Q which is a 2k 25" calibrated monitor.
NUC Components | Details |
---|---|
Computer model | Intel NUC7i3BNH |
Processor | Intel Core i3-7100U Processor @ 2.4 GHz dual core with 15 W TDP |
Memory | 16 GB DDR4-2133 SO-DIMM @ 1.2 V |
M.2 SSD Card | Lexar Professional NM700 PCIe NVMe 256 GB [LNM700-25RB] |
SATA SSD 2.5" Drive | Crucial M500 240 GB [CT240M500SSD1] |
Integrated Graphics | Intel(R) HD Graphics 620 GPU |
Sound Card | Realtek ALC283 |
LAN Adapter | Intel Gigabit Ethernet I219 V4 |
Wireless Card | Intel Wireless-AC 8265 (802.11ac, dual-band, max. 867 Mbps) |
Bluetooth Card | Intel Bluetooth 8265 (v. 4.2) |
Other Components | |
Monitor | BenQ PD2500Q 2k Display @ 2560 x 1440 (25" @ 16:9) |
Keyboard | Apple Keyboard A1243 (Italian layout) |
Mouse | Apple Magic Mouse 2 |
Other hardware specifications:
- Four USB 3.0 ports (2 on the front, 2 on the rear)
- One USB type-C Port (which offers USB 3.1 gen2) with DisplayPort 1.2 functionality
- One normal full-size HDMI 2.0a port
- Micro SD card reader (support SDXC cards and UHS-I)
- Dual-array microphones on the front panel
- Infrared sensor and 3.5 mm audio jack
Note: NUC7i3BNH (i.e. the i3 model for NUC7) does not support ThunderBolt over the Type-C connector, unlike the more expensive models in the lineup.
Device Firmware BIOS version: BNKBL357
Benchmarks
GPU - OpenCL Performance 4514 | GPU - Metal Performance 4253 |
Single-Core Score 595 ~~~~~~~~~~~~~~~~~~~~~~ Multi-Core Score 1384 |
Update to the latest BIOS version, then load BIOS Defaults and finally in the Advanced submenu change the following settings:
Devices -> USB -> Port Device Charging Mode: Off
Devices -> USB -> USB Legacy -> Disabled
Power -> Wake on LAN from S4/S5: Stay Off
Boot -> Boot Configuration -> Network Boot: Disable
Boot -> Secure Boot -> Disable
For privacy reasons, all SMBIOS information has been wiped out in the configuration file EFI/OC/config.plist
.
- You need to generate your unique
SMBIOS
info by yourself (recommend to use CorpNewt's GenSMBIOS), and inject them into yourconfig.plist
.
For dual-booting systems, Windows Activation may fail due to different hardware UUID generated by OpenCore
- According to OpenCore Official Configuration, you are highly recommended to inject the original Windows system UUID to
PlatformInfo -> Generic - >SystemUUID
inEFI/OC/config.plist
: runwmic csproduct get UUID
command in Windows PowerShell app
See Current status
All is working fine!
The active and working USB ports are listed in the following table, while all unused or non-referenced USB ports are accordingly removed:
USB 2.0 Port Name | USB 3.0 Port Name | Hardware Location | Controller |
---|---|---|---|
HS01 | SS01 | Front RIGHT socket | Primary XHCI |
HS02 | SS02 | Front LEFT socket | Primary XHCI |
HS03 | SS03 | Rear BOTTOM socket | Primary XHCI |
HS04 | SS04 | Rear TOP socket | Primary XHCI |
HS08 | n/a | Internal Bluetooth port | Primary XHCI |
n/a | SS01 | Rear USB-C socket | Secondary XHCI |
- Primary
XHCI
:8086:9f2f
- Secondary
XHCI
:8086:15db
(recognized as a subsystem for Thunderbolt ControllerJHL6340
)
Secondary XHCI
interface enables the unique USB type-C Port (which offers USB 3.1 gen2) with DisplayPort 1.2 functionality present on NUC7i3BNH. Why is this aspect so important for my config?
- Background:
- a known issue (Reddit & Mac mini 2020 M1, Reddit & Mac mini 2018, MacRumors & Mac mini 2020) between my monitor BenQ PD2500Q and Mac is a vertical line on the right side of the display at all resolutions except 1920x1080 HD one;
- this issue is related to HDMI port used for connecting display to NUC7i3BNH;
- a such issue is also documented for Mac mini 2018 or 2020 machines using HDMI ports;
- Solution: using a USB type-C (from NUC7i3BNH) to HDMI cable adapter fixes the issue for all BenQ PD2500Q available resolutions even at highest QHD one.
Increase Launchpad icons number
By default, the Launchpad shows the icons in 5×7 format (i.e. rows x columns).
Since BenQ PD2500Q is a 2k 25'' monitor, type in Terminal the following commands:
defaults write com.apple.dock springboard-rows -int 7
defaults write com.apple.dock springboard-columns -int 10;killall Dock
Relaunch the Launchpad to see the icons are changed now.
Finally you can revert to the default setting with the following commands:
defaults delete com.apple.dock springboard-rows
defaults delete com.apple.dock springboard-columns
defaults write com.apple.dock ResetLaunchPad -bool TRUE;killall Dock
(Warning: the last command also will remove any custom folders you have created)
Make macOS zsh Terminal colorful
The default macOS Terminal looks very lame since it lacks in visibility: things should be colorful like Ubuntu. In the following steps, a proper solution for that is given without installing any custom theme:
- Choose any black theme first as the color combination of my snippet is dark theme friendly
- Open Terminal and type:
cd
touch zshrc
open zshrc
- Append the following code in the file:
export CLICOLOR=1
export LSCOLORS=GxBxCxDxCxegedabagaced
- Save the file and quit your default editor
- In Terminal type:
mv zshrc .zshrc
- Quit Terminal (
cmd + q
) - Now open a new Terminal window and the changes will be reflected
By setting CLICOLOR=1
you are enabling colors.
LSCOLORS
is the variable where you will define which file should display what color: it is used to color the directory and file list.
It provides you 11 positions, each with FB
(foregroundColor backgroundColor) combination. Thus it contains 22 characters. Below is the details of which position means what:
- directory
- symbolic link
- socket
- pipe
- executable
- block special
- character special
- executable with setuid bit set
- executable with setgid bit set
- directory writable to others, with sticky bit
- directory writable to others, without sticky
The colors for each position are placed as FB
format; below is the list which color means what:
a
: blackb
: redc
: greend
: browne
: bluef
: magentag
: cyanh
: light greyA
: bold black, usually shows up as dark greyB
: bold redC
: bold greenD
: bold brown, usually shows up as yellowE
: bold blueF
: bold magentaG
: bold cyanH
: bold light grey; looks like bright whitex
: default foreground or background
The colors mentioned above are ANSI colors, but according to the version of your macOS or terminal, they may differ a little.
Dual Booting: fix Windows time
Windows uses local time by default while macOS uses universal time. You can switch Windows to use universal time. Open up a command prompt in Windows as an administrator and copy and paste this in:
reg add "HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\TimeZoneInformation" /v RealTimeIsUniversal /d 1 /t REG_QWORD /f
That will make Windows use universal time instead of local time. Then update your clock via the built-in internet time setting to update the time.
Setting up BenQ PD2500Q speakers as default audio output device
- Open Audio MIDI Setup.app in your
/Applications/Utilities
folder - Select the Output tab in the middle
- Then, from the side list, select the output you want as use as default --> DisplayPort; then right-click the entry and select:
- "(speaker icon)": Use this device for sound output;
- "(macface icon)": Play alerts and sound effects through this device.
Item | Version | Remark |
---|---|---|
MacOS | 13.6.9 | |
OpenCore | 1.0.1 | Default Bootloader |
Lilu | 1.6.8 | Kext/process/framework/library patcher |
WhateverGreen | 1.6.7 | Handle Graphics card |
AppleALC | 1.9.1 | Handle/fix onboard audio |
CPUFriend | 1.2.8 | Power management |
HibernationFixup | 1.5.1 | Handle hibernate status |
IntelBluetoothFirmware | 2.4.0 | Handle Bluetooth |
AirportItlwm | 2.4.0 alpha | Handle native Wi-Fi card |
IntelMausi | 1.0.7 | Handle native Ethernet LAN card |
NVMeFix | 1.1.1 | Fix for NVMe SSDs |
RestrictEvents | 1.1.4 | Block unwanted processes |
VirtualSMC + plugins | 1.3.3 | SMC chip emulation |
Sinetek-rtsx | 9.0 | Micro SD card reader driver |
USBInjectAll | 0.7.7 | Inject USB ports |
VoltageShift | 1.25 | Undervoltage tool |
Standing on the shoulders of giants! Based on the works of many great people.
- Acidanthera
- Dortania's OC guide
- Rehabman's ACPI hotpatching guide
- CorpNewt's tools
- OpenWireless project
- Daliansky's OC-little repo
- Khronokernel's DarwinDumped repo
And to everyone else who supports and uses my repo.