summaryrefslogtreecommitdiffstats
path: root/meta-poky/conf/local.conf.sample
diff options
context:
space:
mode:
authorScott Murray <scott.murray@konsulko.com>2022-02-17 17:15:03 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-02-21 23:37:27 +0000
commit8cc8380074091b09229264ca9048b538c2fc1640 (patch)
tree84af85a819be39946beb6dcf6e1110894d592fb1 /meta-poky/conf/local.conf.sample
parentd58ab954849986599290a0ca4745d2fca7e6ae15 (diff)
downloadpoky-8cc8380074091b09229264ca9048b538c2fc1640.tar.gz
meta-poky: Update BB_DISKMON_DIRS use
Update the example BB_DISKMON_DIRS definitions in the sample local.conf files for the rename of the "ABORT" action to "HALT". (From meta-yocto rev: f7dc69745e3dbd5cf0d4950c44169b26c30b1902) Signed-off-by: Scott Murray <scott.murray@konsulko.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-poky/conf/local.conf.sample')
-rw-r--r--meta-poky/conf/local.conf.sample10
1 files changed, 5 insertions, 5 deletions
diff --git a/meta-poky/conf/local.conf.sample b/meta-poky/conf/local.conf.sample
index dc7891988f..55e90e008e 100644
--- a/meta-poky/conf/local.conf.sample
+++ b/meta-poky/conf/local.conf.sample
@@ -184,7 +184,7 @@ PATCHRESOLVE = "noop"
184# 184#
185# Monitor the disk space during the build. If there is less that 1GB of space or less 185# Monitor the disk space during the build. If there is less that 1GB of space or less
186# than 100K inodes in any key build location (TMPDIR, DL_DIR, SSTATE_DIR), gracefully 186# than 100K inodes in any key build location (TMPDIR, DL_DIR, SSTATE_DIR), gracefully
187# shutdown the build. If there is less than 100MB or 1K inodes, perform a hard abort 187# shutdown the build. If there is less than 100MB or 1K inodes, perform a hard halt
188# of the build. The reason for this is that running completely out of space can corrupt 188# of the build. The reason for this is that running completely out of space can corrupt
189# files and damages the build in ways which may not be easily recoverable. 189# files and damages the build in ways which may not be easily recoverable.
190# It's necessary to monitor /tmp, if there is no space left the build will fail 190# It's necessary to monitor /tmp, if there is no space left the build will fail
@@ -194,10 +194,10 @@ BB_DISKMON_DIRS ??= "\
194 STOPTASKS,${DL_DIR},1G,100K \ 194 STOPTASKS,${DL_DIR},1G,100K \
195 STOPTASKS,${SSTATE_DIR},1G,100K \ 195 STOPTASKS,${SSTATE_DIR},1G,100K \
196 STOPTASKS,/tmp,100M,100K \ 196 STOPTASKS,/tmp,100M,100K \
197 ABORT,${TMPDIR},100M,1K \ 197 HALT,${TMPDIR},100M,1K \
198 ABORT,${DL_DIR},100M,1K \ 198 HALT,${DL_DIR},100M,1K \
199 ABORT,${SSTATE_DIR},100M,1K \ 199 HALT,${SSTATE_DIR},100M,1K \
200 ABORT,/tmp,10M,1K" 200 HALT,/tmp,10M,1K"
201 201
202# 202#
203# Shared-state files from other locations 203# Shared-state files from other locations