diff options
author | Chen Qi <Qi.Chen@windriver.com> | 2015-04-27 18:19:59 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-04-28 07:56:54 +0100 |
commit | 6bae518c1099f1afc0148581844eb0453bdd1d1f (patch) | |
tree | bc166bcf2afd0ee04c18022767b9ff4ccd71d203 | |
parent | 87de892d682d15ba2cbbee6bfd63a4644e0f517a (diff) | |
download | poky-6bae518c1099f1afc0148581844eb0453bdd1d1f.tar.gz |
populate_sdk_base: also record the host part into manifest
For now, we can create manifest for the target part for SDK.
I think it's nice to have a place for users to look into to examine contents
of the host part of SDK.
This also affects uninative-tarball and buildtools-tarball as they
inherit populate_sdk.bbclass. After this change, we could have a manifest file
created in the deploy directory containing a list of packages used to
construct them.
[YOCTO #7604]
(From OE-Core rev: 3069641589942f52b11e88cfea564ebba4beb3c2)
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/populate_sdk_base.bbclass | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/meta/classes/populate_sdk_base.bbclass b/meta/classes/populate_sdk_base.bbclass index 54b9af5bb7..781b279f2c 100644 --- a/meta/classes/populate_sdk_base.bbclass +++ b/meta/classes/populate_sdk_base.bbclass | |||
@@ -56,17 +56,28 @@ SDK_RELOCATE_AFTER_INSTALL ?= "1" | |||
56 | 56 | ||
57 | SDK_TITLE ?= "${@d.getVar('DISTRO_NAME', True) or d.getVar('DISTRO', True)} SDK" | 57 | SDK_TITLE ?= "${@d.getVar('DISTRO_NAME', True) or d.getVar('DISTRO', True)} SDK" |
58 | 58 | ||
59 | SDK_MANIFEST = "${SDK_DEPLOY}/${TOOLCHAIN_OUTPUTNAME}.manifest" | 59 | SDK_TARGET_MANIFEST = "${SDK_DEPLOY}/${TOOLCHAIN_OUTPUTNAME}.target.manifest" |
60 | SDK_HOST_MANIFEST = "${SDK_DEPLOY}/${TOOLCHAIN_OUTPUTNAME}.host.manifest" | ||
60 | python write_target_sdk_manifest () { | 61 | python write_target_sdk_manifest () { |
61 | from oe.sdk import sdk_list_installed_packages | 62 | from oe.sdk import sdk_list_installed_packages |
62 | sdkmanifestdir = os.path.dirname(d.getVar("SDK_MANIFEST", True)) | 63 | sdkmanifestdir = os.path.dirname(d.getVar("SDK_TARGET_MANIFEST", True)) |
63 | if not os.path.exists(sdkmanifestdir): | 64 | if not os.path.exists(sdkmanifestdir): |
64 | bb.utils.mkdirhier(sdkmanifestdir) | 65 | bb.utils.mkdirhier(sdkmanifestdir) |
65 | with open(d.getVar('SDK_MANIFEST', True), 'w') as output: | 66 | with open(d.getVar('SDK_TARGET_MANIFEST', True), 'w') as output: |
66 | output.write(sdk_list_installed_packages(d, True, 'ver')) | 67 | output.write(sdk_list_installed_packages(d, True, 'ver')) |
67 | } | 68 | } |
68 | 69 | ||
70 | python write_host_sdk_manifest () { | ||
71 | from oe.sdk import sdk_list_installed_packages | ||
72 | sdkmanifestdir = os.path.dirname(d.getVar("SDK_HOST_MANIFEST", True)) | ||
73 | if not os.path.exists(sdkmanifestdir): | ||
74 | bb.utils.mkdirhier(sdkmanifestdir) | ||
75 | with open(d.getVar('SDK_HOST_MANIFEST', True), 'w') as output: | ||
76 | output.write(sdk_list_installed_packages(d, False, 'ver')) | ||
77 | } | ||
78 | |||
69 | POPULATE_SDK_POST_TARGET_COMMAND_append = " write_target_sdk_manifest ; " | 79 | POPULATE_SDK_POST_TARGET_COMMAND_append = " write_target_sdk_manifest ; " |
80 | POPULATE_SDK_POST_HOST_COMMAND_append = " write_host_sdk_manifest; " | ||
70 | 81 | ||
71 | fakeroot python do_populate_sdk() { | 82 | fakeroot python do_populate_sdk() { |
72 | from oe.sdk import populate_sdk | 83 | from oe.sdk import populate_sdk |