diff options
author | Ward Vandewege <ward@gnu.org> | 2008-03-10 19:53:30 +0000 |
---|---|---|
committer | Ward Vandewege <ward@gnu.org> | 2008-03-10 19:53:30 +0000 |
commit | 0719b8e4606b23d4c9822cb7c8121a87068c73ed (patch) | |
tree | bc892fbc91805a6d49021e6b26d9260426319f25 | |
parent | 7aad44c4962656a476dbdf4d5eb54c0e142818d8 (diff) | |
download | coreboot-0719b8e4606b23d4c9822cb7c8121a87068c73ed.tar.xz |
The ATI vga rom is only 36K on the Tyan s2881.
This is a trivial patch.
Signed-off-by: Ward Vandewege <ward@gnu.org>
Acked-by: Ward Vandewege <ward@gnu.org>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3131 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
-rw-r--r-- | targets/tyan/s2881/Config.lb | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/targets/tyan/s2881/Config.lb b/targets/tyan/s2881/Config.lb index d7bf7a4825..112236d347 100644 --- a/targets/tyan/s2881/Config.lb +++ b/targets/tyan/s2881/Config.lb @@ -7,10 +7,12 @@ mainboard tyan/s2881 # Tyan s2881 romimage "normal" -# 48K for SCSI FW or ATI ROM - option ROM_SIZE = 512*1024-48*1024 -# 48K for SCSI FW and 48K for ATI ROM -# option ROM_SIZE = 512*1024-48*1024-48*1024 +# 36K for ATI ROM + option ROM_SIZE = 512*1024-36*1024 +# 48K for SCSI FW +# option ROM_SIZE = 512*1024-48*1024 +# 48K for SCSI FW and 36K for ATI ROM +# option ROM_SIZE = 512*1024-48*1024-36*1024 # 64K for Etherboot # option ROM_SIZE = 512*1024-64*1024 option USE_FALLBACK_IMAGE=0 |