From 88cf4c3df07673785d5442020aee960bf6fdc950 Mon Sep 17 00:00:00 2001 From: mickey Date: Mon, 10 Feb 1997 08:34:22 +0000 Subject: [PATCH] add kernel_text symbol --- sys/arch/atari/atari/locore.s | 2 ++ sys/arch/pc532/pc532/locore.s | 2 ++ 2 files changed, 4 insertions(+) diff --git a/sys/arch/atari/atari/locore.s b/sys/arch/atari/atari/locore.s index 128db4ee718..c5eb67a1112 100644 --- a/sys/arch/atari/atari/locore.s +++ b/sys/arch/atari/atari/locore.s @@ -53,6 +53,8 @@ #include .text +_C_LABEL(kernel_text): + /* * This is where we wind up if the kernel jumps to location 0. * (i.e. a bogus PC) This is known to immediately follow the vector diff --git a/sys/arch/pc532/pc532/locore.s b/sys/arch/pc532/pc532/locore.s index 71bb6a36570..0637e3ebe6c 100644 --- a/sys/arch/pc532/pc532/locore.s +++ b/sys/arch/pc532/pc532/locore.s @@ -80,6 +80,8 @@ __have_fpu: .long 0 .text .globl start +.globl _C_LABEL(kernel_text) +_C_LABEL(kernel_text) = start start: br here_we_go -- 2.20.1