intel_extreme: Disable IvyBridge

* Prevent driver from picking up IvyBridge
  for the moment. (VESA works for the moment)
* We get a white screen of doom. Looks as though
  supporting IvyBridge will require more than
  just basic fixups.
This commit is contained in:
Alexander von Gluck IV 2012-12-28 18:59:41 +00:00
parent 881a823e8a
commit 59b18b8836
1 changed files with 3 additions and 1 deletions

View File

@ -90,12 +90,14 @@ const struct supported_device {
{0x0126, INTEL_TYPE_SNBGM, "SandyBridge Mobile GT2+"},
{0x010a, INTEL_TYPE_SNBGS, "SandyBridge Server"},
#if 0
{0x0152, INTEL_TYPE_IVBG, "IvyBridge Desktop GT1"},
{0x0162, INTEL_TYPE_IVBG, "IvyBridge Desktop GT2"},
{0x0156, INTEL_TYPE_IVBGM, "IvyBridge Mobile GT1"},
{0x0166, INTEL_TYPE_IVBGM, "IvyBridge Mobile GT2"},
{0x015a, INTEL_TYPE_IVBGS, "IvyBridge Server GT1"},
{0x016a, INTEL_TYPE_IVBGS, "IvyBridge Server GT2"}
{0x016a, INTEL_TYPE_IVBGS, "IvyBridge Server GT2"},
#endif
};
int32 api_version = B_CUR_DRIVER_API_VERSION;