diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2007-10-30 23:57:59 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2007-10-30 23:57:59 +0000 |
commit | 113c2013bb185b2931630b869ec9e1cb985542dc (patch) | |
tree | f30568e5b267772c1010665ba1caafb08b0595ca /targets/asus/p2b/Config.lb | |
parent | 68d8a56cc56ab9805bee85c08f7211ef8455ca4d (diff) |
Various smaller fixes to make the ASUS P2B match the format
of all the other boards in this patch series.
Add missing PIRQ table to make most devices work.
Enable VGA support. Add flashrom flashing protection code.
Make CPU init actually work (result: massive speed-up).
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2913 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'targets/asus/p2b/Config.lb')
-rw-r--r-- | targets/asus/p2b/Config.lb | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/targets/asus/p2b/Config.lb b/targets/asus/p2b/Config.lb index ba56b9ac8a..30495f3d5d 100644 --- a/targets/asus/p2b/Config.lb +++ b/targets/asus/p2b/Config.lb @@ -23,16 +23,25 @@ mainboard asus/p2b option ROM_SIZE = 256 * 1024 +option MAINBOARD_VENDOR = "ASUS" +option MAINBOARD_PART_NUMBER = "P2B" + +option IRQ_SLOT_COUNT = 6 + +option DEFAULT_CONSOLE_LOGLEVEL = 9 +option MAXIMUM_CONSOLE_LOGLEVEL = 9 + +option CONFIG_CONSOLE_VGA = 1 +option CONFIG_PCI_ROM_RUN = 1 + romimage "normal" option USE_FALLBACK_IMAGE = 0 - option ROM_IMAGE_SIZE = 64 * 1024 option LINUXBIOS_EXTRA_VERSION = ".0Normal" payload /tmp/filo.elf end romimage "fallback" option USE_FALLBACK_IMAGE = 1 - option ROM_IMAGE_SIZE = 64 * 1024 option LINUXBIOS_EXTRA_VERSION = ".0Fallback" payload /tmp/filo.elf end |