Taken, Thank you, Alex
On Wed, Apr 2, 2014 at 2:11 PM, Cristiana Voicu <[email protected]>wrote: > Relaced the key with the join between path and file name. > > [YOCTO #6090] > Signed-off-by: Cristiana Voicu <[email protected]> > --- > meta/classes/toaster.bbclass | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/meta/classes/toaster.bbclass b/meta/classes/toaster.bbclass > index 9fb2cec..d2fa82d 100644 > --- a/meta/classes/toaster.bbclass > +++ b/meta/classes/toaster.bbclass > @@ -153,7 +153,8 @@ python toaster_image_dumpdata() { > for dirpath, dirnames, filenames in os.walk(deploy_dir_image): > for fn in filenames: > if fn.startswith(image_name): > - image_info_data[dirpath + fn] = > os.stat(os.path.join(dirpath, fn)).st_size > + image_output = os.path.join(dirpath, fn) > + image_info_data[image_output] = > os.stat(image_output).st_size > > > bb.event.fire(bb.event.MetadataEvent("ImageFileSize",image_info_data), d) > } > -- > 1.7.9.5 > > -- > _______________________________________________ > toaster mailing list > [email protected] > https://lists.yoctoproject.org/listinfo/toaster > -- Alex Damian Yocto Project SSG / OTC
-- _______________________________________________ toaster mailing list [email protected] https://lists.yoctoproject.org/listinfo/toaster
