diff options
| author | Michael Brown | 2005-04-08 17:01:17 +0200 |
|---|---|---|
| committer | Michael Brown | 2005-04-08 17:01:17 +0200 |
| commit | 0ff80b477dcff0726ebdbed95e8a93971e59e82b (patch) | |
| tree | 860b7150212a07c24a9529ea072f3fb12700974c /src/core/relocate.c | |
| parent | Merged this file into HEAD (diff) | |
| download | ipxe-0ff80b477dcff0726ebdbed95e8a93971e59e82b.tar.gz ipxe-0ff80b477dcff0726ebdbed95e8a93971e59e82b.tar.xz ipxe-0ff80b477dcff0726ebdbed95e8a93971e59e82b.zip | |
Merged mcb30-realmode-redesign back to HEAD
Diffstat (limited to 'src/core/relocate.c')
| -rw-r--r-- | src/core/relocate.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/relocate.c b/src/core/relocate.c index d20846a88..436432e5c 100644 --- a/src/core/relocate.c +++ b/src/core/relocate.c @@ -1,6 +1,7 @@ #ifndef NORELOCATE #include "etherboot.h" +#include "memsizes.h" /* by Eric Biederman */ @@ -93,10 +94,10 @@ void relocate(void) printf("Relocating _text from: [%lx,%lx) to [%lx,%lx)\n", old_addr, virt_to_phys(_end), addr, eaddr); - arch_relocate_to(addr); + /* arch_relocate_to ( addr ) */ cleanup(); relocate_to(addr); - arch_relocated_from(old_addr); + /* arch_relocated_from ( addr ) */ } } |
