diff options
author | 2021-05-19 09:59:53 -0600 | |
---|---|---|
committer | 2021-05-30 08:19:35 +0100 | |
commit | e9f9ca2da778aa0ab3ff4980c42022b5ef23fae9 (patch) | |
tree | 2540aa0aac162df7e473095138a66f3b3d12d99b | |
parent | 995cc2e391d12f94b4a0cdd3ec6a2b909cb7fcd5 (diff) | |
download | poky-e9f9ca2da778aa0ab3ff4980c42022b5ef23fae9.tar.gz poky-e9f9ca2da778aa0ab3ff4980c42022b5ef23fae9.tar.bz2 poky-e9f9ca2da778aa0ab3ff4980c42022b5ef23fae9.zip |
baremetal-image: Fix post process command rootfs_update_timestamp
When running:
execute_pre_post_process(d, d.getVar(ROOTFS_POSTPROCESS_COMMAND))
rootfs_update_timestamp is run, which assumes that rootfs/${sysconfdir}
is already created (usually done through the do_rootfs task on linux).
This causes the build to fail if ${sysconfdir} does not exist.
This may be overlooked if debug-tweaks is enabled since some other
commands are added, one of which creates the required path
(see postinst_enable_logging).
See [1] for more info:
[1] https://github.com/aehs29/meta-freertos/issues/4
(From OE-Core rev: 179a912bf10ba02448e8d603043c454ca678ac60)
Signed-off-by: Alejandro Enedino Hernandez Samaniego <alejandro@enedino.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/baremetal-image.bbclass | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/classes/baremetal-image.bbclass b/meta/classes/baremetal-image.bbclass index b0f5e885b5..bc888f6223 100644 --- a/meta/classes/baremetal-image.bbclass +++ b/meta/classes/baremetal-image.bbclass @@ -50,6 +50,10 @@ python do_rootfs(){ if os.path.lexists(manifest_link): os.remove(manifest_link) os.symlink(os.path.basename(manifest_name), manifest_link) + # A lot of postprocess commands assume the existence of rootfs/etc + sysconfdir = d.getVar("IMAGE_ROOTFS") + d.getVar('sysconfdir') + bb.utils.mkdirhier(sysconfdir) + execute_pre_post_process(d, d.getVar('ROOTFS_POSTPROCESS_COMMAND')) } |