[oe-commits] [openembedded-core] 16/24: meta/lib/oe/rootfs.py: do not execute defer_to_first_boot when processing postinst_intercept hooks

git at git.openembedded.org git at git.openembedded.org
Mon Jan 29 23:09:40 UTC 2018


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 939f7f1a06cd2db05aeb5e75a66322314e10aa6d
Author: Alexander Kanavin <alexander.kanavin at linux.intel.com>
AuthorDate: Mon Jan 29 14:01:30 2018 +0200

    meta/lib/oe/rootfs.py: do not execute defer_to_first_boot when processing postinst_intercept hooks
    
    That hook is empty, and doesn't need to be executed; it merely indicates that packages
    that have used it are requesting to defer their postinst scripts to first boot
    unconditionally.
    
    Signed-off-by: Alexander Kanavin <alexander.kanavin at linux.intel.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/lib/oe/rootfs.py | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/meta/lib/oe/rootfs.py b/meta/lib/oe/rootfs.py
index d3ec8a5..8bf77ae 100644
--- a/meta/lib/oe/rootfs.py
+++ b/meta/lib/oe/rootfs.py
@@ -324,6 +324,10 @@ class Rootfs(object, metaclass=ABCMeta):
             if script == "postinst_intercept" or not os.access(script_full, os.X_OK):
                 continue
 
+            if script == "delay_to_first_boot":
+                self._postpone_to_first_boot(script_full)
+                continue
+
             bb.note("> Executing %s intercept ..." % script)
 
             try:

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list