Taken in, Alex
On Tue, Mar 18, 2014 at 4:27 PM, Cristiana Voicu <[email protected]>wrote: > File_name information of Target_image_file is being collected for a > .rootfs.manifest file. We would like not to collect this. The solution is > to cross check the information gathered for file_name with the content > of the IMAGE_FSTYPES variable. If any of the file_name entries does not > match the content of IMAGE_FSTYPES, we do not store it. > > [YOCTO #5189] > Signed-off-by: Cristiana Voicu <[email protected]> > --- > bitbake/lib/bb/ui/buildinfohelper.py | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/bitbake/lib/bb/ui/buildinfohelper.py > b/bitbake/lib/bb/ui/buildinfohelper.py > index 15bc069..527d2d9 100644 > --- a/bitbake/lib/bb/ui/buildinfohelper.py > +++ b/bitbake/lib/bb/ui/buildinfohelper.py > @@ -615,11 +615,12 @@ class BuildInfoHelper(object): > self.orm_wrapper.save_build_variables(build_obj, > self.server.runCommand(["getAllKeysWithFlags", ["doc", "func"]])[0]) > > def update_target_image_file(self, event): > + image_fstypes = self.server.runCommand(["getVariable", > "IMAGE_FSTYPES"])[0] > for t in self.internal_state['targets']: > if t.is_image == True: > output_files = list(event.data.viewkeys()) > for output in output_files: > - if t.target in output: > + if t.target in output and output.split('.rootfs.')[1] > in image_fstypes: > > self.orm_wrapper.save_target_image_file_information(t, output, > event.data[output]) > > def update_build_information(self, event, errors, warnings, > taskfailures): > -- > 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
