From: Hugo Villeneuve Date: Tue, 20 Aug 2013 02:08:48 +0000 (-0400) Subject: Remove 256k limit on initlog tmpfs X-Git-Url: http://gitweb.hugovil.com/?a=commitdiff_plain;h=d0a46aa214b68ecfc54e0ebae31063db90b4e3df;p=hvlinux.git Remove 256k limit on initlog tmpfs On one occasion, the 256k limit was reached. Also removed inode limit. --- diff --git a/stage1/bootscripts/initlog b/stage1/bootscripts/initlog index 71bc0da..9cde2d0 100755 --- a/stage1/bootscripts/initlog +++ b/stage1/bootscripts/initlog @@ -11,21 +11,21 @@ case "$1" in if [ ! -d ${INIT_LOG_PATH} ]; then boot_failure "Missing ${INIT_LOG_PATH} directory." fi - - mount -t tmpfs -o size=256k,nr_inodes=10,mode=0755 tmpfs ${INIT_LOG_PATH} && + + mount -t tmpfs -o mode=0755 tmpfs ${INIT_LOG_PATH} && touch ${INIT_LOG_FILE} ;; - + stop) umount ${INIT_LOG_PATH} ;; - + restart) $0 stop sleep 1 $0 start ;; - + *) echo "Usage: $0 {start|stop|restart}" exit ${EXIT_CODE_FAILURE}