summaryrefslogtreecommitdiff
path: root/gpxe/src/arch/i386/core/relocate.c
diff options
context:
space:
mode:
Diffstat (limited to 'gpxe/src/arch/i386/core/relocate.c')
-rw-r--r--gpxe/src/arch/i386/core/relocate.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/gpxe/src/arch/i386/core/relocate.c b/gpxe/src/arch/i386/core/relocate.c
index aa58ad65..fd8df087 100644
--- a/gpxe/src/arch/i386/core/relocate.c
+++ b/gpxe/src/arch/i386/core/relocate.c
@@ -1,4 +1,4 @@
-#include <io.h>
+#include <gpxe/io.h>
#include <registers.h>
#include <gpxe/memmap.h>
@@ -18,8 +18,8 @@ extern char _max_align[];
#define max_align ( ( unsigned int ) _max_align )
/* Linker symbols */
-extern char _text[];
-extern char _end[];
+extern char _textdata[];
+extern char _etextdata[];
/* within 1MB of 4GB is too close.
* MAX_ADDR is the maximum address we can easily do DMA to.
@@ -47,8 +47,8 @@ __cdecl void relocate ( struct i386_all_regs *ix86 ) {
/* Get memory map and current location */
get_memmap ( &memmap );
- start = virt_to_phys ( _text );
- end = virt_to_phys ( _end );
+ start = virt_to_phys ( _textdata );
+ end = virt_to_phys ( _etextdata );
size = ( end - start );
padded_size = ( size + max_align - 1 );