Comments
Patch
===================================================================
@@ -21,3 +21,6 @@
bool
default n
+config EPIA_VT8237R_INIT
+ bool
+ default n
===================================================================
@@ -37,3 +37,15 @@
int
default 5
depends on BOARD_VIA_EPIA_M
+
+# this is done by this board's vgabios.c already
+config VGA_ROM_RUN
+ bool
+ default n
+ depends on BOARD_VIA_EPIA_M
+
+config PCI_ROM_RUN
+ bool
+ default n
+ depends on BOARD_VIA_EPIA_M
+
===================================================================
@@ -1,3 +1,15 @@
config NORTHBRIDGE_VIA_CX700
bool
default n
+
+# this is done by the northbridge's vgabios.c already
+config VGA_ROM_RUN
+ bool
+ default n
+ depends on NORTHBRIDGE_VIA_CX700
+
+config PCI_ROM_RUN
+ bool
+ default n
+ depends on NORTHBRIDGE_VIA_CX700
+
===================================================================
@@ -6,3 +6,15 @@
int
default 0
depends on NORTHBRIDGE_VIA_CN400
+
+# this is done by the northbridge's vgabios.c already
+config VGA_ROM_RUN
+ bool
+ default n
+ depends on NORTHBRIDGE_VIA_CN400
+
+config PCI_ROM_RUN
+ bool
+ default n
+ depends on NORTHBRIDGE_VIA_CN400
+
===================================================================
@@ -6,3 +6,15 @@
int
default 0
depends on NORTHBRIDGE_VIA_VX800
+
+# this is done by the northbridge's vgabios.c already
+config VGA_ROM_RUN
+ bool
+ default n
+ depends on NORTHBRIDGE_VIA_VX800
+
+config PCI_ROM_RUN
+ bool
+ default n
+ depends on NORTHBRIDGE_VIA_VX800
+
===================================================================
@@ -7,3 +7,14 @@
int
default 0
depends on NORTHBRIDGE_VIA_CN700
+
+# this is done by the northbridge's vgabios.c already
+config VGA_ROM_RUN
+ bool
+ default n
+ depends on NORTHBRIDGE_VIA_CN700
+
+config PCI_ROM_RUN
+ bool
+ default n
+ depends on NORTHBRIDGE_VIA_CN700
Hi, the changes to VGA_RUN_ROM and PCI_RUN_ROM broke boards using certain via chipsets, as they use their own vgabios handling. The real fix would be to eliminate those copies and move their via support code (if there is any) to x86emu or so, but this is good enough for now: x86emu is disabled, and vgabios.c (of the board or northbridge) can take over. Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>