From 410805431cd5208f758c60a733767233ea3208fa Mon Sep 17 00:00:00 2001
From: Waldemar Brodkorb <wbx@openadk.org>
Date: Mon, 19 Jul 2010 19:34:16 +0200
Subject: fix tmpfs size, when /etc/tmpfs is not given

---
 package/base-files/src/init | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'package/base-files')

diff --git a/package/base-files/src/init b/package/base-files/src/init
index 173e91b0b..7da1e150f 100755
--- a/package/base-files/src/init
+++ b/package/base-files/src/init
@@ -4,8 +4,8 @@ export PATH=/bin:/sbin:/usr/bin:/usr/sbin
 mount -nt proc proc /proc
 mount -o nosuid,nodev,noexec -t sysfs sysfs /sys
 [ ! -f /etc/notmpfs ] && {
-	size=2048
 	size=$(cat /etc/tmpfs 2>/dev/null)
+	[ -z $size ] && size=2048
 	mount none /tmp -t tmpfs -o size=${size}k
 	mount none /tmp -t tmpfs -o remount,nosuid,nodev,mode=1777
 }
-- 
cgit v1.2.3