From c8998e9e71d2ccf217aaefc78f71296ffdf73989 Mon Sep 17 00:00:00 2001 From: fosslinux Date: Sat, 9 Oct 2021 18:04:00 +1100 Subject: [PATCH] Highlight need for 32-bit kernel; use 4G ram by default It will always fit within 4G RAM. --- README.rst | 2 +- rootfs.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index fb6bdd4..ed562f6 100644 --- a/README.rst +++ b/README.rst @@ -18,7 +18,7 @@ Get me started! 1. ``git clone https://github.com/fosslinux/live-bootstrap`` 2. ``git submodule update --init --recursive`` 3. Provide a kernel (vmlinuz file) as the name kernel in the root of the - repository. + repository. **This must be a 32-bit kernel.** 4. ``./rootfs.py`` - ensure your account has kvm privileges and qemu installed. diff --git a/rootfs.py b/rootfs.py index b3ac5f1..3c88746 100755 --- a/rootfs.py +++ b/rootfs.py @@ -59,7 +59,7 @@ def main(): parser.add_argument("-qc", "--qemu-cmd", help="QEMU command to run", default="qemu-system-x86_64") parser.add_argument("-qr", "--qemu-ram", help="Memory (in megabytes) allocated to QEMU VM", - default=8000) + default=4096) parser.add_argument("-qk", "--kernel", help="Kernel to use (default is ./kernel)", default="kernel")