Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/arm32/include Define KERNEL_TEXT_BASE, ALT_PAGE_TBL...



details:   https://anonhg.NetBSD.org/src/rev/b107190f9dae
branches:  trunk
changeset: 517350:b107190f9dae
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Sun Nov 11 00:32:02 2001 +0000

description:
Define KERNEL_TEXT_BASE, ALT_PAGE_TBLS_BASE, and KERNEL_VM_BASE
in terms of KERNEL_BASE.

diffstat:

 sys/arch/arm32/include/vmparam.h |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (22 lines):

diff -r 76aff0af6580 -r b107190f9dae sys/arch/arm32/include/vmparam.h
--- a/sys/arch/arm32/include/vmparam.h  Sun Nov 11 00:25:23 2001 +0000
+++ b/sys/arch/arm32/include/vmparam.h  Sun Nov 11 00:32:02 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: vmparam.h,v 1.23 2001/08/11 13:20:20 chris Exp $       */
+/*     $NetBSD: vmparam.h,v 1.24 2001/11/11 00:32:02 thorpej Exp $     */
 
 /*
  * Copyright (c) 1988 The Regents of the University of California.
@@ -96,9 +96,9 @@
 
 /* Various constants used by the MD code*/
 #define        KERNEL_BASE             0xf0000000
-#define        KERNEL_TEXT_BASE        KERNEL_BASE
-#define        ALT_PAGE_TBLS_BASE      0xf0c00000
-#define        KERNEL_VM_BASE          0xf1000000
+#define        KERNEL_TEXT_BASE        (KERNEL_BASE + 0x00000000)
+#define        ALT_PAGE_TBLS_BASE      (KERNEL_BASE + 0x00c00000)
+#define        KERNEL_VM_BASE          (KERNEL_BASE + 0x01000000)
 /*
  * The Kernel VM Size varies depending on the machine depending on how
  * much space is needed (and where) for other mappings.



Home | Main Index | Thread Index | Old Index