diff options
author | Patrick Georgi <patrick.georgi@coresystems.de> | 2009-10-08 15:12:31 +0000 |
---|---|---|
committer | Patrick Georgi <patrick.georgi@coresystems.de> | 2009-10-08 15:12:31 +0000 |
commit | 0523875e0968e1cabf677092d8330eb6470ce969 (patch) | |
tree | 4988f0b2ce45c9a9f55ff8a4a55b175e02081561 /src/northbridge/via | |
parent | 98402455c5a21cc8de9d5d51f7e6dd0c1b7df76e (diff) |
Disable x86emu for via based boards which bring
their own vgabios.c
Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Myles Watson <mylesgw@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4744 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/northbridge/via')
-rw-r--r-- | src/northbridge/via/cn400/Kconfig | 12 | ||||
-rw-r--r-- | src/northbridge/via/cn700/Kconfig | 11 | ||||
-rw-r--r-- | src/northbridge/via/cx700/Kconfig | 12 | ||||
-rw-r--r-- | src/northbridge/via/vx800/Kconfig | 12 |
4 files changed, 47 insertions, 0 deletions
diff --git a/src/northbridge/via/cn400/Kconfig b/src/northbridge/via/cn400/Kconfig index d07a37fd03..55608be56f 100644 --- a/src/northbridge/via/cn400/Kconfig +++ b/src/northbridge/via/cn400/Kconfig @@ -6,3 +6,15 @@ config FALLBACK_SIZE 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 + diff --git a/src/northbridge/via/cn700/Kconfig b/src/northbridge/via/cn700/Kconfig index 6902857690..9129f00206 100644 --- a/src/northbridge/via/cn700/Kconfig +++ b/src/northbridge/via/cn700/Kconfig @@ -7,3 +7,14 @@ config FALLBACK_SIZE 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 diff --git a/src/northbridge/via/cx700/Kconfig b/src/northbridge/via/cx700/Kconfig index d103dd17ad..2239f33281 100644 --- a/src/northbridge/via/cx700/Kconfig +++ b/src/northbridge/via/cx700/Kconfig @@ -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 + diff --git a/src/northbridge/via/vx800/Kconfig b/src/northbridge/via/vx800/Kconfig index 104387db51..134c157457 100644 --- a/src/northbridge/via/vx800/Kconfig +++ b/src/northbridge/via/vx800/Kconfig @@ -6,3 +6,15 @@ config FALLBACK_SIZE 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 + |