From cabe5794803fbe18bedac2d9c7f2417a0fa95ec1 Mon Sep 17 00:00:00 2001 From: Graeme Russ Date: Tue, 24 Nov 2009 20:04:20 +1100 Subject: i386: Move references to link script exports Signed-off-by: Graeme Russ --- lib_i386/bios_setup.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'lib_i386/bios_setup.c') diff --git a/lib_i386/bios_setup.c b/lib_i386/bios_setup.c index 33c842c6a..6491e522e 100644 --- a/lib_i386/bios_setup.c +++ b/lib_i386/bios_setup.c @@ -45,6 +45,9 @@ DECLARE_GLOBAL_DATA_PTR; #define BIOS_BASE ((char*)0xf0000) #define BIOS_CS 0xf000 +extern ulong _i386boot_bios; +extern ulong _i386boot_bios_size; + /* these are defined in a 16bit segment and needs * to be accessed with the RELOC_16_xxxx() macros below */ @@ -138,6 +141,9 @@ static void setvector(int vector, u16 segment, void *handler) int bios_setup(void) { + ulong i386boot_bios = (ulong)&_i386boot_bios; + ulong i386boot_bios_size = (ulong)&_i386boot_bios_size; + static int done=0; int vector; #ifdef CONFIG_PCI -- cgit v1.2.3