diff options
author | Anton Kachalov <rnouse@google.com> | 2021-01-15 16:43:23 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-01-16 22:39:35 +0000 |
commit | 49c4fdcb884057c0fc713925c8040e36fd26af8d (patch) | |
tree | 1d9e77e8895b889028d36d4607d3512a12a66c38 /meta/lib | |
parent | e9bd99fe385b73b1607f41ff22132572e8a8264b (diff) | |
download | poky-49c4fdcb884057c0fc713925c8040e36fd26af8d.tar.gz |
rootfs: add option to allow delayed postinsts on read-only rootfs
Example use case in OpenBMC: rootfs is squashfs and the system has either
overlayfs for whole rootfs or for some parts (e.g. /etc).
This option will allow to create migration one-shot postinsts using
"pkg_postinst_ontarget_${PN}" routines defined in recipes to fix
files under upper workdir in overlayfs.
(From OE-Core rev: 0977204e16279b117811b5d5cdac5918287e95ac)
Signed-off-by: Anton D. Kachalov <rnouse@google.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oe/rootfs.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/lib/oe/rootfs.py b/meta/lib/oe/rootfs.py index 4b747dd0f4..249c685dcf 100644 --- a/meta/lib/oe/rootfs.py +++ b/meta/lib/oe/rootfs.py | |||
@@ -217,6 +217,9 @@ class Rootfs(object, metaclass=ABCMeta): | |||
217 | self.progress_reporter.next_stage() | 217 | self.progress_reporter.next_stage() |
218 | 218 | ||
219 | if bb.utils.contains("IMAGE_FEATURES", "read-only-rootfs", | 219 | if bb.utils.contains("IMAGE_FEATURES", "read-only-rootfs", |
220 | True, False, self.d) and \ | ||
221 | not bb.utils.contains("IMAGE_FEATURES", | ||
222 | "read-only-rootfs-delayed-postinsts", | ||
220 | True, False, self.d): | 223 | True, False, self.d): |
221 | delayed_postinsts = self._get_delayed_postinsts() | 224 | delayed_postinsts = self._get_delayed_postinsts() |
222 | if delayed_postinsts is not None: | 225 | if delayed_postinsts is not None: |