From: Michael Tremer Date: Sun, 16 Aug 2020 10:28:09 +0000 (+0000) Subject: make.sh: Increase maximum size of ramdisk to 8GB X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=815ca15dc4e7e3d20a5fd7006395c9b1664bb04c;p=people%2Fstevee%2Fipfire-2.x.git make.sh: Increase maximum size of ramdisk to 8GB The previous 4GB were not enough for a full GCC bootstrap in the toolchain stage. Signed-off-by: Michael Tremer --- diff --git a/make.sh b/make.sh index f371a36a51..ee34db1ac1 100755 --- a/make.sh +++ b/make.sh @@ -476,7 +476,7 @@ prepareenv() { if [ "${ENABLE_RAMDISK}" = "on" ]; then mkdir -p $BASEDIR/build/usr/src - mount -t tmpfs tmpfs -o size=4G,nr_inodes=1M,mode=1777 $BASEDIR/build/usr/src + mount -t tmpfs tmpfs -o size=8G,nr_inodes=1M,mode=1777 $BASEDIR/build/usr/src mkdir -p ${BASEDIR}/build/tmp mount -t tmpfs tmpfs -o size=4G,nr_inodes=1M,mode=1777 ${BASEDIR}/build/tmp