diff options
author | Zhenhua Luo <zhenhua.luo@freescale.com> | 2013-03-28 12:18:45 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-29 10:40:18 +0000 |
commit | 056490ddbfdbb6cc6fa0d8ff8716d64819d6b16c (patch) | |
tree | a03de118b4be398f1d6ce03d89a78bf822443a63 /meta/classes/rootfs_rpm.bbclass | |
parent | 5d0839bef631dceb4395fcf204779a76966a1061 (diff) | |
download | openembedded-core-056490ddbfdbb6cc6fa0d8ff8716d64819d6b16c.tar.gz |
rpm: split out run-postinsts
1. Split out run-postinsts script into separated package, sometimes only the
postinsts script is required to run all postinsts scripts in /etc/rpm-postinsts/
instead of the whole rpm package.
2. Set ROOTFS_PKGMANAGE_BOOTSTRAP to rpm-postinsts
Signed-off-by: Zhenhua Luo <zhenhua.luo@freescale.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/rootfs_rpm.bbclass')
-rw-r--r-- | meta/classes/rootfs_rpm.bbclass | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/meta/classes/rootfs_rpm.bbclass b/meta/classes/rootfs_rpm.bbclass index 1d3ea641f0..d373dab408 100644 --- a/meta/classes/rootfs_rpm.bbclass +++ b/meta/classes/rootfs_rpm.bbclass @@ -3,6 +3,7 @@ # ROOTFS_PKGMANAGE = "rpm smartpm" +ROOTFS_PKGMANAGE_BOOTSTRAP = "rpm-postinsts" # Add 50Meg of extra space for Smart IMAGE_ROOTFS_EXTRA_SPACE_append = "${@base_contains("PACKAGE_INSTALL", "smartpm", " + 51200", "" ,d)}" @@ -10,9 +11,6 @@ IMAGE_ROOTFS_EXTRA_SPACE_append = "${@base_contains("PACKAGE_INSTALL", "smartpm" # Smart is python based, so be sure python-native is available to us. EXTRANATIVEPATH += "python-native" -# Postinstalls on device are handled within this class at present -ROOTFS_PKGMANAGE_BOOTSTRAP = "" - do_rootfs[depends] += "rpm-native:do_populate_sysroot" do_rootfs[depends] += "rpmresolve-native:do_populate_sysroot" do_rootfs[depends] += "python-smartpm-native:do_populate_sysroot" |