Tips for using MacOS on the Dell Chromebook 7310 (with Core i3 or i5 CPU)
A complete EFI is not provided in this repo, in accordance with “DIY” tradition. DIY: Do It Yourself. You will be better familiar with the process and will be able to troubleshoot on your own by starting with the Dortania OpenCore Install Guide. Please do not request an EFI here.
Feature | Status | Notes |
---|---|---|
WiFi | Working | Native with BCM94360NG. If you’re using the stock card, see OpenIntelWireless (not covered) |
Bluetooth | Working | Native with BCM94360NG. If you’re using the stock card, see OpenIntelWireless (not covered) |
Suspend / Sleep | Working | |
Trackpad | Working | With VoodooI2C.kext and VoodooRMI.kext and ACPI patch. |
Graphics Accel. | Working | |
Internal Speakers | Working | AppleALC.kext using layout-id 3 |
Keyboard backlight | Working | With SSDT-KBBL.aml |
Keyboard & Remaps | Working | See remap ACPI sample here |
SD Card Reader | Working | It is USB, so insert a card into the slot while USB mapping |
Headphone Jack | Working | AppleALC.kext using layout-id 3 |
HDMI Audio | Working | |
HDMI Video | Working | |
USB Ports | Working | Working with USB mapping |
Webcam | Working | |
Internal Mic. | Working | AppleALC.kext using layout-id 3 |
Shutdown / Restart | Working | |
Continuity | Untested | Will not work with stock Intel card. Should work with replacement BCM94360NG card |
NVRAM | Working | Native NVRAM working with firmware 4.20 and 4.20.1. Earlier versions may need to emulate |
This document assumes you’ve already disabled write protect and successfuly flashed the Chromeintosh fork of MrChromebox’s Coreboot firmware to your device.
Note: MrChromebox coreboot 4.20 (5/15/2023 release) and higher is confirmed to cause issues with booting macOS on Chromebooks without taking specific steps. There are several methods to work around this. See “4. Fixing CPU core (thread) definition and plugin-type” below
- Often, with the Dell 7310, booting MacOS seems to hang after IGPU initialization or somewhere around BlueTooth verbose messages. The trick is to just swipe or tap the trackpad and it should continue booting.
In your config.plist
, under Booter -> Quirks
set ProtectMemoryRegions
to TRUE
. It should look something like this in your config.plist
when done correctly:
Quirk | Type | Value |
---|---|---|
ProtectMemoryRegions | Boolean | True |
Warning The above must be enabled for Chromebooks/Chromeboxes to boot MacOS.
Under DeviceProperties -> Add -> PciRoot(0x0)/Pci(0x2,0x0)
, the following modifications are recommended to enable graphics acceleration, enable smooth LCD backlight stepping, correct the HDMI output signal type, and disable the nonexistant 3rd framebuffer:
Key | Type | Value |
---|---|---|
AAPL,ig-platform-id | data | 06002616 |
framebuffer-patch-enable | data | 01000000 |
framebuffer-con1-enable | data | 9B3E0000 |
framebuffer-con1-type | data | 00080000 |
framebuffer-portcount | number | 2 |
enable-backlight-smoother | data | 01000000 |
You are free to experiment with different
AAPL,ig-platform-id
’s but 06002616 works well
MacBookAir7,2
works with Mojave through Monterey. Anything before or after those MacOS versions is not covered here.. You may find a better suited SMBIOS to mimic or for unsupported future OS versions. Experiment as you wish.SSDT-KBBL.aml
and can be found here. The light may or may not come back on after sleeping, but you can use the key-command to dim it back up… This is a bonus feature after all.oc_patches.plist
into your config.plist
under ACPI -> Patch
.Snapshot (cmd +r) or (ctrl + r) your config.plist
.
Warning: Don’t use “clean snapshot” (
ctrl/cmd+shift+r
) in Propertree after initially copying the sample as config.plist. This can wipe some work. Only do regular snapshots after first starting. (ctrl/cmd+r
)
Reminder: In depth information about OpenCore can be found here.
Coreboot UEFI firmware 4.20 (5/15/2023 release) has a known issue where booting macOS will hang even if you think you’ve created a plugin-type SSDT. To fix this, just use Ethan’s firmware script and the CPU address is solved, then you can use SSDTTime like the Dortania Guide suggests (but feed it SSDT-1.aml from your SysReport).
Propertree should arrange the kexts in the correct order when using OC Snapshot, but here are the enabled kexts and how I’ve ordered them in my config.plist:
Lilu.kext
VirtualSMC.kext
SMCBatteryManager.kext
SMCSuperIO.kext
SMCProcessor.kext
WhateverGreen.kext
AppleALC.kext
USBToolbox.kext
UTBMap.kext
VoodooPS2Controller.kext
VoodooPS2Keyboard.kext
VoodooPS2Trackpad.kext
VoodooRMI.kext
VoodooRMI.kext/VoodooInput.kext
VoodooI2C.kext/VoodooGPIO.kext
VoodooI2C.kext/VoodooI2CServices.kext
VoodooI2C.kext
VoodooRMI.kext/RMII2C.kext
Any kexts that are auto-loaded but not listed above should be disabled in your config.plist.
ssdt-plug-4200.aml
SSDT-EC.aml From SSDTTime.
SSDT-HPET.aml From SSDTTime. (requires rename hotpatches, don't forget those)
SSDT-KBBL.aml
SSDT-PNLF.aml From SSDTTime.
ssdt-syna.aml (requires hotpatch below)
ssdt-chromebook-keys.aml
Note: Some of these SSDTs were generated with SSDTTime and some were manually written by me for this specific Chromebook. See the ACPI Sample folder for .dsl files you can download, double check, then compile into AML.
ssdt-syna.aml defines the _CID of the Synaptics RMI-I2C trackpad as PNP0C50
. The original _CID in the DSDT is ACPI0C50
so we need a hotpatch to rename _CID to XCID. This allows the new _CID in ssdt-syna.aml to work so that VoodooRMII2C can attach to the trackpad. one8three’s method involves manually editing the plist of the kext. This method seems more suitable to survive kext updates down the line when you may forget about the _CID situation with the trackpad. Credit to one8three for identifying the discrepancy in the DSDT. Here is the hotpatch to put in the ACPI/Patch section of your config.plist:
| Key | Type | Value |
| ——————– | —— | —————— |
| Base | String | |
| BaseSkip | Number | 0 |
| Comment | String |_CID to XCID in SYNA|
| Count | Number | 0 |
| Enabled | Boolean| True |
| Find | Data | 5F4349440D41 |
| Limit | Number | 0 |
| Mask | Data |
APFS
and GUID Partition Table / GPT
ctrl
+ left alt
and ,
or .
.
,
to decrease, .
to increase.