Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/newsmips/include bootloader requires systype values...



details:   https://anonhg.NetBSD.org/src/rev/42c5aaed6318
branches:  trunk
changeset: 515244:42c5aaed6318
user:      tsutsui <tsutsui%NetBSD.org@localhost>
date:      Thu Sep 20 12:29:48 2001 +0000

description:
bootloader requires systype values so change
#ifdef _KERNEL -> #if defined(_KERNEL) || defined(_STANDALONE)

diffstat:

 sys/arch/newsmips/include/cpu.h |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (17 lines):

diff -r af7b4516aabb -r 42c5aaed6318 sys/arch/newsmips/include/cpu.h
--- a/sys/arch/newsmips/include/cpu.h   Thu Sep 20 11:11:54 2001 +0000
+++ b/sys/arch/newsmips/include/cpu.h   Thu Sep 20 12:29:48 2001 +0000
@@ -1,11 +1,11 @@
-/*     $NetBSD: cpu.h,v 1.13 2001/09/16 03:20:01 tsutsui Exp $ */
+/*     $NetBSD: cpu.h,v 1.14 2001/09/20 12:29:48 tsutsui Exp $ */
 
 #ifndef _NEWSMIPS_CPU_H_
 #define _NEWSMIPS_CPU_H_
 
 #include <mips/cpu.h>
 
-#ifdef _KERNEL
+#if defined(_KERNEL) || defined(_STANDALONE)
 #ifndef _LOCORE
 extern int systype;
 



Home | Main Index | Thread Index | Old Index