diff options
author | 2006-10-23 20:34:29 +0000 | |
---|---|---|
committer | 2006-10-23 20:34:29 +0000 | |
commit | 7573585f7e431a4176684314555a05ee6f8ebdd2 (patch) | |
tree | eb5088530907eea68e2c58af8ce733ef73b41c75 | |
parent | Correctly invoke sh_clock_init() [merge error] (diff) | |
download | wireguard-openbsd-7573585f7e431a4176684314555a05ee6f8ebdd2.tar.xz wireguard-openbsd-7573585f7e431a4176684314555a05ee6f8ebdd2.zip |
Move towards winter.
-rw-r--r-- | sys/arch/landisk/landisk/autoconf.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/landisk/landisk/autoconf.c b/sys/arch/landisk/landisk/autoconf.c index 6d510576386..09eaa6d5ef2 100644 --- a/sys/arch/landisk/landisk/autoconf.c +++ b/sys/arch/landisk/landisk/autoconf.c @@ -48,7 +48,7 @@ #include <machine/bootinfo.h> #include <machine/intr.h> -int cold; +int cold = 1; struct device *booted_device; int booted_partition; @@ -69,6 +69,8 @@ cpu_configure(void) /* Configuration is finished, turn on interrupts. */ spl0(); + + cold = 0; } int |