-
Notifications
You must be signed in to change notification settings - Fork 602
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
emulators/qemu: Re-enable build for i386
During the upgrade to 7.0 the build of qemu for i386 got disabled, due to "unknown-type name 'vm_page_t'" errors. This has been fixed. PR: 268647 Reported by: dim
- Loading branch information
Showing
4 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
--- bsd-user/host/i386/host-signal.h.orig 2022-12-14 16:28:45 UTC | ||
+++ bsd-user/host/i386/host-signal.h | ||
@@ -13,6 +13,7 @@ | ||
@@ -12,6 +12,7 @@ | ||
#include <sys/param.h> | ||
#include <sys/ucontext.h> | ||
#include <machine/trap.h> | ||
#include <vm/pmap.h> | ||
+#include <vm/vm.h> | ||
#include <vm/pmap.h> | ||
#include <machine/pmap.h> | ||
|
||
static inline uintptr_t host_signal_pc(ucontext_t *uc) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters