Message ID | 20250615191601.1261775-1-adrian.freihofer@siemens.com |
---|---|
State | Accepted, archived |
Commit | 518df809354a745deebe3c85b1390557398c8893 |
Headers | show |
Series | oe-selftest: fitimage: fix new parser compatibility | expand |
Hi Adrian, On 6/15/25 9:16 PM, Adrian Freihofer via lists.openembedded.org wrote: > From: Adrian Freihofer <adrian.freihofer@siemens.com> > > Recent parser changes throw a warning if there is no space around the > = operator. > > Signed-off-by: Adrian Freihofer <adrian.freihofer@siemens.com> Reviewed-by: Quentin Schulz <quentin.schulz@cherry.de> Thanks! Quentin
diff --git a/meta/lib/oeqa/selftest/cases/fitimage.py b/meta/lib/oeqa/selftest/cases/fitimage.py index 265cfed39fe..ca4724d1ae8 100644 --- a/meta/lib/oeqa/selftest/cases/fitimage.py +++ b/meta/lib/oeqa/selftest/cases/fitimage.py @@ -786,7 +786,7 @@ FIT_CONF_PREFIX = "foo-" EXPECTED_COMP = ["ti,am335x-bone-green", "ti,am335x-bone-black", "ti,am335x-bone", "ti,am33xx"] config = """ -DISTRO="poky" +DISTRO = "poky" MACHINE = "beaglebone-yocto" """ self.write_config(config) @@ -938,7 +938,7 @@ UBOOT_MKIMAGE_SIGN_ARGS = "-c 'a smart comment'" """ config = """ -DISTRO="poky" +DISTRO = "poky" MACHINE = "beaglebone-yocto" INITRAMFS_IMAGE = "core-image-minimal-initramfs" INITRAMFS_SCRIPTS = "" @@ -992,7 +992,7 @@ FIT_HASH_ALG = "sha256" """ config = """ -DISTRO="poky" +DISTRO = "poky" MACHINE = "beaglebone-yocto" INITRAMFS_IMAGE_BUNDLE = "1" INITRAMFS_IMAGE = "core-image-minimal-initramfs"