All Projects → upupming → Lenovo-G50-80-Clover

upupming / Lenovo-G50-80-Clover

Licence: GPL-3.0 license
Clover configuration for Hackintosh on G50-80 (Broadwell version 80E5007CCD)

Programming Languages

Rich Text Format
576 projects
shell
77523 projects
HTML
75241 projects

Projects that are alternatives of or similar to Lenovo-G50-80-Clover

OpenCore-EFI-Lenovo-Y50-70
Lenovo Y50-70, OpenCore 0.8.8 EFI for Big Sur, Monterey and Ventura (FHD and UHD)
Stars: ✭ 63 (+53.66%)
Mutual labels:  hackintosh, lenovo
Lenovo RUI7000 Hackintosh
联想小新锐7000 黑苹果配置
Stars: ✭ 29 (-29.27%)
Mutual labels:  hackintosh, lenovo
P Little
CLOVER for ACPI hotpatch
Stars: ✭ 228 (+456.1%)
Mutual labels:  hackintosh
OS-X-HP-EliteDesk-800-G3-DM-Clover
Files needed for installing Mac OSX on HP EliteDesk 800 G3 Desktop Mini Business PC 65W/35W. Feel free to contribute!
Stars: ✭ 24 (-41.46%)
Mutual labels:  hackintosh
Hackintosh-ASUS-A455LF-Notebook
EFI Folder for ASUS A455LF-WX039D Notebook Series with Clover/OpenCore Legacy or UEFI
Stars: ✭ 27 (-34.15%)
Mutual labels:  hackintosh
DellXPS15-9560-OSX
Repository to run Sierra on the Dell XPS 15 9560 (2017)
Stars: ✭ 55 (+34.15%)
Mutual labels:  hackintosh
GIGABYTE-B360M AORUS PRO-8700-Hackintosh-OpenCore-EFI
技嘉 B360M AORUS PRO / i7-8700 UHD630 / macOS 12 Monterey / macOS 11 Big Sur / 黑苹果 OpenCore EFI / GIGABYTE B360M AORUS PRO Hackintosh OpenCore EFI
Stars: ✭ 51 (+24.39%)
Mutual labels:  hackintosh
Hackintosh Gigabyte Z390m Gaming
Only for OpenCore bootloader
Stars: ✭ 222 (+441.46%)
Mutual labels:  hackintosh
XPS9570-OpenCore
XPS 9570 Hackintosh with OpenCore
Stars: ✭ 51 (+24.39%)
Mutual labels:  hackintosh
omen15dc-hackintosh
适用于暗影精灵4 i5-8300H + GTX1050Ti 的黑苹果 EFI(本项目不再维护,推荐使用:https://github.com/sunmousn/OMEN-by-HP-Laptop-15-dc0xxx)
Stars: ✭ 21 (-48.78%)
Mutual labels:  hackintosh
Lenovo-Thinkpad-X240
Lenovo ThinkPad X240 using OpenCore Bootloader
Stars: ✭ 51 (+24.39%)
Mutual labels:  hackintosh
MSI-GS63VR-Hackintosh
macOS Monterey on MSI gs63vr 7rf (hackintosh)
Stars: ✭ 19 (-53.66%)
Mutual labels:  hackintosh
dotfiles
.foos for foos & more
Stars: ✭ 21 (-48.78%)
Mutual labels:  lenovo
HP-EliteDesk-800-G2-DM-Hackintosh
OpenCore version of HP EliteDesk 800 G2 Desktop Mini Business PC (35W/65W) Hackintosh Support.
Stars: ✭ 45 (+9.76%)
Mutual labels:  hackintosh
Dell-Latitude-E7480-Hackintosh
OC 0.8.X EFI for Dell Latitude E7480
Stars: ✭ 33 (-19.51%)
Mutual labels:  hackintosh
Dell Inspiron 7560 Hackintosh
Dell Inspiron 7000 (7x60) for macOS Mojave & High Sierra & Sierra
Stars: ✭ 222 (+441.46%)
Mutual labels:  hackintosh
ryzen-hackintosh
My hackintosh files & hardware info 
Stars: ✭ 19 (-53.66%)
Mutual labels:  hackintosh
ThinkRchive
An app showing all details for various Lenovo Thinkpad models. Made to try out Jepack Compose for Android.
Stars: ✭ 84 (+104.88%)
Mutual labels:  lenovo
Patched-AppleHDA-for-Mac-OS-Sierra-10.12
Patched AppleHDA for Realtek ALC ,VIA VT, IDT , Cirrus Logic Audio Codecs for Hackintosh's
Stars: ✭ 38 (-7.32%)
Mutual labels:  hackintosh
Hack-HP-EliteBook-850-G5
A HP EliteBook 850 G5 Hackintosh running macOS Mojave 10.14.6.
Stars: ✭ 39 (-4.88%)
Mutual labels:  hackintosh

Mojave Hackintosh for Lenovo G50-80 (Broadwell 5200U version)

Warning: Please read this guide carefully. Simply copying my configuration file is very likely to not work (because there are many different Lenovo G50-80 according to PSREF), although you can still play around. You should apply the same steps as mine to get your Hackintosh working on your laptop. If you still want to try, please download it here.

Happy hacking 😉

Table of Contents

Specs

Model: Lenovo G50-80
Bios version: B0CNA0WW
CPU: i5 5200U, HD 5500 Graphic
RAM: 8GB
Hard drive: Kingston 256 GB SSD + 1 TB Seagate HDD
Audio: Conexant CX20752
Ethernet: RTL8111

BIOS update and specs can be found at here, or simply use this link https://download.lenovo.com/consumer/mobiles/b0cna0ww.exe to download the BIOS update.

DSDT patches

See patches.txt. I only patched DSDT.aml and ignored all SSDT-*.aml.

Please follow the DSDT patching tutorial by RehabMan carefully, and you may find this video very helpful.

The patched results can be found at EFI/CLOVER/ACPI/patched.

Brightness adjustment keys

For me, my laptop use F11/F12 for brightness down/up, so I have to map these keys to brightness adjust methods. By following Patching DSDT/SSDT for LAPTOP backlight control, I found my laptop use EC query methods (ACPI) for those keys. (This is the case with most modern laptops.) The Consloe.log shows they are _Q11 and _Q12. So the patch I used for mapping these keys is (see also in patches.txt):

into method label _Q11 replace_content
begin
// Brightness Down\n
    Notify(\_SB.PCI0.LPCB.PS2K, 0x0405)\n
end;
into method label _Q12 replace_content
begin
// Brightness Up\n
    Notify(\_SB.PCI0.LPCB.PS2K, 0x0406)\n
end;

The ACPI debug version of my EFI configuration can be found at EFI_with_ACPI_DEBUG. I basically added the ACPIDebug.kext and then patched the DSDT with Add DSDT Debug Methods and Instrument EC Queries from https://github.com/RehabMan/OS-X-ACPI-Debug (add the source to MaciASL).

Kexts

Note: All kexts used can be found at EFI/CLOVER/kexts/Other, and I prefer to only install kexts to EFI folder instead of /S/L/E or /L/E for better update experience.

  • Keyboard and trackpad: VoodooPS2Controller.kext (I used the debug version for testing keys are PS2 or ACPI). I personally would like to enable single tap on trackpad in System Preferences -> Trackpad -> Tap to click, also enable one-finger tap & drag in System Preferences -> Accessibility -> Mouse & Trackpad -> Trackpad options -> Enable dragging without drag lock.
  • Audio: AppleALC.kext + layout-id=3, HDMI audio fixed with WhateverGreen framebuffer patching, see here.
  • Ethernet: RealtekRTL8111.kext
  • Graphics: Lilu.kext + WhateverGreen.kext, note you will need use config_HD5300_5500_6000.plist by RehabMan to set stolenmem to 19 MB and cursormem to 9 MB, see this and this. Also, you should enable 'Legacy support' in BIOS's boot tab to avoid glitches, see this post.
  • Battery status: ACPIBatteryManager.kext + the [bat] Lenovo G50-70 DSDT patch

Bluetooth

Go to Windows device manager and find your bluetooth's vid and pid information:

USB\VID_105B&PID_E065&REV_0112
USB\VID_105B&PID_E065

Convert the hex to decimal using google search or any tool you prefer:

hex E065 == decimal 57445
hex 105B == decimal 4187

Add the following to S/L/E/IOBluetoothFamily.kext/Contents/PlugIns/BroadcomBluetoothHostControllerUSBTransport.kext/Contents/Info.plist -> IOKitPersonalities:

<dict>
	<key>Lenovo G50 80 Bluetooth</key>
	<string>com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport</string>
	<key>IOClass</key>
	<string>BroadcomBluetoothHostControllerUSBTransport</string>
	<key>IOProviderClass</key>
	<string>IOUSBHostDevice</string>
	<key>idProduct</key>
	<integer>57445</integer>
	<key>idVendor</key>
	<integer>4187</integer>
</dict>

A demo patched Info.plist can be found at Bluetooth/Info.plist.

Note that in order to let the native Bluetooth work, we have to boot into Windows or Linux first, and then restart into macOS. See here. This is known as RAMUSB device firmware update problem. If you find any solution or want to discuss/fix this, please open an issue.

Test of transferring files to my Pixel phone using bluetooth

20190307162150.png

Further working

At present, everything is working except:

  1. Brightness adjustment -- Done
  2. Wake from sleep -- Unsolvable Disable sleep as a workaround, see my post on tonymacx86. Discussions are welcome there!

Links

  1. tonymacx86 FAQ
  2. The same model guide on tonymacx86
  3. Solve error when patching DSDTs
  4. Guide for i3 version of Lenovo G50-80 in tonymacx86
  5. Video guide for i3 version
  6. Get bluetooth vid & pid from windows
  7. Inject bluetooth kext
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].