diff options
author | Eric Anholt <anholt@FreeBSD.org> | 2006-04-17 01:12:28 -0500 |
---|---|---|
committer | Eric Anholt <anholt@FreeBSD.org> | 2006-04-17 01:12:28 -0500 |
commit | 365b4a53ee965002a5452e6f6016b528e51cee69 (patch) | |
tree | 7c41ba6389b6097f70c19bd5b72d66fb7def2a8b | |
parent | ee7be006b63b6b1ce7f786b045fb8f26d337433c (diff) |
Disable the BIOS dump-to-file since it's a trivial local DOS, and I can just ask
people to turn it on and recompile when I need to.
-rw-r--r-- | src/i830_bios.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/i830_bios.c b/src/i830_bios.c index 00cec522..19b1b5ad 100644 --- a/src/i830_bios.c +++ b/src/i830_bios.c @@ -97,7 +97,9 @@ i830GetBIOS(ScrnInfoPtr pScrn) xf86ReadPciBIOS(0, pI830->PciTag, 0, pI830->VBIOS, INTEL_VBIOS_SIZE); } - i830DumpBIOSToFile(pScrn); + if (0) + i830DumpBIOSToFile(pScrn); + vbt_off = INTEL_BIOS_16(0x1a); if (vbt_off >= INTEL_VBIOS_SIZE) { xf86DrvMsg(pScrn->scrnIndex, X_ERROR, "Bad VBT offset: 0x%x\n", |