[OE-core] [PATCH] meta/classes/testimage.bbclass: Only validate IMAGE_FSTYPES when is QEMU

Burton, Ross ross.burton at intel.com
Thu Nov 15 13:07:51 UTC 2018


On Tue, 23 Oct 2018 at 01:38, Anibal Limon <anibal.limon at linaro.org> wrote:
>> > -    fstypes = [fs for fs in d.getVar('IMAGE_FSTYPES').split(' ')

>> > +    fstypes = d.getVar('IMAGE_FSTYPES')
>> > +        fstypes = [fs for fs in fstypes if fs in supported_fstypes]

That's the problem, the old code takes IMAGE_FSTYPES and splits it on
whitespace, the new code iterates over each *character*

Ross


More information about the Openembedded-core mailing list