Merge pull request #7 from yomimono/more_memory

run qemu-system-x86_64 with 256M of memory
This commit is contained in:
Justin Cormack 2016-01-09 13:08:53 +00:00
commit d94573e8b3

View File

@ -7,4 +7,4 @@ RUN apk update && apk add qemu-system-x86_64
RUN gzip -9 initrd.img
ENTRYPOINT [ "qemu-system-x86_64", "-kernel", "vmlinuz64", "-initrd", "initrd.img.gz", "-append", "earlyprintk=serial console=ttyS0", "-vnc", "none", "-nographic" ]
ENTRYPOINT [ "qemu-system-x86_64", "-serial", "stdio", "-kernel", "vmlinuz64", "-initrd", "initrd.img.gz", "-m", "256", "-append", "earlyprintk=serial console=ttyS0", "-vnc", "none" ]