diff options
author | Ian Campbell <ian.campbell@citrix.com> | 2011-07-13 11:46:40 +0100 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2011-07-20 20:39:36 -0400 |
commit | 7fc039e9c262b4199fab497f3e12f4e425c37560 (patch) | |
tree | 7787615fe83dd1470c944f3bea75dc34ba8a1828 /src/post.c | |
parent | 1313b78a5b096ac4bb8a611d25633246047462e8 (diff) | |
download | seabios-7fc039e9c262b4199fab497f3e12f4e425c37560.tar.gz |
xen: actually setup hypercalls.
This was somehow dropped during the iterations of the original Xen patches.
It's actually harmless at the moment since there are no users of hypercalls but
patches are being written to support Xen PV block devices which need this.
It's not clear exactly how early this needs to be but I think it needs to be at
least before init_hw() (since that would detect disk devices).
Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
Diffstat (limited to 'src/post.c')
-rw-r--r-- | src/post.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -229,6 +229,9 @@ maininit(void) pci_setup(); smm_init(); + // Setup Xen hypercalls + xen_init_hypercalls(); + // Initialize internal tables boot_setup(); |