Skip to content

Instantly share code, notes, and snippets.

@jayluxferro
Forked from blackgate/mbp2011-disable-amd-gpu.md
Last active August 31, 2018 17:31
Show Gist options
  • Save jayluxferro/647399146cd0a0cb35ec9971d7266a2d to your computer and use it in GitHub Desktop.
Save jayluxferro/647399146cd0a0cb35ec9971d7266a2d to your computer and use it in GitHub Desktop.
Macbook Pro 2011 - Disable AMD GPU

1. Change the gpu-power-prefs and disable SIP

Boot into recovery single user mode (press and hold Command + S + R) and run the following commands:

nvram fa4ce28d-b62f-4c99-9cc3-6815686e30f9:gpu-power-prefs=%01%00%00%00
csrutil disable
reboot

2. First of all, it is possible to successfully boot a MBP to OS X while still using the failed GPU, after you remove the AMD drivers by booting in command line mode (CMD+S) and entering these commands:

  1. fsck -fy (to check a disk)
  2. mount -uw / (mount a root filesystem with read/write permissions)
  3. sudo mkdir /AMD_Kexts/ (make a directory to store the AMD drivers in case you'll need them in future)
  4. sudo mv /System/Library/Extensions/AMD*.* /AMD_Kexts/ (move the AMD drivers)
  5. sudo rm -rf /System/Library/Caches/com.apple.kext.caches/ (remove the AMD drivers cache)
  6. sudo mkdir /System/Library/Caches/com.apple.kext.caches/ (just in case OS X will be dumb and will not recreate this directory, I am creating it for OS X)
  7. sudo touch /System/Library/Extensions/ (to update the timestamps so that new driver caches - without AMD drivers - will be definitely rebuilt)
  8. sudo umount / (umount a partition to guarantee that your changes are flushed to it)
  9. sudo reboot
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment