This patch adds the CONFIG_VIDEO_MB option to boards that

currently don't have it but need it to compile with the new Geode GX1
VGA support. This sets the size at 4MB, which was the size previously
defined in the VGA code.

Signed-off-by: Corey Osgood <corey.osgod@gmail.com>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>



git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2845 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Corey Osgood 2007-10-10 15:01:48 +00:00 committed by Uwe Hermann
parent 96fb22d9b0
commit ae1ab3edec
3 changed files with 8 additions and 4 deletions

View File

@ -40,6 +40,7 @@ uses CONFIG_UDELAY_TSC
uses CONFIG_TSC_X86RDTSC_CALIBRATE_WITH_TIMER2 uses CONFIG_TSC_X86RDTSC_CALIBRATE_WITH_TIMER2
# uses CONFIG_CONSOLE_VGA # uses CONFIG_CONSOLE_VGA
# uses CONFIG_PCI_ROM_RUN # uses CONFIG_PCI_ROM_RUN
uses CONFIG_VIDEO_MB
## ROM_SIZE is the size of boot ROM that this board will use. ## ROM_SIZE is the size of boot ROM that this board will use.
@ -155,6 +156,7 @@ default MAXIMUM_CONSOLE_LOGLEVEL=9
# VGA Console # VGA Console
# default CONFIG_CONSOLE_VGA=1 # default CONFIG_CONSOLE_VGA=1
# default CONFIG_PCI_ROM_RUN=1 # default CONFIG_PCI_ROM_RUN=1
default CONFIG_VIDEO_MB = 4
end end

View File

@ -35,17 +35,14 @@ uses HAVE_MP_TABLE
uses CROSS_COMPILE uses CROSS_COMPILE
uses CC uses CC
uses HOSTCC uses HOSTCC
uses OBJCOPY uses OBJCOPY
uses CONFIG_CONSOLE_SERIAL8250 uses CONFIG_CONSOLE_SERIAL8250
uses DEFAULT_CONSOLE_LOGLEVEL uses DEFAULT_CONSOLE_LOGLEVEL
uses MAXIMUM_CONSOLE_LOGLEVEL uses MAXIMUM_CONSOLE_LOGLEVEL
uses TTYS0_BAUD uses TTYS0_BAUD
uses TTYS0_BASE uses TTYS0_BASE
uses TTYS0_LCS uses TTYS0_LCS
uses CONFIG_VIDEO_MB
## ROM_SIZE is the size of boot ROM that this board will use. ## ROM_SIZE is the size of boot ROM that this board will use.
default ROM_SIZE = 256*1024 default ROM_SIZE = 256*1024
@ -143,5 +140,7 @@ default CROSS_COMPILE=""
default CC="$(CROSS_COMPILE)gcc -m32" default CC="$(CROSS_COMPILE)gcc -m32"
default HOSTCC="gcc" default HOSTCC="gcc"
default CONFIG_VIDEO_MB = 4
end end

View File

@ -44,6 +44,7 @@ uses CONFIG_PCI_ROM_RUN
uses CONFIG_COMPRESSED_PAYLOAD_LZMA uses CONFIG_COMPRESSED_PAYLOAD_LZMA
uses CONFIG_COMPRESSED_PAYLOAD_NRV2B uses CONFIG_COMPRESSED_PAYLOAD_NRV2B
uses CONFIG_PRECOMPRESSED_PAYLOAD uses CONFIG_PRECOMPRESSED_PAYLOAD
uses CONFIG_VIDEO_MB
## ROM_SIZE is the size of boot ROM that this board will use. ## ROM_SIZE is the size of boot ROM that this board will use.
default ROM_SIZE = 256*1024 default ROM_SIZE = 256*1024
@ -166,5 +167,7 @@ default DEFAULT_CONSOLE_LOGLEVEL=8
## At a maximum only compile in this level of debugging ## At a maximum only compile in this level of debugging
default MAXIMUM_CONSOLE_LOGLEVEL=8 default MAXIMUM_CONSOLE_LOGLEVEL=8
default CONFIG_VIDEO_MB = 4
end end