From ddb435fb56a068de6f8a030334d1fc59ede0d61e Mon Sep 17 00:00:00 2001 From: thorpej Date: Sun, 11 Nov 2001 00:32:02 +0000 Subject: [PATCH] Define KERNEL_TEXT_BASE, ALT_PAGE_TBLS_BASE, and KERNEL_VM_BASE in terms of KERNEL_BASE. --- sys/arch/arm32/include/vmparam.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sys/arch/arm32/include/vmparam.h b/sys/arch/arm32/include/vmparam.h index 1ea7bb383a81..f995413a97a3 100644 --- a/sys/arch/arm32/include/vmparam.h +++ b/sys/arch/arm32/include/vmparam.h @@ -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.