diff options
author | Juergen Beisert <juergen127@kreuzholzen.de> | 2007-10-05 21:00:10 +0000 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2007-10-05 21:00:10 +0000 |
commit | 4ac32176d146bee42f7a0de880ea01ae45de9663 (patch) | |
tree | 2dd0aa057359ef4928b92883829e33d7abb8cb23 /src/config | |
parent | 23740c82e2bd45b2755376b58f331ba57c474d72 (diff) |
This patch will add support for the Geode GX1/CS5530 VGA feature. It's able
to set up one of five screen resolutions (sorry no autodetection at runtime,
resolution is selected at buildtime) and displays a graphic in the right
bottom corner (splash screen).
Signed-off-by: Juergen Beisert <juergen127@kreuzholzen.de>
Acked-by: Ronald G. Minnich <rminnich@gmail.com>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2827 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/config')
-rw-r--r-- | src/config/Options.lb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/config/Options.lb b/src/config/Options.lb index d1645cdcf6..bc70a90710 100644 --- a/src/config/Options.lb +++ b/src/config/Options.lb @@ -1016,7 +1016,23 @@ define CONFIG_VIDEO_MB comment "Integrated graphics with UMA has dynamic setup" end +define CONFIG_GX1_VIDEO + default 0 + export used + comment "Build in GX1's graphic support" +end +define CONFIG_GX1_VIDEOMODE + default none + export used + comment "Define video mode after reset" +# could be +# 0 for 640x480 +# 1 for 800x600 +# 2 for 1024x768 +# 3 for 1280x960 +# 4 for 1280x1024 +end ############################################### # Board specific options |