Allow per-northbridge and per-board VGA BIOS file name and PCI ID defaults.
Of course, the user can still override those defaults, if needed. Add defaults for VIA pc2500e, Kontron 986LCD-M/mITX, MSI MS-6178. Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Uwe Hermann <uwe@hermann-uwe.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4891 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
7943fe61df
commit
81b3c0a10f
|
@ -420,7 +420,7 @@ config FALLBACK_VGA_BIOS_FILE
|
|||
The path and filename of the file to use as VGA BIOS.
|
||||
|
||||
config FALLBACK_VGA_BIOS_ID
|
||||
string "VGA BIOS ID"
|
||||
string "VGA device PCI IDs"
|
||||
depends on VGA_BIOS
|
||||
default "1106,3230"
|
||||
help
|
||||
|
|
|
@ -60,3 +60,9 @@ config MAX_PHYSICAL_CPUS
|
|||
int
|
||||
default 2
|
||||
depends on BOARD_KONTRON_986LCD_M
|
||||
|
||||
config FALLBACK_VGA_BIOS_FILE
|
||||
string
|
||||
default "amipci_01.20"
|
||||
depends on BOARD_KONTRON_986LCD_M
|
||||
|
||||
|
|
|
@ -49,3 +49,9 @@ config IRQ_SLOT_COUNT
|
|||
default 4
|
||||
depends on BOARD_MSI_MS_6178
|
||||
|
||||
# No need to override the chipset FALLBACK_VGA_BIOS_ID.
|
||||
config FALLBACK_VGA_BIOS_FILE
|
||||
string
|
||||
default "i810.vga"
|
||||
depends on BOARD_MSI_MS_6178
|
||||
|
||||
|
|
|
@ -42,3 +42,13 @@ config MAINBOARD_PCI_SUBSYSTEM_DEVICE_ID
|
|||
default 0xaa51
|
||||
depends on BOARD_VIA_PC2500E
|
||||
|
||||
config FALLBACK_VGA_BIOS_FILE
|
||||
string
|
||||
default "M14CRT.ROM"
|
||||
depends on BOARD_VIA_PC2500E
|
||||
|
||||
config FALLBACK_VGA_BIOS_ID
|
||||
string
|
||||
default "1106,3344"
|
||||
depends on BOARD_VIA_PC2500E
|
||||
|
||||
|
|
|
@ -43,3 +43,8 @@ config VIDEO_MB
|
|||
default 1 if I810_VIDEO_MB_1MB
|
||||
depends on NORTHBRIDGE_INTEL_I82810
|
||||
|
||||
config FALLBACK_VGA_BIOS_ID
|
||||
string
|
||||
default "8086,7121"
|
||||
depends on NORTHBRIDGE_INTEL_I82810
|
||||
|
||||
|
|
|
@ -20,3 +20,9 @@
|
|||
config NORTHBRIDGE_INTEL_I945
|
||||
bool
|
||||
select HAVE_HIGH_TABLES
|
||||
|
||||
config FALLBACK_VGA_BIOS_ID
|
||||
string
|
||||
default "8086,27a2"
|
||||
depends on NORTHBRIDGE_INTEL_I945
|
||||
|
||||
|
|
Loading…
Reference in New Issue