diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-08-14 14:32:10 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-08-15 18:21:46 +0100 |
commit | 2501287c69c67579f86b75839a410e5808f528dc (patch) | |
tree | caaae6c93a7abe4005c868eb90dff48671c8d20d /meta/classes/rootfs_rpm.bbclass | |
parent | e6837f785c7f6363697ca9a2d80df006d420ce92 (diff) | |
download | poky-2501287c69c67579f86b75839a410e5808f528dc.tar.gz |
rootfs_*: Refactor common depends/lockfile task flags
(From OE-Core rev: 96427656ef73bb50753a33ec6ad5e73de711ceb3)
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 | 29 |
1 files changed, 9 insertions, 20 deletions
diff --git a/meta/classes/rootfs_rpm.bbclass b/meta/classes/rootfs_rpm.bbclass index fb887e57fa..d85d001a62 100644 --- a/meta/classes/rootfs_rpm.bbclass +++ b/meta/classes/rootfs_rpm.bbclass | |||
@@ -11,15 +11,15 @@ IMAGE_ROOTFS_EXTRA_SPACE_append = "${@bb.utils.contains("PACKAGE_INSTALL", "smar | |||
11 | # Smart is python based, so be sure python-native is available to us. | 11 | # Smart is python based, so be sure python-native is available to us. |
12 | EXTRANATIVEPATH += "python-native" | 12 | EXTRANATIVEPATH += "python-native" |
13 | 13 | ||
14 | do_rootfs[depends] += "rpm-native:do_populate_sysroot" | 14 | # opkg is needed for update-alternatives |
15 | do_rootfs[depends] += "rpmresolve-native:do_populate_sysroot" | 15 | RPMROOTFSDEPENDS = "rpm-native:do_populate_sysroot \ |
16 | do_rootfs[depends] += "python-smartpm-native:do_populate_sysroot" | 16 | rpmresolve-native:do_populate_sysroot \ |
17 | python-smartpm-native:do_populate_sysroot \ | ||
18 | createrepo-native:do_populate_sysroot \ | ||
19 | opkg-native:do_populate_sysroot" | ||
17 | 20 | ||
18 | # Needed for update-alternatives | 21 | do_rootfs[depends] += "${RPMROOTFSDEPENDS}" |
19 | do_rootfs[depends] += "opkg-native:do_populate_sysroot" | 22 | do_populate_sdk[depends] += "${RPMROOTFSDEPENDS}" |
20 | |||
21 | # Creating the repo info in do_rootfs | ||
22 | do_rootfs[depends] += "createrepo-native:do_populate_sysroot" | ||
23 | 23 | ||
24 | do_rootfs[recrdeptask] += "do_package_write_rpm" | 24 | do_rootfs[recrdeptask] += "do_package_write_rpm" |
25 | rootfs_rpm_do_rootfs[vardepsexclude] += "BUILDNAME" | 25 | rootfs_rpm_do_rootfs[vardepsexclude] += "BUILDNAME" |
@@ -28,6 +28,7 @@ do_rootfs[vardeps] += "PACKAGE_FEED_URIS" | |||
28 | # RPM doesn't work with multiple rootfs generation at once due to collisions in the use of files | 28 | # RPM doesn't work with multiple rootfs generation at once due to collisions in the use of files |
29 | # in ${DEPLOY_DIR_RPM}. This can be removed if package_update_index_rpm can be called concurrently | 29 | # in ${DEPLOY_DIR_RPM}. This can be removed if package_update_index_rpm can be called concurrently |
30 | do_rootfs[lockfiles] += "${DEPLOY_DIR_RPM}/rpm.lock" | 30 | do_rootfs[lockfiles] += "${DEPLOY_DIR_RPM}/rpm.lock" |
31 | do_populate_sdk[lockfiles] += "${DEPLOY_DIR_RPM}/rpm.lock" | ||
31 | 32 | ||
32 | python () { | 33 | python () { |
33 | if d.getVar('BUILD_IMAGES_FROM_FEEDS', True): | 34 | if d.getVar('BUILD_IMAGES_FROM_FEEDS', True): |
@@ -43,16 +44,4 @@ python () { | |||
43 | # Smart is python based, so be sure python-native is available to us. | 44 | # Smart is python based, so be sure python-native is available to us. |
44 | EXTRANATIVEPATH += "python-native" | 45 | EXTRANATIVEPATH += "python-native" |
45 | 46 | ||
46 | do_populate_sdk[depends] += "rpm-native:do_populate_sysroot" | ||
47 | do_populate_sdk[depends] += "rpmresolve-native:do_populate_sysroot" | ||
48 | do_populate_sdk[depends] += "python-smartpm-native:do_populate_sysroot" | ||
49 | |||
50 | # Needed for update-alternatives | ||
51 | do_populate_sdk[depends] += "opkg-native:do_populate_sysroot" | ||
52 | |||
53 | # Creating the repo info in do_rootfs | ||
54 | do_populate_sdk[depends] += "createrepo-native:do_populate_sysroot" | ||
55 | |||
56 | rpmlibdir = "/var/lib/rpm" | 47 | rpmlibdir = "/var/lib/rpm" |
57 | |||
58 | do_populate_sdk[lockfiles] += "${DEPLOY_DIR_RPM}/rpm.lock" | ||