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
This commit is contained in:
Ronald G. Minnich 2006-09-07 15:31:27 +00:00
parent 42fb3164ed
commit b59906c1e9
1 changed files with 2 additions and 0 deletions

View File

@ -8,6 +8,7 @@
static unsigned long main(unsigned long bist) static unsigned long main(unsigned long bist)
{ {
#if 0
/* This is the primary cpu how should I boot? */ /* This is the primary cpu how should I boot? */
if (do_normal_boot()) { if (do_normal_boot()) {
goto normal_image; goto normal_image;
@ -28,5 +29,6 @@ static unsigned long main(unsigned long bist)
: /* clobbers */ : /* clobbers */
); );
fallback_image: fallback_image:
#endif
return bist; return bist;
} }