diff options
author | Ronald G. Minnich <rminnich@gmail.com> | 2006-09-07 15:31:27 +0000 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2006-09-07 15:31:27 +0000 |
commit | b59906c1e9dc6e3e4902382cc3e9f4aa205ced34 (patch) | |
tree | 1ed193480515c8b86bd394c629ba441f941b2ac4 /src/mainboard/olpc | |
parent | 42fb3164ed84b6c768c4c1ce3cf8b298cb9a569f (diff) |
remove dangerous call to normal image; no backup on OLPC
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2399 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/olpc')
-rw-r--r-- | src/mainboard/olpc/rev_a/failover.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mainboard/olpc/rev_a/failover.c b/src/mainboard/olpc/rev_a/failover.c index bdcb9eaed2..35317fc7b2 100644 --- a/src/mainboard/olpc/rev_a/failover.c +++ b/src/mainboard/olpc/rev_a/failover.c @@ -8,6 +8,7 @@ static unsigned long main(unsigned long bist) { +#if 0 /* This is the primary cpu how should I boot? */ if (do_normal_boot()) { goto normal_image; @@ -28,5 +29,6 @@ static unsigned long main(unsigned long bist) : /* clobbers */ ); fallback_image: +#endif return bist; } |