Sign in to follow this
Followers
0

Instant Reboot - 10.7.3 Install DVD AMD
By
newfyworld, in OSx86 10.7 (Lion)
-
Recently Browsing 0 members
No registered users viewing this page.
-
Similar Content
-
By Slice
As I see many novices in the forum ask "How to make my Radeon working? I have bad resolution, no QE/CI...." and so on. They come to the section and have no find an answer here because all Radeons are different and they don't know where else they read about this.
I want to explain all steps needed for launching the Radeon family of videocards.
Bootloader.
I will speak about Clover because I maintain this bootloader to know recent hardware and modern OSX. Not sure if you will have the same result with other bootloaders. I am carefully checking the injecting of ATI card and correcting it times to times. I am also accessible for bug reports.
OSX version.
Older card require older system, newer cards require new system.
ATIRadeon9000 is possible to launch under Tiger.
ATIRadeonMobilityX1400 requires 10.5-10.6. See RadeonHD topic.
As I see RadeonHD3xxx was successful only in 10.5
For new AMDRadeonHD7xxx there must be 10.8.3+ system.
DeviceID.
This must be the first question before asking about the card.
You may know the device-id from Windows->DeviceManger->VideoCard.properties->compatibleIDs
You may boot into system in safe mode (key -x) and see system profiler
And you may boot into Clover GUI, press F2 and get preboot.log. Find here something like
2:709 0:000 PCI (00|01:00.00) : 1002 6758 class=030000 2:709 0:000 Found Radeon model=AMD Radeon HD 6670 Series It means my DeviceID=6758 (these are hex numbers)
Then you must check that Apple's drivers support your DeviceID. If not then add it!
For example HD7850 has DeviceID=6819. If we look into ATI7000Controller (AMD7000... in new systems) we find 6818 here but no 6819!
I show you how to do this with terminal commands. Launch /Application/Utilities/Terminal.app. Type in opened window:
cp /System/Library/Extensions/ATI7000Controller.kext/Contents/Info.plist ~/Desktop So you get a copy of the Info.plist on Desktop. Edit it with TextEdit. Change 68181002 -> 68191002.
Don't edit this file directly in the system folder!
Then copy back by terminal. Don't use finder to copy kexts! They will have wrong permissions in this case.
sudo cp ~/Desktop/Info.plist /System/Library/Extensions/ATI7000Controller.kext/Contents/ sudo rm -r -v /System/Library/Caches/com.apple.kext.caches/* Second command make sure next reboot the kext will use your edited info.plist.
The same operation you must do with a kext AMDRadeonAccelerator or ATIRadeonX2000 or other one. Check all candidates if they contain such list of possible IDs and choose closest to you.
FakeID
Since Clover revision 1971+ you may just inject new DeviceID into DSDT instead of correcting kexts. See instruction here.
GraphicsEnabler or Injector
OSX needs to know some properties (Model name, Family, etc...) that must be somehow injected at boot time. Yes, also real Macs got DeviceProperties string from firmware.
Alternatives:
1. Set InjectATI=Yes in Clover (same as GE=y in Chameleon).
2. Use custom string made with gfxutil. For whom who knows.
3. Write _DSM into DSDT. You should know what to write.
4. Use some kext like ATY_init.kext or Natit.kext. If you are sure that the kext is for your card namely.
I want to say that all this methods make the same thing. Differencies in their tuning.
The Clover do this automatically for most known cards at this moment.
Connectors.
As you may see to start HD5000-7000 some strange names used: Pithecia, Orangutan, Elodea... What are they?
They are configs for framebuffer. Predefined configs how connectors are solded for cards used in real Macs. Strange but these configs rear coincide with PC card. Usually gurus make advice "choose a framebuffer that most appropriate for your card". The chances 1:10. In most cases you may find a FB name that gives you main monitor working. Or nothing at all.
Great respect to bcc9 who gives us a method to correct one of config to be exactly for you. See here.
My retelling for Clover is here
Success example in the thread in posts 44-52
Radeon Mobility
I tested Clover's methods with two users having Mobility Radeon HD5470 and HD5650M. We found that full memory and QE/CI will be achieved if we set in Clover's config
LoadVBios=Yes
even thou no file with bios is provided. This is the key to make Radeon Mobility working!
Other problem is bad gradients or artifacts. For this case Clover accept the key
InjectEDID=Yes
and sometimes you also need to inject CustomEDID.
See Clover instructions for details.
And my results.
Gigabyte Radeon HD6670
<key>Graphics</key> <dict> <key>GraphicsInjector</key> <true/> <key>InjectEDID</key> <true/> <key>FBName</key> <string>Ipomoea</string> <key>LoadVBios</key> <false/> <key>VideoPorts</key> <integer>3</integer> <key>PatchVBios</key> <true/> </dict> <key>KernelAndKextPatches</key> <dict> <key>KernelCpu</key> <false/> <key>ATIConnectorsController</key> <string>6000</string> <key>ATIConnectorsData</key> <string>000400000403000000010000120401050008000004020000000100001102040310000000100000000001000000000002</string> <key>ATIConnectorsPatch</key> <string>040000000403000000010000100001061000000010000000000100000000000100080000040200000001000012040403</string> VTX Radeon HD5570
<key>Graphics</key> <dict> <key>PatchVBios</key> <false/> <key>FBName</key> <string>Baboon</string> <key>VideoPorts</key> <string>3</string> <key>GraphicsInjector</key> <string>Yes</string> <key>LoadVBios</key> <string>No</string> </dict> <key>KernelAndKextPatches</key> <dict> <key>Debug</key> <false/> <key>KernelCpu</key> <false/> <key>ATIConnectorsController</key> <string>5000</string> <key>ATIConnectorsData</key> <string>040000001400000000010000010201030008000000020000007100002205020110000000100000000001000000100002</string> <key>AppleRTC</key> <true/> <key>ATIConnectorsPatch</key> <string>040000001400000000010000010001040008000000020000007100002200020510000000100000000001000000000002</string> <key>AsusAICPUPM</key> <false/> <key>KextsToPatch</key> <array> <dict> <key>Name</key> <string>AppleAHCIPort</string> <key>Find</key> <data>RXh0ZXJuYWw=</data> <key>Replace</key> <data>SW50ZXJuYWw=</data> </dict> </array> </dict> See PatchVBios=No
for this card "yes" leads to black screen. Use with precautions.
A sample for Radeon R7 240
UPDATE for ElCapitan.
It seems has more problems. My HD6670 is not working in ElCapitan OOB unlike Mavericks.
I had to set FakeID=0x67401002 as correspond to real iMac12,2 and set this model in SMBIOS section.
It related to GraphicsPM or GraphicsControl.
Look these kexts to decide what you can do for your configuration.
HighSierra requires change these kexts by version from Sierra 10.12.6
for Radeon HD6xxx
AMDRadeonX3000.kext AMDRadeonX3000GLDriver.bundle IOAccelerator2D.plugin IOAcceleratorFamily2.kext . for Radeon HD7xxx and up AMDRadeonX4000.kext AMDRadeonX4000GLDriver.bundle IOAccelerator2D.plugin IOAcceleratorFamily2.kext . Black screen after wake problem resolved by follow method radeon_bios_decode.0.2.zip
ati-personality.pl.0.15.zip
ati-personality.pl.0.15a.zip
-
By jdorz
Hello all,
I have successfully gotten my Hackintosh working 99 percent. The remaining issue that I am running into is that my system will randomly kernel panic upon a user issued shutdown or reboot WHEN I have either a usb sound card or usb headset plugged into any of my USB ports (both 2.0 and 3.0). If I remove the headset, it will power down with no issues. Does anyone have any suggestions?
My system is as follows:
MacOS 10.14 Mojave
Gigabyte H370 HD3
8400 i5 Coffee Lake
Radeon RX 580 sound card
Fixed
Solution
Use this folder for serie 100/200/300
https://olarila.com/forum/viewtopic.php?f=28&t=8222
reboot and extract one send_me for full dsdt patch by MaLd0n
--Run_Me
RunMe.app
-
By kelvin henrique
Faz pouco menos de uma semana que estou tentando dar boot usando um pendrive no lenovo g40-80, mas todas as vezes que tento algum kernel panic diferente acontece, não entendo tanto de hackintosh mas pelo que li tanto aqui no forum quanto em outros sites me fizeram constatar que talvez o erro seja falta de kexts, alguem possui os kexts para esse notebook ??
primeiro erro que tive era porque estava usando um pendrive de 8gb, o recomendado é 16 no minimo pelo oque vi, fui la, comprei um de 32, mudou o kernel panic mas era só um dos erros resolvidos.
especificações dele:
Processador: Intel Core i3-5005U
Grafico: Intel HD Graphics 5500
originalmente ele vinha com um hd de 500gb e 4gb de ram, mudei pra um ssd de 128gb e 8 gb de ram
ja percebi que unico problema desse notebook é que a placa de wifi não vai funcionar, mas quanto a isso não tem problema pois se conseguir mesmo instalar o mac eu comprou outra
-
By snifferdog
My Catalina build is running fine except for occasional kernel panics (maybe once or twice a day). Mobo is Gigabyte Z390P D3, CPU is Core i5-8400, integrated graphics. My config.plist is attached.
Here is the report which is available when the system reboots. One thought that occurs to me is to disable 'Put hard disks to sleep when possible' in System Preferences. I am trying that now. Thanks for any help.
panic(cpu 1 caller 0xffffff8001e290b7): "AppleAHCIDiskQueueManager::setPowerState(0xffffff8026691d80 : 0xffffff7f8332a96c, 2 -> 3) timed out after 101265 ms"@/BuildRoot/Library/Caches/com.apple.xbs/Sources/xnu/xnu-6153.11.26/iokit/Kernel/IOServicePM.cpp:5302
Backtrace (CPU 1), Frame : Return Address
0xffffff920864bb40 : 0xffffff800173f98b mach_kernel : _handle_debugger_trap + 0x47b
0xffffff920864bb90 : 0xffffff8001876c15 mach_kernel : _kdp_i386_trap + 0x155
0xffffff920864bbd0 : 0xffffff800186861e mach_kernel : _kernel_trap + 0x4ee
0xffffff920864bc20 : 0xffffff80016e6a40 mach_kernel : _return_from_trap + 0xe0
0xffffff920864bc40 : 0xffffff800173f077 mach_kernel : _DebuggerTrapWithState + 0x17
0xffffff920864bd40 : 0xffffff800173f45b mach_kernel : _panic_trap_to_debugger + 0x21b
0xffffff920864bd90 : 0xffffff8001ed2d89 mach_kernel : _panic + 0x61
0xffffff920864be00 : 0xffffff8001e290b7 mach_kernel : __ZN9IOService12ackTimerTickEv + 0x417
0xffffff920864be50 : 0xffffff8001e28c79 mach_kernel : __ZN9IOService21actionAckTimerExpiredEP8OSObjectPvS2_S2_S2_ + 0x9
0xffffff920864be60 : 0xffffff8001e4002e mach_kernel : __ZN10IOWorkLoop9runActionEPFiP8OSObjectPvS2_S2_S2_ES1_S2_S2_S2_S2_ + 0x3e
0xffffff920864bea0 : 0xffffff8001e27a28 mach_kernel : __ZN9IOService17ack_timer_expiredEPvS0_ + 0x38
0xffffff920864bec0 : 0xffffff80017811d5 mach_kernel : _thread_call_delayed_timer + 0xea5
0xffffff920864bf40 : 0xffffff8001780d01 mach_kernel : _thread_call_delayed_timer + 0x9d1
0xffffff920864bfa0 : 0xffffff80016e613e mach_kernel : _call_continuation + 0x2e
BSD process name corresponding to current thread: kernel_task
Boot args: -v darkwake=0 dart=0 debug=0x100 keepsyms=1 kext-dev-mode=1 -disablegfxfirmware -no_compat_check
Mac OS version:
19A583
Kernel version:
Darwin Kernel Version 19.0.0: Wed Sep 25 20:18:50 PDT 2019; root:xnu-6153.11.26~2/RELEASE_X86_64
Kernel UUID: 70EDD61F-86EE-3E1B-873F-98D909B78160
Kernel slide: 0x0000000001400000
Kernel text base: 0xffffff8001600000
__HIB text base: 0xffffff8001500000
System model name: iMac18,1 (Mac-4B682C642B45593E)
System shutdown begun: NO
Panic diags file available: YES (0x0)
System uptime in nanoseconds: 5030664182757
last loaded kext at 64641308877: @filesystems.smbfs 3.4 (addr 0xffffff7f8322c000, size 450560)
last unloaded kext at 223165165211: org.vulgo.NoVPAJpeg 1.2.8 (addr 0xffffff7f846b4000, size 12288)
loaded kexts:
config.plist
-