[oe-commits] [openembedded-core] 05/28: extrausers.bbclass: Use PACKAGE_INSTALL instead of IMAGE_INSTALL

git at git.openembedded.org git at git.openembedded.org
Fri Dec 16 08:40:57 UTC 2016


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

commit fa541362e2d2cc0494a86a413b7b52dfe3eee908
Author: Jackie Huang <jackie.huang at windriver.com>
AuthorDate: Tue Dec 13 16:24:48 2016 +0800

    extrausers.bbclass: Use PACKAGE_INSTALL instead of IMAGE_INSTALL
    
    The initramfs image recipes changed to use PACKAGE_INSTALL
    so they will not be affected by IMAGE_INSTALL, and will cause
    error when inherit extrausers:
    
    | ERROR: core-image-minimal-initramfs-1.0-r0 do_rootfs:
      core-image-minimal-initramfs: usermod command did not succeed.
    
    So use PACKAGE_INSTALL as well in extrausers.bbclass to fix it.
    
    Signed-off-by: Jackie Huang <jackie.huang at windriver.com>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 meta/classes/extrausers.bbclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/classes/extrausers.bbclass b/meta/classes/extrausers.bbclass
index 43900f3..852810e 100644
--- a/meta/classes/extrausers.bbclass
+++ b/meta/classes/extrausers.bbclass
@@ -15,7 +15,7 @@
 
 inherit useradd_base
 
-IMAGE_INSTALL_append = " ${@['', 'base-passwd shadow'][bool(d.getVar('EXTRA_USERS_PARAMS', True))]}"
+PACKAGE_INSTALL_append = " ${@['', 'base-passwd shadow'][bool(d.getVar('EXTRA_USERS_PARAMS', True))]}"
 
 # Image level user / group settings
 ROOTFS_POSTPROCESS_COMMAND_append = " set_user_group;"

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


More information about the Openembedded-commits mailing list