Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch Use __kernel_end instead. Does not change anything, ...
details: https://anonhg.NetBSD.org/src/rev/6226254818f0
branches: trunk
changeset: 349323:6226254818f0
user: maxv <maxv%NetBSD.org@localhost>
date: Tue Dec 06 15:05:07 2016 +0000
description:
Use __kernel_end instead. Does not change anything, but will be meaningful
soon.
diffstat:
sys/arch/amd64/amd64/locore.S | 4 ++--
sys/arch/i386/i386/locore.S | 6 +++---
2 files changed, 5 insertions(+), 5 deletions(-)
diffs (45 lines):
diff -r 6fd2af7d23af -r 6226254818f0 sys/arch/amd64/amd64/locore.S
--- a/sys/arch/amd64/amd64/locore.S Tue Dec 06 08:58:16 2016 +0000
+++ b/sys/arch/amd64/amd64/locore.S Tue Dec 06 15:05:07 2016 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: locore.S,v 1.114 2016/11/25 14:12:55 maxv Exp $ */
+/* $NetBSD: locore.S,v 1.115 2016/12/06 15:05:07 maxv Exp $ */
/*
* Copyright-o-rama!
@@ -597,7 +597,7 @@
*/
/* Find end of kernel image; brings us on (1). */
- movl $RELOC(end),%edi
+ movl $RELOC(__kernel_end),%edi
#if (NKSYMS || defined(DDB) || defined(MODULAR)) && !defined(makeoptions_COPY_SYMTAB)
/* Save the symbols (if loaded); brinds us on (2). */
diff -r 6fd2af7d23af -r 6226254818f0 sys/arch/i386/i386/locore.S
--- a/sys/arch/i386/i386/locore.S Tue Dec 06 08:58:16 2016 +0000
+++ b/sys/arch/i386/i386/locore.S Tue Dec 06 15:05:07 2016 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: locore.S,v 1.141 2016/11/25 14:12:55 maxv Exp $ */
+/* $NetBSD: locore.S,v 1.142 2016/12/06 15:05:07 maxv Exp $ */
/*
* Copyright-o-rama!
@@ -128,7 +128,7 @@
*/
#include <machine/asm.h>
-__KERNEL_RCSID(0, "$NetBSD: locore.S,v 1.141 2016/11/25 14:12:55 maxv Exp $");
+__KERNEL_RCSID(0, "$NetBSD: locore.S,v 1.142 2016/12/06 15:05:07 maxv Exp $");
#include "opt_compat_oldboot.h"
#include "opt_copy_symtab.h"
@@ -601,7 +601,7 @@
*/
/* Find end of kernel image; brings us on (1). */
- movl $RELOC(end),%edi
+ movl $RELOC(__kernel_end),%edi
#if (NKSYMS || defined(DDB) || defined(MODULAR)) && !defined(makeoptions_COPY_SYMTAB)
/* Save the symbols (if loaded); brinds us on (2). */
Home |
Main Index |
Thread Index |
Old Index