diff options
author | Laurentiu Palcu <laurentiu.palcu@intel.com> | 2014-03-18 11:17:09 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-03-21 12:05:53 +0000 |
commit | 0ec27e63a358013d52b5015b5386ef738271460e (patch) | |
tree | 3e5a4c6e7ce849ba90a14ee53cb484c3213495c9 /meta/classes/image.bbclass | |
parent | 483d5a4f3101e51ae495f8473b494a94cefa1a0f (diff) | |
download | poky-0ec27e63a358013d52b5015b5386ef738271460e.tar.gz |
image.bbclass, license.bbclass: adjust the name of list_installed_packages()
The old wrapper got renamed to image_list_installed_packages().
(From OE-Core rev: 118a2a44bbe5ed2e9bbd0012970686be454e5d4c)
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 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass index 51d16d7d55..9a04288ba6 100644 --- a/meta/classes/image.bbclass +++ b/meta/classes/image.bbclass | |||
@@ -330,9 +330,9 @@ make_zimage_symlink_relative () { | |||
330 | } | 330 | } |
331 | 331 | ||
332 | python write_image_manifest () { | 332 | python write_image_manifest () { |
333 | from oe.rootfs import list_installed_packages | 333 | from oe.rootfs import image_list_installed_packages |
334 | with open(d.getVar('IMAGE_MANIFEST', True), 'w+') as image_manifest: | 334 | with open(d.getVar('IMAGE_MANIFEST', True), 'w+') as image_manifest: |
335 | image_manifest.write(list_installed_packages(d, 'ver')) | 335 | image_manifest.write(image_list_installed_packages(d, 'ver')) |
336 | } | 336 | } |
337 | 337 | ||
338 | # Make login manager(s) enable automatic login. | 338 | # Make login manager(s) enable automatic login. |