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:
fsck -fy
(to check a disk)mount -uw /
(mount a root filesystem with read/write permissions)sudo mkdir /AMD_Kexts/
(make a directory to store the AMD drivers in case you'll need them in future)sudo mv /System/Library/Extensions/AMD*.* /AMD_Kexts/
(move the AMD drivers)sudo rm -rf /System/Library/Caches/com.apple.kext.caches/
(remove the AMD drivers cache)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)sudo touch /System/Library/Extensions/
(to update the timestamps so that new driver caches - without AMD drivers - will be definitely rebuilt)sudo umount /
(umount a partition to guarantee that your changes are flushed to it)sudo reboot