For some reason I'm not sure of yet, cfe_exit(warmstart, ...) isn't

working any more.  Just do a cold restart so at least we get back to
CFE for now...
This commit is contained in:
simonb 2002-06-07 01:34:03 +00:00
parent 72fe1c3076
commit 214395e5cd
1 changed files with 7 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.6 2002/06/01 16:14:23 simonb Exp $ */
/* $NetBSD: machdep.c,v 1.7 2002/06/07 01:34:03 simonb Exp $ */
/*
* Copyright 2000, 2001
@ -526,7 +526,12 @@ haltsys:
printf("rebooting...\n\n");
if (cfe_present) {
cfe_exit(1, (howto & RB_DUMP) ? 1 : 0);
/*
* XXX
* For some reason we can't return to CFE with
* and do a warm start. Need to look into this...
*/
cfe_exit(0, (howto & RB_DUMP) ? 1 : 0);
printf("cfe_exit didn't!\n");
}