diff options
author | Trevor Woerner <twoerner@gmail.com> | 2023-02-27 00:00:40 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-02-28 07:53:54 +0000 |
commit | d5d40479d706cbb382850b9479c5dd9bfb801c99 (patch) | |
tree | 1443017d0817af40b30b19c02981ecc10a3af2e3 /meta/conf/bitbake.conf | |
parent | ea4c56e2e883b904380bc34e9202436322f41bf1 (diff) | |
download | poky-d5d40479d706cbb382850b9479c5dd9bfb801c99.tar.gz |
VOLATILE_TMP_DIR: add
Provide a mechanism to allow users to choose whether the /tmp directory
is on persistent storage (non-volatile) or a RAM-based tmpfs (volatile).
The default is volatile.
Works for both sysvinit-based and systemd-based systems.
(From OE-Core rev: 8b76c0637eaeaf5bd5e696680cd74b7a642f4157)
Signed-off-by: Trevor Woerner <twoerner@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/bitbake.conf')
-rw-r--r-- | meta/conf/bitbake.conf | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index dcf6ce99d1..afd9e2f552 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf | |||
@@ -90,6 +90,10 @@ ROOT_HOME ??= "/home/root" | |||
90 | # If set to boolean false ('no', 'n', 'false', 'f', '0'), /var/log is on persistent storage. | 90 | # If set to boolean false ('no', 'n', 'false', 'f', '0'), /var/log is on persistent storage. |
91 | VOLATILE_LOG_DIR ?= "yes" | 91 | VOLATILE_LOG_DIR ?= "yes" |
92 | 92 | ||
93 | # if set to 'yes': /tmp links to /var/tmp which links to /var/volatile/tmp | ||
94 | # otherwise: /tmp is on persistent storage | ||
95 | VOLATILE_TMP_DIR ?= "yes" | ||
96 | |||
93 | BB_RENAMED_VARIABLES[PNBLACKLIST] = "SKIP_RECIPE" | 97 | BB_RENAMED_VARIABLES[PNBLACKLIST] = "SKIP_RECIPE" |
94 | BB_RENAMED_VARIABLES[CVE_CHECK_PN_WHITELIST] = "CVE_CHECK_SKIP_RECIPE" | 98 | BB_RENAMED_VARIABLES[CVE_CHECK_PN_WHITELIST] = "CVE_CHECK_SKIP_RECIPE" |
95 | BB_RENAMED_VARIABLES[CVE_CHECK_WHITELIST] = "CVE_CHECK_IGNORE" | 99 | BB_RENAMED_VARIABLES[CVE_CHECK_WHITELIST] = "CVE_CHECK_IGNORE" |