From 11fc452dcb3675ee042b200c901a94cc35d4a7fe Mon Sep 17 00:00:00 2001 From: Christian Poessinger Date: Wed, 24 Nov 2021 19:43:40 +0100 Subject: fstab: T3990: do not mount /vat/tmp with size=25M option Added initially in commit 0fb1a61 ("fstab: T3990: mount tmpfs on /var/tmp to get clean FS on reboots") but this causes the "add system image" command to fail as new ISO images are downloaded to /var/tmp. (cherry picked from commit c6e4cf6369a7ed070e3650fa395972f7023b8583) --- components/9990-fstab.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/9990-fstab.sh b/components/9990-fstab.sh index 8753327..9fb53a3 100755 --- a/components/9990-fstab.sh +++ b/components/9990-fstab.sh @@ -27,7 +27,7 @@ Fstab () if ! grep -qs "^tmpfs /var/tmp" /root/etc/fstab then - echo "tmpfs /var/tmp tmpfs nosuid,nodev,size=25M 0 0" >> /root/etc/fstab + echo "tmpfs /var/tmp tmpfs nosuid,nodev 0 0" >> /root/etc/fstab fi if [ -z "${NOFASTBOOT}" ] -- cgit v1.2.3