From patchwork Mon Feb 20 09:53:56 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [bitbake-devel,2/2] V4 Add config sample for disk space monitoring Date: Mon, 20 Feb 2012 09:53:56 -0000 From: Robert Yang X-Patchwork-Id: 21429 Message-Id: <97029eb6f87f3ff9bf7272cad7c18462ddb614fa.1329727465.git.liezhi.yang@windriver.com> To: Add config sample for disk space monitoring to meta-yocto/conf/local.conf.sample [YOCTO #1589] Signed-off-by: Robert Yang --- meta-yocto/conf/local.conf.sample | 29 +++++++++++++++++++++++++++++ 1 files changed, 29 insertions(+), 0 deletions(-) diff --git a/meta-yocto/conf/local.conf.sample b/meta-yocto/conf/local.conf.sample index 38507e3..33e6d7a 100644 --- a/meta-yocto/conf/local.conf.sample +++ b/meta-yocto/conf/local.conf.sample @@ -224,3 +224,32 @@ PATCHRESOLVE = "noop" # track the version of this file when it was generated. This can safely be ignored if # this doesn't mean anything to you. CONF_VERSION = "1" + +# +# Disk space monitor, take action when the disk space or the amount of +# inode is running low, it is enabled when BB_DISKMON_DIRS is set. +# +# Set the directories to monitor for disk usage, if more than one +# directories are mounted in the same device, then only one directory +# would be monitored since the monitor is based on the device. +# The format are: "directory,minimum space,minimum free inode", +# either space or inode (Or both of them) should be specified, otherwise +# the monitor would not be enabled, the unit can be G, M, K or none, +# but do NOT use GB, MB or KB (B is not needed). +#BB_DISKMON_DIRS = "${TMPDIR},1G,1K ${SSTATE_DIR},500M,1K" +# +# Set the action when the space is running low, the action is one of: +# ABORT: Immediately abort +# NO_NEW_TASK: no new tasks +# WARN: show warnings +# The default is WARN +#BB_DISKMON_ACTION = "WARN" +# +# Set disk space and inode interval, the unit can be G, M, or K, but do +# NOT use the GB, MB or KB (B is not needed), the format is: +# "disk space interval, disk inode interval", the default value is +# "10M, 50" which means that it would warn when the free space is +# lower than the minimum space(or inode), and would repeat the action +# when the disk space reduces 10M (or the amount of inode reduces 50) +# again. +#BB_DISKMON_INTERVAL = "10M,1K"