summaryrefslogtreecommitdiff
path: root/sys/arch/i386/include
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2004-01-13 23:56:57 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2004-01-13 23:56:57 +0000
commitc4a8175453c15ce76716955589945a423dfe696f (patch)
treeafde04fe130e89c0a178cc0910018df8fd0cf1b7 /sys/arch/i386/include
parentc18b0efee0baa203cff13116df4b4ccc72651d68 (diff)
Fix KERNTEXTOFF value (long) after the move to ELF.
tricked-to-commit-into-i386-land millert@
Diffstat (limited to 'sys/arch/i386/include')
-rw-r--r--sys/arch/i386/include/param.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/include/param.h b/sys/arch/i386/include/param.h
index 0406774c0a5..b43bf2e6029 100644
--- a/sys/arch/i386/include/param.h
+++ b/sys/arch/i386/include/param.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: param.h,v 1.24 2003/06/02 23:27:47 millert Exp $ */
+/* $OpenBSD: param.h,v 1.25 2004/01/13 23:56:56 miod Exp $ */
/* $NetBSD: param.h,v 1.29 1996/03/04 05:04:26 cgd Exp $ */
/*-
@@ -83,7 +83,7 @@
*/
#define KERNBASE 0xd0000000
-#define KERNTEXTOFF (KERNBASE+0x100000) /* start of kernel text */
+#define KERNTEXTOFF (KERNBASE+0x100120) /* start of kernel text */
#define BTOPKERNBASE ((u_long)KERNBASE >> PGSHIFT)
#define DEV_BSHIFT 9 /* log2(DEV_BSIZE) */