diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2004-10-14 18:30:50 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2004-10-14 18:30:50 +0000 |
commit | 0476acacf54b30fd987100e6ac7e7bb60be25dca (patch) | |
tree | 28439bf9657eec04cbb1f38929c06a2f40cad6cd /sys | |
parent | eedc2a0729623caafb469890b1db0886d03d4ff8 (diff) |
a bit larger delays during boot() to let msgs appear
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/hppa/hppa/machdep.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/hppa/hppa/machdep.c b/sys/arch/hppa/hppa/machdep.c index 3ef6ac60e54..3c21bbc16aa 100644 --- a/sys/arch/hppa/hppa/machdep.c +++ b/sys/arch/hppa/hppa/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.137 2004/09/19 01:30:11 mickey Exp $ */ +/* $OpenBSD: machdep.c,v 1.138 2004/10/14 18:30:49 mickey Exp $ */ /* * Copyright (c) 1999-2003 Michael Shalayeff @@ -1001,18 +1001,18 @@ boot(howto) if (howto & RB_HALT) { if (howto & RB_POWERDOWN && cold_hook) { printf("Powering off..."); - DELAY(1000000); + DELAY(2000000); (*cold_hook)(HPPA_COLD_OFF); DELAY(1000000); } printf("System halted!\n"); - DELAY(1000000); + DELAY(2000000); __asm __volatile("stwas %0, 0(%1)" :: "r" (CMD_STOP), "r" (LBCAST_ADDR + iomod_command)); } else { printf("rebooting..."); - DELAY(1000000); + DELAY(2000000); __asm __volatile(".export hppa_reset, entry\n\t" ".label hppa_reset"); __asm __volatile("stwas %0, 0(%1)" |