From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH 62/62] make.sh: Increase maximum size of ramdisk to 8GB Date: Sun, 16 Aug 2020 10:29:53 +0000 Message-ID: <20200816102953.3881-62-michael.tremer@ipfire.org> In-Reply-To: <20200816102953.3881-1-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============5463247892247555751==" List-Id: --===============5463247892247555751== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable The previous 4GB were not enough for a full GCC bootstrap in the toolchain stage. Signed-off-by: Michael Tremer --- make.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make.sh b/make.sh index f371a36a5..ee34db1ac 100755 --- a/make.sh +++ b/make.sh @@ -476,7 +476,7 @@ prepareenv() { =20 if [ "${ENABLE_RAMDISK}" =3D "on" ]; then mkdir -p $BASEDIR/build/usr/src - mount -t tmpfs tmpfs -o size=3D4G,nr_inodes=3D1M,mode=3D1777 $BASEDIR/buil= d/usr/src + mount -t tmpfs tmpfs -o size=3D8G,nr_inodes=3D1M,mode=3D1777 $BASEDIR/buil= d/usr/src =20 mkdir -p ${BASEDIR}/build/tmp mount -t tmpfs tmpfs -o size=3D4G,nr_inodes=3D1M,mode=3D1777 ${BASEDIR}/bu= ild/tmp --=20 2.20.1 --===============5463247892247555751==--