mirror of
https://github.com/xcat2/xNBA.git
synced 2024-12-14 23:31:39 +00:00
Add relocate.h
Note that we can't make real-mode calls immediately after relocate_to().
This commit is contained in:
parent
9cc90cbb07
commit
29f43896aa
@ -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.
|
||||
*/
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user