david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

Add relocate.h

Note that we can't make real-mode calls immediately after relocate_to().
This commit is contained in:
Michael Brown 2005-04-09 13:36:55 +00:00
parent 9cc90cbb07
commit 29f43896aa
1 changed files with 7 additions and 0 deletions

View File

@ -2,6 +2,7 @@
#include "memsizes.h"
#include "osdep.h"
#include "etherboot.h"
#include "relocate.h"
/* by Eric Biederman */
@ -182,5 +183,11 @@ void relocate ( void ) {
addr, addr + _end - _text );
relocate_to ( addr );
/* Note that we cannot make real-mode calls
* (e.g. printf) at this point, because the pointer
* installed_librm uses a virtual address (in order
* that it can have a valid initialiser) and so is
* currently invalid.
*/
}
}