[OE-core] [RFC][PATCH 1/3] rootfs.py: Allow to override postinst-intercepts location
Joshua Lock
joshua.lock at collabora.co.uk
Tue Sep 15 16:04:49 UTC 2015
On Fri, 2015-09-04 at 14:22 +0200, Martin Jansa wrote:
> * useful when we need to overlay/extend intercept scripts from oe
> -core
>
> Signed-off-by: Martin Jansa <Martin.Jansa at gmail.com>
Patch queued in my joshuagl/fido-next tree - thanks!
Joshua
http://cgit.openembedded.org/openembedded-core-contrib/log/?h=joshuagl/
fido-next
> ---
> meta/lib/oe/rootfs.py | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/meta/lib/oe/rootfs.py b/meta/lib/oe/rootfs.py
> index c29843b..76950ec 100644
> --- a/meta/lib/oe/rootfs.py
> +++ b/meta/lib/oe/rootfs.py
> @@ -164,6 +164,9 @@ class Rootfs(object):
> pre_process_cmds =
> self.d.getVar("ROOTFS_PREPROCESS_COMMAND", True)
> post_process_cmds =
> self.d.getVar("ROOTFS_POSTPROCESS_COMMAND", True)
>
> + postinst_intercepts_dir =
> self.d.getVar("POSTINST_INTERCEPTS_DIR", True)
> + if not postinst_intercepts_dir:
> + postinst_intercepts_dir =
> self.d.expand("${COREBASE}/scripts/postinst-intercepts")
> intercepts_dir = os.path.join(self.d.getVar('WORKDIR',
> True),
> "intercept_scripts")
>
> @@ -173,8 +176,7 @@ class Rootfs(object):
>
> bb.utils.mkdirhier(self.deploy_dir_image)
>
> - shutil.copytree(self.d.expand("${COREBASE}/scripts/postinst
> -intercepts"),
> - intercepts_dir)
> + shutil.copytree(postinst_intercepts_dir, intercepts_dir)
>
>
> shutil.copy(self.d.expand("${COREBASE}/meta/files/deploydir_readme.t
> xt"),
> self.deploy_dir_image +
> --
> 2.5.0
>
More information about the Openembedded-core
mailing list