From 85dadd0d90552f9f472f5e182461970bb6c900f8 Mon Sep 17 00:00:00 2001 From: Derek Higgins Date: Wed, 26 Mar 2014 10:06:54 +0000 Subject: [PATCH] Revert "Only create a tmpfs big enough for DIB_MIN_TMPFS" This didn't pass CI and is now causing failures as it moves us back to a 4G tmpfs. Change-Id: Ie92fd909ad21216b1fda55c21457893df38e882f --- lib/common-functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/common-functions b/lib/common-functions index 632b7901..16e1994e 100644 --- a/lib/common-functions +++ b/lib/common-functions @@ -31,7 +31,7 @@ function mk_build_dir () { [ $? -eq 0 ] || die "Failed to create tmp directory" export TMP_BUILD_DIR if tmpfs_check ; then - sudo mount -t tmpfs tmpfs -o size=$(($DIB_MIN_TMPFS*2))G $TMP_BUILD_DIR + sudo mount -t tmpfs tmpfs $TMP_BUILD_DIR fi sudo chown $(id -u):$(id -g) $TMP_BUILD_DIR trap cleanup EXIT