Tomwi Posted May 1, 2011 Share Posted May 1, 2011 indeed, I had it with successful boots too:( Anyway I tried nawcoms boot usb which should be the same as the cd, and it still hangs:( I've a cloned mac os x on another partition so I can do more advanced things to repair, but the problem is that I've no idea WHAT to repair edit Well I succeeded to update! Now it' s time to test the graphics kext out:) Link to comment Share on other sites More sharing options...
yurick Posted May 1, 2011 Share Posted May 1, 2011 any interference with the driver AppleIntelHDGraphicsFB.kext leads to a non-working table (not working keyboard and mouse), the situation is similar to the windows when installed the not correct driver for Nvidia Link to comment Share on other sites More sharing options...
Tomwi Posted May 1, 2011 Share Posted May 1, 2011 well I' ve got a transparant menu bar now and I can view photo' s too, but ithe distortions are really bad and I can' t see what I' m typing now actually, without switcing from program to program. I think I' ll delete the kexts and go investigate the framebuffer kext^^ Link to comment Share on other sites More sharing options...
XmodD Posted May 1, 2011 Share Posted May 1, 2011 Moin, today and the rest of the weekend I was testing around with EFI Strings. I am able to inject correct name etc. with Intel HD. kext, but it is not possible to inject the hole missing monitor values like resolution etc. using EFI String. That is too complex to get injected by EFI String. So Sad but true we need the IntelHDFB.kext. That is the kexts, that sets the properties like display resolution etc. We gonna need that! So we have to figure out, what property it is, that gives us black screen. ... Another option I believe is, that we use the open ATI Framebuffer. As far as I can remind. there is an open source ATI FB around. Maybe if we get helf from an good coder, we are able to change the part, that sets the display properties. that is all we need, cause the rest already works. Hey Guys fun Fact!!!!! I get correct resolution on External Monitor with loaded IntelHD Graphics loaded ... 1280x1024 works ^^ but no transbar. ... aah I updated to Lion btw. ... Link to comment Share on other sites More sharing options...
GhostRaider Posted May 1, 2011 Share Posted May 1, 2011 Intel HD Graphics (Arrandale) Report #3 Guys, I think the AppleIntelHDGraphicsFB Kext is not the reason why we can't get get custom resolution. You see, this kext basically sets the refresh rate. If you've noticed, people have managed to get AppleIntelHDGraphicsFB Kext loaded on their Intel HD Graphics (Arrandale), however they can only see their desktop by using ScreenSharing and if you've noticed, there is no distortion while using ScreenSharing and they also have custom resolution. AppleIntelHDGraphicsFB Kext = Refresh Rate NOT CUSTOM RESOLUTION These kexts below WILL NOT work unless AppleIntelHDGraphicsFB is loaded: AppleIntelHDGraphicsGA Plugin AppleIntelHDGraphicsVA Driver So what does this all mean? It means that AppleIntelHDGraphicsFB is a DEPENDENT kext, meaning it gets its "instructions" from another kext. The funny part is, it has NOTHING to do with the IntelHDGraphics Kexts. So where does AppleIntelHDGraphicsFB get its instructions? Lets open up the AppleIntelHDGraphicsFB Info.plist. Look for this area inside the Info.plist. <key>OSBundleLibraries</key> <dict> <key>com.apple.iokit.IOACPIFamily</key> <string>1.2</string> <key>com.apple.iokit.IOGraphicsFamily</key> <string>1.3</string> <key>com.apple.iokit.IOPCIFamily</key> <string>1.1</string> <key>com.apple.kpi.bsd</key> <string>8.0.0</string> <key>com.apple.kpi.iokit</key> <string>8.0.0</string> <key>com.apple.kpi.libkern</key> <string>8.0.0</string> <key>com.apple.kpi.mach</key> <string>8.0.0</string> <key>com.apple.kpi.unsupported</key> <string>8.0.0</string> </dict> Okay now if you delete this specific key below, and you install AppleIntelHDGraphicsFB like this, it will not load at all. <key>com.apple.iokit.IOGraphicsFamily</key> <string>1.3</string> So just by deleting this little key, the whole kext is useless? That is correct. ====================================================================== In other words, the AppleIntelHDGraphicsFB has its own instructions, but to which monitor will it work on is decided by IOGraphicsFamily Kext which explains why you can only see it in Screensharing. We can now forgive AppleIntelHDGraphicsFB Kext Now we must attack IOGraphicsFamily Kext Link to comment Share on other sites More sharing options...
beaups Posted May 1, 2011 Share Posted May 1, 2011 Intel HD Graphics (Arrandale) Report #3 Guys, I think the AppleIntelHDGraphicsFB Kext is not the reason why we can't get get custom resolution. You see, this kext basically sets the refresh rate. If you've noticed, people have managed to get AppleIntelHDGraphicsFB Kext loaded on their Intel HD Graphics (Arrandale), however they can only see their desktop by using ScreenSharing and if you've noticed, there is no distortion while using ScreenSharing and they also have custom resolution. AppleIntelHDGraphicsFB Kext = Refresh Rate NOT CUSTOM RESOLUTION These kexts below WILL NOT work unless AppleIntelHDGraphicsFB is loaded: AppleIntelHDGraphicsGA Plugin AppleIntelHDGraphicsVA Driver So what does this all mean? It means that AppleIntelHDGraphicsFB is a DEPENDENT kext, meaning it gets its "instructions" from another kext. The funny part is, it has NOTHING to do with the IntelHDGraphics Kexts. So where does AppleIntelHDGraphicsFB get its instructions? Lets open up the AppleIntelHDGraphicsFB Info.plist. Look for this area inside the Info.plist. <key>OSBundleLibraries</key> <dict> <key>com.apple.iokit.IOACPIFamily</key> <string>1.2</string> <key>com.apple.iokit.IOGraphicsFamily</key> <string>1.3</string> <key>com.apple.iokit.IOPCIFamily</key> <string>1.1</string> <key>com.apple.kpi.bsd</key> <string>8.0.0</string> <key>com.apple.kpi.iokit</key> <string>8.0.0</string> <key>com.apple.kpi.libkern</key> <string>8.0.0</string> <key>com.apple.kpi.mach</key> <string>8.0.0</string> <key>com.apple.kpi.unsupported</key> <string>8.0.0</string> </dict> Okay now if you delete this specific key below, and you install AppleIntelHDGraphicsFB like this, it will not load at all. <key>com.apple.iokit.IOGraphicsFamily</key> <string>1.3</string> So just by deleting this little key, the whole kext is useless? That is correct. ====================================================================== In other words, the AppleIntelHDGraphicsFB has its own instructions, but to which monitor will it work on is decided by IOGraphicsFamily Kext which explains why you can only see it in Screensharing. We can now forgive AppleIntelHDGraphicsFB Kext Now we must attack IOGraphicsFamily Kext I'm not sure how you managed to leap to such a conclusion. The FB kext is the frame buffer kext, and yes you are going to need that. They didn't write an entire kernel extension just to control refresh rate, if that's what you are implying. Link to comment Share on other sites More sharing options...
mendietinha Posted May 1, 2011 Share Posted May 1, 2011 we need more than native resolution. there are feel bugs in the graphics and kp, at least here, in some cases. but lets keep working. i keep trying here to. Link to comment Share on other sites More sharing options...
XmodD Posted May 2, 2011 Share Posted May 2, 2011 As I can remember dutchhockeypro(/ sadgirl / nor sure but also Sockerkid. Believe, they are the same persons) already said, that we have to rewrite IOGraphicsFamily. IOGraphicsFamily is open source, so we can compile it by our own. ... When u download it from apple and try to compile it, u ll get a lot of errors. ... But they can be fixed. There is an guide around. ... Link to comment Share on other sites More sharing options...
makolet Posted May 2, 2011 Share Posted May 2, 2011 Well the old Info.plist edit trick is certainly worth trying for you guys! If you want to give it a shot follow tonymac's instructions for installing the 2011 Macbook Pro 10.6.7 update and when you get to the point where it's installed and will boot into single user, use the attached bootloader (with .txt extension removed) and try editing the AppleIntelSNB* plist files. I suppose there's also a chance that the AppleIntelHD* will come to life with the ACPI keys injected by the bootloader, so for someone who wants to expirement there's lots to try. I can confirm this working on a laptop with generic parts and an i7 2630QM Sandy Bridge CPU (Intel HD 3000). These are the steps that I took: 1) Using [url="http://www.insanelymac.com/forum/topic/279450-why-insanelymac-does-not-support-tonymacx86/"]#####[/url], install from a retail 10.6.3 OSX disk 2) Upgrade to 10.6.6 using the combo update. Restart 3) Make a copy of /System/Library/IOPCIFamily.kext (put it someplace safe) 4) Upgrade to 10.6.7 using the MacbookPro Early 2011 updater (see http://tonymacx86.blogspot.com/2011/03/mac...arly-2011.html) -- 4.1) I installed Easy Beast (DSDT free) and then updated the bootloader to AnVAL (http://www.insanelymac.com/forum/index.php?showtopic=216726) and then did a cp -R /Volume/[url="http://www.insanelymac.com/forum/topic/279450-why-insanelymac-does-not-support-tonymacx86/"]#####[/url]/Extra /Extra before updating the smbios.plist and editing the System Information - This results in the use of the [url="http://www.insanelymac.com/forum/topic/279450-why-insanelymac-does-not-support-tonymacx86/"]#####[/url] kernel and extensions -- 4.2) Don't reboot after upgrading to 10.6.7 5) Copy back the 10.6.6 IOPCIFamily.kext, replacing the one that was just updated (you may want to place this in your /Extra/Extensions folder and delete the one in the /System/Library folder). This was necessary for me because of lock-ups in the boot process where the log shows "[ PCI configuration begin ]" messages. 6) Install Kyle_C's bootloader 7) Reboot - FULL QE/CI on HD 3000, 2630QM i7 SandyBridge -- I have also experienced some occasional short lockups with the cursor, as Kyle_C has - the legacy kernel that came with [url="http://www.insanelymac.com/forum/topic/279450-why-insanelymac-does-not-support-tonymacx86/"]#####[/url] 3.0, with no DSDT. Looking for a solution to that, to my wireless (AzureWave AW-NB057H) and about to checkout the sound card. Any solutions for the wireless or occasional freezes of the trackpad are welcome. Hope this helps someone. Link to comment Share on other sites More sharing options...
Monkey D. Luffy Posted May 2, 2011 Share Posted May 2, 2011 I can confirm this working on a laptop with generic parts and an i7 2630QM Sandy Bridge CPU (Intel HD 3000). These are the steps that I took: 1) Using [url="http://www.insanelymac.com/forum/topic/279450-why-insanelymac-does-not-support-tonymacx86/"]#####[/url], install from a retail 10.6.3 OSX disk 2) Upgrade to 10.6.6 using the combo update. Restart 3) Make a copy of /System/Library/IOPCIFamily.kext (put it someplace safe) 4) Upgrade to 10.6.7 using the MacbookPro Early 2011 updater (see http://tonymacx86.blogspot.com/2011/03/mac...arly-2011.html) -- 4.1) I installed Easy Beast (DSDT free) and then updated the bootloader to AnVAL (http://www.insanelymac.com/forum/index.php?showtopic=216726) and then did a cp -R /Volume/[url="http://www.insanelymac.com/forum/topic/279450-why-insanelymac-does-not-support-tonymacx86/"]#####[/url]/Extra /Extra before updating the smbios.plist and editing the System Information - This results in the use of the [url="http://www.insanelymac.com/forum/topic/279450-why-insanelymac-does-not-support-tonymacx86/"]#####[/url] kernel and extensions -- 4.2) Don't reboot after upgrading to 10.6.7 5) Copy back the 10.6.6 IOPCIFamily.kext, replacing the one that was just updated (you may want to place this in your /Extra/Extensions folder and delete the one in the /System/Library folder). This was necessary for me because of lock-ups in the boot process where the log shows "[ PCI configuration begin ]" messages. 6) Install Kyle_C's bootloader 7) Reboot - FULL QE/CI on HD 3000, 2630QM i7 SandyBridge -- I have also experienced some occasional short lockups with the cursor, as Kyle_C has - the legacy kernel that came with [url="http://www.insanelymac.com/forum/topic/279450-why-insanelymac-does-not-support-tonymacx86/"]#####[/url] 3.0, with no DSDT. Looking for a solution to that, to my wireless (AzureWave AW-NB057H) and about to checkout the sound card. Any solutions for the wireless or occasional freezes of the trackpad are welcome. Hope this helps someone. That's good news. Thank you for sharing. Link to comment Share on other sites More sharing options...
fmac Posted May 2, 2011 Share Posted May 2, 2011 He guys i get this (sorry black screen too) I am trying it for a long time but i never had AppleIntelframebuffer loaded the system is 10.6.7 with MacBookProEarly2011Update but now the problem is AppleGraphicsControl and Powermanagment is not loaded Link to comment Share on other sites More sharing options...
LowRidinCrew Posted May 2, 2011 Share Posted May 2, 2011 Before you figured out how to update, did it give you a kernel panic before the end of the updates? Link to comment Share on other sites More sharing options...
Eufonic Posted May 2, 2011 Share Posted May 2, 2011 I can confirm this working on a laptop with generic parts and an i7 2630QM Sandy Bridge CPU (Intel HD 3000). These are the steps that I took: 1) Using [url="http://www.insanelymac.com/forum/topic/279450-why-insanelymac-does-not-support-tonymacx86/"]#####[/url], install from a retail 10.6.3 OSX disk 2) Upgrade to 10.6.6 using the combo update. Restart 3) Make a copy of /System/Library/IOPCIFamily.kext (put it someplace safe) 4) Upgrade to 10.6.7 using the MacbookPro Early 2011 updater (see http://tonymacx86.blogspot.com/2011/03/mac...arly-2011.html) -- 4.1) I installed Easy Beast (DSDT free) and then updated the bootloader to AnVAL (http://www.insanelymac.com/forum/index.php?showtopic=216726) and then did a cp -R /Volume/[url="http://www.insanelymac.com/forum/topic/279450-why-insanelymac-does-not-support-tonymacx86/"]#####[/url]/Extra /Extra before updating the smbios.plist and editing the System Information - This results in the use of the [url="http://www.insanelymac.com/forum/topic/279450-why-insanelymac-does-not-support-tonymacx86/"]#####[/url] kernel and extensions -- 4.2) Don't reboot after upgrading to 10.6.7 5) Copy back the 10.6.6 IOPCIFamily.kext, replacing the one that was just updated (you may want to place this in your /Extra/Extensions folder and delete the one in the /System/Library folder). This was necessary for me because of lock-ups in the boot process where the log shows "[ PCI configuration begin ]" messages. 6) Install Kyle_C's bootloader 7) Reboot - FULL QE/CI on HD 3000, 2630QM i7 SandyBridge -- I have also experienced some occasional short lockups with the cursor, as Kyle_C has - the legacy kernel that came with [url="http://www.insanelymac.com/forum/topic/279450-why-insanelymac-does-not-support-tonymacx86/"]#####[/url] 3.0, with no DSDT. Looking for a solution to that, to my wireless (AzureWave AW-NB057H) and about to checkout the sound card. Any solutions for the wireless or occasional freezes of the trackpad are welcome. Hope this helps someone. could you please post links for everything, i will try it on my clarkdale and tell you the result. meaning the kyle_c bootloader and the combo update. Link to comment Share on other sites More sharing options...
rafirafi Posted May 3, 2011 Share Posted May 3, 2011 could you please post links for everything, i will try it on my clarkdale and tell you the result.meaning the kyle_c bootloader and the combo update. I'm affraid this work only for Sandy Bridge as the framebuffer kext is specific to Sandy Bridge (from 10.6.7 early update). It seems there is a confusion between the "Sandy Bridge HD graphics" (HD Graphics 2000 and HD Graphics 3000) and the "HD Graphics" (GMA HD) you can find in Arrandale and Clarkdale. Link to comment Share on other sites More sharing options...
Eufonic Posted May 3, 2011 Share Posted May 3, 2011 oh, i get it, this was specific for sandy bridge. does anybody know what gpu I should buy that works out of the box on an intel DH55HC motherboard, this cat and mouse game is costing my patience. i rather buy one that works than wait more. Link to comment Share on other sites More sharing options...
sockerkid Posted May 3, 2011 Author Share Posted May 3, 2011 oh, i get it, this was specific for sandy bridge.does anybody know what gpu I should buy that works out of the box on an intel DH55HC motherboard, this cat and mouse game is costing my patience. i rather buy one that works than wait more. This thread is specific for Intel GPU arrandale only.. sandy bridge discussion are off topics here.. He guys i get this (sorry black screen too) I am trying it for a long time but i never had AppleIntelframebuffer loaded the system is 10.6.7 with MacBookProEarly2011Update but now the problem is AppleGraphicsControl and Powermanagment is not loaded You are getting black screen because ur IntelHdGraphicsFB.kext is loaded, please follow the first post to get partial QE/CL to work.. Btw, AppleIntelFrameBuffer.kext is for GMA950 and not GMA HD.. so it will never get loaded on an Intel HD Arrandale.. Link to comment Share on other sites More sharing options...
LowRidinCrew Posted May 3, 2011 Share Posted May 3, 2011 I can't get past the god forsaken 10.6.4+ updates let alone get the kexts to load. Link to comment Share on other sites More sharing options...
sjuut Posted May 3, 2011 Share Posted May 3, 2011 I can't get past the god forsaken 10.6.4+ updates let alone get the kexts to load. try updating in safe mode Link to comment Share on other sites More sharing options...
hchinasky Posted May 3, 2011 Share Posted May 3, 2011 I can confirm this working on a laptop with generic parts and an i7 2630QM Sandy Bridge CPU (Intel HD 3000). These are the steps that I took: 1) Using [url="http://www.insanelymac.com/forum/topic/279450-why-insanelymac-does-not-support-tonymacx86/"]#####[/url], install from a retail 10.6.3 OSX disk 2) Upgrade to 10.6.6 using the combo update. Restart 3) Make a copy of /System/Library/IOPCIFamily.kext (put it someplace safe) 4) Upgrade to 10.6.7 using the MacbookPro Early 2011 updater (see http://tonymacx86.blogspot.com/2011/03/mac...arly-2011.html) -- 4.1) I installed Easy Beast (DSDT free) and then updated the bootloader to AnVAL (http://www.insanelymac.com/forum/index.php?showtopic=216726) and then did a cp -R /Volume/[url="http://www.insanelymac.com/forum/topic/279450-why-insanelymac-does-not-support-tonymacx86/"]#####[/url]/Extra /Extra before updating the smbios.plist and editing the System Information - This results in the use of the [url="http://www.insanelymac.com/forum/topic/279450-why-insanelymac-does-not-support-tonymacx86/"]#####[/url] kernel and extensions -- 4.2) Don't reboot after upgrading to 10.6.7 5) Copy back the 10.6.6 IOPCIFamily.kext, replacing the one that was just updated (you may want to place this in your /Extra/Extensions folder and delete the one in the /System/Library folder). This was necessary for me because of lock-ups in the boot process where the log shows "[ PCI configuration begin ]" messages. 6) Install Kyle_C's bootloader 7) Reboot - FULL QE/CI on HD 3000, 2630QM i7 SandyBridge -- I have also experienced some occasional short lockups with the cursor, as Kyle_C has - the legacy kernel that came with [url="http://www.insanelymac.com/forum/topic/279450-why-insanelymac-does-not-support-tonymacx86/"]#####[/url] 3.0, with no DSDT. Looking for a solution to that, to my wireless (AzureWave AW-NB057H) and about to checkout the sound card. Any solutions for the wireless or occasional freezes of the trackpad are welcome. Hope this helps someone. Hi Which dev id has your graphic card? and Did you have to modify the graphics drivers? thank you Link to comment Share on other sites More sharing options...
ltooz_audis Posted May 3, 2011 Share Posted May 3, 2011 While I played with the dvdplayer with IntelHDGraphics.kext loaded, it got panic sometimes and I took the picture of the panic screen. It called for com.apple.kit.IONDRVSupport, is this nvidia driver? I used my USB hard drive loaded with 10.6.6 or 10.6.7, I could boot with my i7 desktop and it automatically activated the full QE/CI/CL on my GS8400. So, all these troubles we have is actually in the IntelHDGraphics.kext, because when the Snow Leopard identified the 0x468086 device, it starts to use the IntelHDGraphics.kext and this kext calls out all these dependencies IO stuff, and in these io stuff, NVidia graphics card is called and we don't have it. I believe the IntelHDGraphics.kext has a codes that disable the direct connect to the screen and use Nvidia Driver. Now if we can enable the screen and disable Nvidia driver, we should get everything. It's in the AppleIntelHDGraphics.kext. BTW, to use dvdplayer, I have no NV* kext in the extension or ATI according to GhostRaider instruction. Link to comment Share on other sites More sharing options...
BlackMagick Posted May 4, 2011 Share Posted May 4, 2011 I can confirm this working on a laptop with generic parts and an i7 2630QM Sandy Bridge CPU (Intel HD 3000). These are the steps that I took: 1) Using [url="http://www.insanelymac.com/forum/topic/279450-why-insanelymac-does-not-support-tonymacx86/"]#####[/url], install from a retail 10.6.3 OSX disk 2) Upgrade to 10.6.6 using the combo update. Restart 3) Make a copy of /System/Library/IOPCIFamily.kext (put it someplace safe) 4) Upgrade to 10.6.7 using the MacbookPro Early 2011 updater (see http://tonymacx86.blogspot.com/2011/03/mac...arly-2011.html) -- 4.1) I installed Easy Beast (DSDT free) and then updated the bootloader to AnVAL (http://www.insanelymac.com/forum/index.php?showtopic=216726) and then did a cp -R /Volume/[url="http://www.insanelymac.com/forum/topic/279450-why-insanelymac-does-not-support-tonymacx86/"]#####[/url]/Extra /Extra before updating the smbios.plist and editing the System Information - This results in the use of the [url="http://www.insanelymac.com/forum/topic/279450-why-insanelymac-does-not-support-tonymacx86/"]#####[/url] kernel and extensions -- 4.2) Don't reboot after upgrading to 10.6.7 5) Copy back the 10.6.6 IOPCIFamily.kext, replacing the one that was just updated (you may want to place this in your /Extra/Extensions folder and delete the one in the /System/Library folder). This was necessary for me because of lock-ups in the boot process where the log shows "[ PCI configuration begin ]" messages. 6) Install Kyle_C's bootloader 7) Reboot - FULL QE/CI on HD 3000, 2630QM i7 SandyBridge -- I have also experienced some occasional short lockups with the cursor, as Kyle_C has - the legacy kernel that came with [url="http://www.insanelymac.com/forum/topic/279450-why-insanelymac-does-not-support-tonymacx86/"]#####[/url] 3.0, with no DSDT. Looking for a solution to that, to my wireless (AzureWave AW-NB057H) and about to checkout the sound card. Any solutions for the wireless or occasional freezes of the trackpad are welcome. Hope this helps somei devices of your video card (vga) are there in image attached? Thanksone. device id your video card as image attached? Thanks Link to comment Share on other sites More sharing options...
BlackMagick Posted May 4, 2011 Share Posted May 4, 2011 ok oggi ho provato, ed ha funzionato seguendo i consigli di ghostraider. Ho fatto un paio di foto con il cell. Se le faccio direttamente al desktop con "anteprima" viene tutto nero. Questo credo che succede perchè, la grafica non funziona bene e manca l'accelerazione e, la giusta risoluzione. Credo che con questo piccolo passo in avanti, siamo prossimi alla soluzione finale, finalmente funzionante al 100% come lo è stato tempo addietro per le intel gma950/x3100. Spero che succeda al più presto possibile, visto che chi prova l'so osx, difficilmente riesce a tornare ad utilizzare windows nella quotidianetà. ---------------------------------------------Traduzione--------------------------------------------- ok today I tried, and it worked by following the advice of ghostraider. I made a couple of pictures with the cell. If I make them directly to the desktop with "preview" is all black. I believe this is because, the graphics are not working well and lacks the acceleration and the right resolution. I believe that with this small step forward, we are coming to the final solution, finally running at 100% as it was some time ago for intel gma950/x3100. I hope that happens as soon as possible, given the evidence that those who know osx, can hardly go back to using windows in quotidianetà. Link to comment Share on other sites More sharing options...
rafirafi Posted May 4, 2011 Share Posted May 4, 2011 device id your video card as image attached? Thanks Here the device-id for all the intel graphics : vendor "Intel" 0x8086 # HD Graphics 2000/3000 - Sandy Bridge (sm4) card 0x0102 "Desktop HD Graphics 2000" card 0x0106 "Mobile HD Graphics 2000" card 0x010A "Server HD Graphics 2000" card 0x0112 "Desktop HD Graphics 3000" card 0x0116 "Mobile HD Graphics 3000" card 0x0122 "Desktop HD Graphics 3000+" card 0x0126 "Mobile HD Graphics 3000+" # HD Graphics 1000 - Ironlake (sm4) card 0x0046 "Mobile HD Graphics 1000" card 0x0042 "Desktop HD Graphics 1000" The boot file patched supported only the 0126 fully for now and can injected for id 106, 116, 126. So if success it probably means the id is 0x1268086. Link to comment Share on other sites More sharing options...
hchinasky Posted May 4, 2011 Share Posted May 4, 2011 Here the device-id for all the intel graphics : vendor "Intel" 0x8086 # HD Graphics 2000/3000 - Sandy Bridge (sm4) card 0x0102 "Desktop HD Graphics 2000" card 0x0106 "Mobile HD Graphics 2000" card 0x010A "Server HD Graphics 2000" card 0x0112 "Desktop HD Graphics 3000" card 0x0116 "Mobile HD Graphics 3000" card 0x0122 "Desktop HD Graphics 3000+" card 0x0126 "Mobile HD Graphics 3000+" # HD Graphics 1000 - Ironlake (sm4) card 0x0046 "Mobile HD Graphics 1000" card 0x0042 "Desktop HD Graphics 1000" The boot file patched supported only the 0126 fully for now and can injected for id 106, 116, 126. So if success it probably means the id is 0x1268086. Thanks , in my case I have 0112, so now I understand why it doesn´t work... Link to comment Share on other sites More sharing options...
rafirafi Posted May 4, 2011 Share Posted May 4, 2011 Thanks , in my case I have 0112, so now I understand why it doesn´t work... You can try to modify the patch and add your id and compile chameleon. It partially works for me (id 80860102), if you want I will post a modified bootloader with your id added in this post later. Just tell me. Link to comment Share on other sites More sharing options...
Recommended Posts