mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-27 21:40:49 +00:00
Fix kqemu build failure.
Signed-off-by: Paul Brook <paul@codesourcery.com>
This commit is contained in:
parent
fbe1b5953d
commit
4cfce484c5
2
vl.c
2
vl.c
@ -5735,7 +5735,7 @@ int main(int argc, char **argv, char **envp)
|
||||
/* FIXME: This is a nasty hack because kqemu can't cope with dynamic
|
||||
guest ram allocation. It needs to go away. */
|
||||
if (kqemu_allowed) {
|
||||
kqemu_phys_ram_size = ram_size + VGA_RAM_SIZE + 4 * 1024 * 1024;
|
||||
kqemu_phys_ram_size = ram_size + 8 * 1024 * 1024 + 4 * 1024 * 1024;
|
||||
kqemu_phys_ram_base = qemu_vmalloc(kqemu_phys_ram_size);
|
||||
if (!kqemu_phys_ram_base) {
|
||||
fprintf(stderr, "Could not allocate physical memory\n");
|
||||
|
Loading…
Reference in New Issue
Block a user