diff options
author | Myles Watson <mylesgw@gmail.com> | 2009-06-11 18:27:41 +0000 |
---|---|---|
committer | Myles Watson <mylesgw@gmail.com> | 2009-06-11 18:27:41 +0000 |
commit | 124d8767dac8827be3104db1e1d710c32813d8d3 (patch) | |
tree | 1291caf3d029868de566c8733848722b0eadbee4 /src/mainboard/tyan/s2895 | |
parent | 9ca6ed548ed52c4ae2e3c8f1e360e5e569bc1739 (diff) |
Fix s2895 failover booting.
Abuild tested and boot tested on s2895 and serengeti_cheetah.
Signed-off-by: Myles Watson <mylesgw@gmail.com>
Acked-by: Ronald G. Minnich <rminnich@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4355 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/tyan/s2895')
-rw-r--r-- | src/mainboard/tyan/s2895/cache_as_ram_auto.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mainboard/tyan/s2895/cache_as_ram_auto.c b/src/mainboard/tyan/s2895/cache_as_ram_auto.c index 4d06456d36..43a6cf089e 100644 --- a/src/mainboard/tyan/s2895/cache_as_ram_auto.c +++ b/src/mainboard/tyan/s2895/cache_as_ram_auto.c @@ -214,6 +214,8 @@ void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx) #if HAVE_FAILOVER_BOOT==1 #if USE_FAILOVER_IMAGE==1 failover_process(bist, cpu_init_detectedx); + #else + real_main(bist, cpu_init_detectedx); #endif #else #if USE_FALLBACK_IMAGE == 1 |