From 1109a302d9c912e2d14700c269b770549b9de17b Mon Sep 17 00:00:00 2001 From: Matt Housh Date: Sat, 3 Nov 2018 15:58:50 -0500 Subject: [PATCH] Removed tmpfs size limit from initramfs --- initramfs/init | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/initramfs/init b/initramfs/init index 89c8832..465a15f 100755 --- a/initramfs/init +++ b/initramfs/init @@ -102,7 +102,7 @@ find_and_mount_media() { echo -e " ${BOLD}${BLUE}*${NORM} Populating root filesystem..." mkdir -p /newroot echo -e -n " ${BOLD}${BLUE}*${NORM} Mounting new root filesystem... " - mount -t tmpfs -o size=450m tmpfs /newroot + mount -t tmpfs tmpfs /newroot checkReturn echo -e -n " ${BOLD}${BLUE}*${NORM} Copying files from rootfs.tar.xz... " tar -xJf ${MEDIAMNT}/${PREFIX}/rootfs.tar.xz -C /newroot