diff options
author | Harald Hoyer <harald@redhat.com> | 2015-02-01 11:45:02 +0100 |
---|---|---|
committer | Harald Hoyer <harald@redhat.com> | 2015-02-01 11:52:41 +0100 |
commit | b05291f4f343c7568d28d8b2f22e448752041b47 (patch) | |
tree | bd3a27103b33a02d42b4cf677e4086705cee8c9e | |
parent | 2540801adc69277dca9ac19fb9443e368ffbfc31 (diff) |
Makefile.am:qemu: give the qemu machine more memory
If testing with large initramfs files, the kernel fails
to decompress these, because it runs out of memory.
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 20f3580..5ccc4a4 100644 --- a/Makefile.am +++ b/Makefile.am @@ -194,7 +194,7 @@ test-disk.img: gummiboot$(MACHINE_TYPE_NAME).efi test/test-create-disk.sh $(AM_V_GEN)test/test-create-disk.sh qemu: test-disk.img - $(QEMU) -machine accel=kvm -m 256 -bios $(QEMU_BIOS) -snapshot test-disk.img + $(QEMU) -machine accel=kvm -m 1024 -bios $(QEMU_BIOS) -snapshot test-disk.img install-tree: all rm -rf $(abs_srcdir)/install-tree |