80s toys - Atari. I still have
HomeBlogAbout Me

Macbook 2011 Mojave



While High Sierra supported most Macs made in 2010, Mojave is requires hardware from 2012, with a few exceptions. Here’s the full list of supported devices, in bold, followed by context: MacBook Early 2015 or newer. High Sierra supported MacBooks from 2009. MacBook Air, Mid 2012 or newer. High Sierra supported MacBook Airs from from 2010 on. Here are the Macs that will work with MacOS Mojave. If your MacBook, iMac or Mac Pro is from 2011 or earlier, you might be out of luck. Compared to High Sierra, the update presented today by Apple eliminates support for the old MacBook and MacBook Pro, Air, mini and iMac models of 2009, 2010 and 2011. If your device is not in this list, unfortunately it will not be possible to upgrade it to macOS Mojave. If it’s a white MacBook you can hack Mountain Lion and maybe even later with the OS X Hackers tools (which I’ve never used.) If it’s an aluminum 2008 MacBook, it is compatible with the Mojave patcher. Global Nav Open Menu Global Nav Close Menu; Apple; Shopping Bag +.

So you, like many others, have a 2011 MacBook Pro with video issues. This is normally lines on screen, stripes on screen, sometimes even black screen or blank screen.

We have bad news and good news.

The bad news, your GPU is failing. There is a widely known defect in the Radeon GPUs on these MacBook Pro models. You are not going to be able to fix the GPU. You can extend its life for a few weeks with a reflow, or attempt to replace the GPU. Replacing the GPU is very dangerous (brick warning), and you are just putting another defective unit on your board. The final option is to replace the logic board. This is insanely expensive, and again, just putting defective parts into service.

Onto the good news. With the removal of an EFI variable and 1 resistor, the GPU will be completely disabled, and you will never have to worry about it again.

But wait, why would you disable your GPU, you need that thing right?

The 2011 MacBook Pro actually has 2 very capable GPUs inside. 1 is the AMD Radeon, and the other is an Intel GPU. If you know anything about Intel GPU (and CPU), you know they are extremely reliable. So utilizing the Intel GPU means your GPU is going to live longer than you will.

A few other fun facts about this modification:

Cooling- Your MacBook Pro will run cooler. The Radeon normally pumps out a ton of waste heat. Now your Radeon is not powered on. No waste heat.
Even better, now you have 2 fans and 2 heatsink pipes dedicated to cooling the Intel GPU/CPU only.

Less fan noise – Since you now have 2 passive cooling systems working on one chip, your fans will run less, and quieter.

Linux Support – Getting Linux running on this MacBook Pro is a nightmare. Normally involves complicated boot arguments to bypass the AMD Radeon GPU. Guess what, now that it is not there anymore, Ubuntu Linux (and others) boot up natively with no modifications what so ever.

Battery Life – Now that you don’t have several watts of power turning into waste heat, you now have improved battery life.

No need to modify KEXTs – KEXTs or Kernel Extensions are the Drivers of the OS X world. As far as the OS knows, the AMD chip is not even there. It will not attempt to load the KEXT for it. Why would it, right?

Macbook 2011 Mojave

OK, lets get into this MacBook Pro GPU Modification.

::We have prepared a vastly simplified automated utility to perform this modification. It is a fully bootable disk image that includes a script that will run all the terminal steps with one simple command. It also includes a GUI (point and click) program to create the bootable USB Drive::

If you prefer to perform this manually, see the steps below.

Show Manual Steps

The first thing you will need to do is make a small modification to the EFI.
The instructions below use Arch Linux and a strict Terminal environment.

::Note from the developer: There is a known issue with performing this Mod on High Sierra. Apple changed the way the backlight is controlled on High Sierra, and upon waking from sleep the backlight will not turn on. After much research and logic board probing the issue has been identified as a Pulse Width Modulated signal to the backlight controller not being started. An additional Hardware Mod is required for High Sierra. This mod is explained in the steps below. ::

You can permanently disable discrete graphics card following next steps:

1. Prepare a Bootable USB pendrive with a non GUI Linux

1.1 Download ArchLinux ISO

  • You need a working computer for that and a spare CD/DVD/USB drive.
  • Download the latest Arch Linux ISO image.
  • Then you could either simply burn this ISO to CD/DVD (which later could be either inserted to MBP’s SuperDrive or External DVD Drive connected to MBP by two USB cables) or create a bootable USB.

1.2 Creating the bootable USB with the .iso

  • First, you need to identify the USB device.
  • Open /Applications/Utilities/Terminal in MacOS and list all storage devices:diskutil listYour USB device will appear as something like /dev/disk2 (external, physical). Verify that this is the device you want to erase by checking its name and size and then use its identifier for the commands below instead of /dev/diskX.
  • A USB device is normally auto-mounted in macOS, and you have to unmount (not eject) it before block-writing to it with dd:diskutil unmountDisk /dev/diskX
  • Now copy the ISO image file to the device. The dd command is similar to its Linux counterpart, but notice the ‘r’ before ‘disk’ for raw mode which makes the transfer much faster:sudo dd if=path/to/arch.iso of=/dev/rdiskX bs=1mAfter completion, macOS may complain that “The disk you inserted was not readable by this computer”. Select ‘Ignore’. The USB device will be bootable.
Macbook

2. Use Linux to change EFI vars

2.1 Boot to it

  • Insert this CD/DVD/USB to Macbook Pro, hold Option key (alt) while booting.
  • Choose “EFI boot” (that is your bootable installation media).
  • When the menu shows, press “e” key to edit the GRUB options of the Arch Linux archiso x86_64 UEFI CD menu entry while it is selected at the main screen, add nomodeset to the end of this line and press Enter.
  • If everything is done correctly, you will find yourself at the Linux console! (It takes some time so be patient and wait for the prompt)

2.2 Clear existing EFI vars

Looks like efivarfs filesystem is mounted by default! Does fortnite work on macbook air. So you can already cd /sys/firmware/efi/efivars and ls to explore this directory and see if there is a gpu-power-prefs-.. variable (where … is UUID of this variable).

  • If there is such a variable, its better to remove it with rm.rm gpu-power-prefs-…
  • If you are getting the “operation not permitted” message while attempting to rm, it means that efivarfs has been mounted as read-only and you need to remount it with read-write permissions and try again:cd /
    umount /sys/firmware/efi/efivars/
    mount -t efivarfs rw /sys/firmware/efi/efivars/
    cd /sys/firmware/efi/efivars/
    rm gpu-power-prefs-…
  • If this also fails (you still can’t erase the file), use chattr command to disable file immutability and then erase the file:chattr -i 'gpu-power-prefs-…”
    rm gpu-power-prefs-…

2.3 Create a new gpu-power-prefs-… file

2.4 Add immutability to the gpu-power-prefs-… file

This chattr command is supposed to lock a file to make it accessible only by “superuser” – and so that, while booting, your EFI will have no chance to screw up your gpu-power-prefs-… variable under any circumstances

2.5 Unmount efivars and reboot

Change to the root directory to unmount efivars:

Guarantees that your EFI variables are flushed to efivarfs filesystem. Please unmount it safely before rebooting.

Macbook Mojave Update

On this reboot it is essential that you boot once into safe mode (hold Shift throughout boot), and then choose shutdown(not restart) from the menu.

Do this safe boot with the R8911 resistor in place. Without this SAFE BOOT, the next steps may not work.

Do no more boots until you complete the next steps.

The safe boot clears OS level GPU preferences, that may interfere with the following process.

This will now cause your MacBook Pro to stop switching to the Radeon automatically, but it will still draw power, create heat, and be visible to the OS.

Show Hardware Modification Steps

In some cases the software modification (automated or manual) is not enough to guarantee a stable and fast MacBook Pro. Due to the way the AMD GPU fails, it can cause some issues if still powered on. This will show as very slow boots, crashes, video glitches.

We discovered that simply removing 1 resistor will resolve this.

The resistor can also be replaced with a switch, in case you need to turn your radeon back on for any reason.


The
placement of this resistor varies between logic board models.

The resistor in question is R8911 on the 17″ MBP and R8911 on the 15″ MBP
a 1 Ohm resistor that provides a current path to the ISL6263C DC to DC Converter.

This resistor controls power to the Voltage Regulator that provides the Core Voltage to the Radeon GPU. Simply put, no core voltage, no GPU.
You will find the resistor just to the right of a cooling fan (in the above orientation). It will be near the ISL Voltage converter chip. This is the chip we will be disabling. (see image for your model)

Just remove it. The preferred method is a professional reflow station, but an iron and a steady hand will get you where you need to be. If you used flux to remove it (not needed), make sure you clean up with a little Alcohol or other suitable solvent.

That is basically it. Next time you boot up you will notice your GPU defect issue is gone, and you will no longer see the AMD GPU as installed hardware.

A small warning: This mod will not survive a NVRAM reset. For this (and other security related) reasons, it is recommended that you set an EFI Password. This will make it impossible to accidentally reset your NVRAM. Just don’t ever forget this password.

In the event that a NVRAM reset removes the EFI mod, contact us via email for a recovery procedure. We have a reliable procedure that takes seconds and works 100% of the time.

ADDITIONAL STEP FOR HIGH SIERRA

High Sierra requires an additional hardware mod. This jumper wire is different between 15″ and 17″, both are shown below. Without this mod, your screen WILL NOT turn on after going to sleep. On the 15″ we just need to put a small jumper wire (enamel wire) between PIN 2 of R9704 and PIN 1 of C9711. Logic board does not need to be removed for this step. Only bottom cover removed.

Possibly easier Jump for the 15″. Chose one jumper method, do not install both.

On the 17″ we will jump between a test point and R9202.


If you find yourself uncomfortable doing this mod, please contact us and we will be happy to perform this modification for you. Our current rate is $85 (excluding return shipping). Turn around time depends on shipping speeds, but modification will be performed within 48 hours of receiving your MacBook Pro.

Check compatibility

You can upgrade to macOS Mojave from OS X Mountain Lion or later on any of the following Mac models. Your Mac also needs at least 2GB of memory and 12.5GB of available storage space, or up to 18.5GB of storage space when upgrading from OS X Yosemite or earlier.

MacBook introduced in 2015 or later
MacBook Air introduced in 2012 or later
MacBook Pro introduced in 2012 or later
Mac mini introduced in 2012 or later
iMac introduced in 2012 or later
iMac Pro (all models)
Mac Pro introduced in 2013, plus mid-2010 or mid-2012 models with a recommended Metal-capable graphics card.

To find your Mac model, memory, storage space, and macOS version, choose About This Mac from the Apple menu . If your Mac isn't compatible with macOS Mojave, the installer will let you know.

Make a backup

Before installing any upgrade, it’s a good idea to back up your Mac. Time Machine makes it simple, and other backup methods are also available. Learn how to back up your Mac.

Get connected

Mojave Macbook Pro

It takes time to download and install macOS, so make sure that you have a reliable Internet connection. If you're using a Mac notebook computer, plug it into AC power.

Download macOS Mojave

For the strongest security and latest features, find out whether you can upgrade to macOS Catalina, the latest version of the Mac operating system.

If you still need macOS Mojave, use this App Store link: Get macOS Mojave.

Begin installation

After downloading, the installer opens automatically.

Click Continue and follow the onscreen instructions. You might find it easiest to begin installation in the evening so that it can complete overnight, if needed.

If the installer asks for permission to install a helper tool, enter the administrator name and password that you use to log in to your Mac, then click Add Helper.

Allow installation to complete

Macbook Pro 2011 Early Mojave

Please allow installation to complete without putting your Mac to sleep or closing its lid. Your Mac might restart, show a progress bar, or show a blank screen several times as it installs both macOS and related updates to your Mac firmware.

Learn more

Macbook Pro Late 2011 Mojave

  • If you have hardware or software that isn't compatible with Mojave, you might be able to install an earlier macOS, such as High Sierra, Sierra, or El Capitan.
  • macOS Mojave won't install on top of a later version of macOS, but you can erase your disk first or install on another disk.
  • You can use macOS Recovery to reinstall macOS.




Macbook 2011 Mojave
Back to posts
This post has no comments - be the first one!

UNDER MAINTENANCE