summaryrefslogtreecommitdiffstats
path: root/meta/conf/bitbake.conf
diff options
context:
space:
mode:
authorJoshua Watt <JPEWhacker@gmail.com>2023-12-18 08:38:02 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-12-20 07:47:00 +0000
commit8dff7186333533334e3707f2a19aa44d3d10b8a2 (patch)
treed7616b6b7181fd2035742d2f07d9462cf7a2fbe1 /meta/conf/bitbake.conf
parent255e165c601bc4a32ec8bc5cf659f9c086d2d0f9 (diff)
downloadpoky-8dff7186333533334e3707f2a19aa44d3d10b8a2.tar.gz
bitbake.conf: Add runtimedir
Adds the path to the runtime state directory (/run). In particular, systemd units need to have the correct path to the runtime directory because RequiresMountsFor doesn't follow symbolic links. This means that if a unit calls out a directory in /var/run (a symbolic link to /run), it may actually start before /run is mounted. The fix is to have the unit specify a directory in /run instead. (From OE-Core rev: 90bc18108230f6d41a50cebc8348444e119e95bf) Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/bitbake.conf')
-rw-r--r--meta/conf/bitbake.conf1
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
index e7826e7af9..83b12cbc15 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -31,6 +31,7 @@ export sysconfdir = "${base_prefix}/etc"
31export servicedir = "${base_prefix}/srv" 31export servicedir = "${base_prefix}/srv"
32export sharedstatedir = "${base_prefix}/com" 32export sharedstatedir = "${base_prefix}/com"
33export localstatedir = "${base_prefix}/var" 33export localstatedir = "${base_prefix}/var"
34runtimedir = "${base_prefix}/run"
34export datadir = "${prefix}/share" 35export datadir = "${prefix}/share"
35export infodir = "${datadir}/info" 36export infodir = "${datadir}/info"
36export mandir = "${datadir}/man" 37export mandir = "${datadir}/man"