* [PATCH] image: Ensure manifests end with a newline
@ 2015-03-24 10:57 Richard Purdie
0 siblings, 0 replies; only message in thread
From: Richard Purdie @ 2015-03-24 10:57 UTC (permalink / raw)
To: openembedded-core
Manifests should end with a newline character but don't currently. This
is the easiest fix for now, the alternative would be a rewrite of the
internal code which is something to consider in due course.
[YOCTO #7427]
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass
index 89eb5f3..cd17837 100644
--- a/meta/classes/image.bbclass
+++ b/meta/classes/image.bbclass
@@ -396,6 +396,7 @@ python write_image_manifest () {
from oe.rootfs import image_list_installed_packages
with open(d.getVar('IMAGE_MANIFEST', True), 'w+') as image_manifest:
image_manifest.write(image_list_installed_packages(d, 'ver'))
+ image_manifest.write("\n")
}
# Can be use to create /etc/timestamp during image construction to give a reasonably
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2015-03-24 10:57 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-24 10:57 [PATCH] image: Ensure manifests end with a newline Richard Purdie
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.