diff options
author | Hongxu Jia <hongxu.jia@windriver.com> | 2014-01-27 09:41:31 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-02-11 11:53:42 +0000 |
commit | 1a1ba04df7eed2f12ea65e75f65a7442dddc8103 (patch) | |
tree | ffe43855f59ddce12e3e29878c0b2affdc6b47d1 /meta/classes/image.bbclass | |
parent | f5d35ab6405e556badf54ae6f6c5138245e42ae6 (diff) | |
download | poky-1a1ba04df7eed2f12ea65e75f65a7442dddc8103.tar.gz |
image.bbclass/license.bbclass: ajustment list_installed_packages invoking
Since the list_installed_packages() function has refactored in
python, do the necessary adjustments to license_create_manifes-
t() and write_image_manifest() in license.bbclass and image.bb-
class respectively;
(From OE-Core rev: 4477991633d2971c17afbd0874b1ab2efb7d6eef)
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/image.bbclass')
-rw-r--r-- | meta/classes/image.bbclass | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass index 04eb7f9510..e5ec42ce3d 100644 --- a/meta/classes/image.bbclass +++ b/meta/classes/image.bbclass | |||
@@ -343,8 +343,10 @@ make_zimage_symlink_relative () { | |||
343 | fi | 343 | fi |
344 | } | 344 | } |
345 | 345 | ||
346 | write_image_manifest () { | 346 | python write_image_manifest () { |
347 | list_installed_packages ver | sort > ${IMAGE_MANIFEST} | 347 | from oe.rootfs import list_installed_packages |
348 | with open(d.getVar('IMAGE_MANIFEST', True), 'w+') as image_manifest: | ||
349 | image_manifest.write(list_installed_packages(d, 'ver')) | ||
348 | } | 350 | } |
349 | 351 | ||
350 | # Make login manager(s) enable automatic login. | 352 | # Make login manager(s) enable automatic login. |