From 816fd629ab31700a5c08442b29f6906e95c31df0 Mon Sep 17 00:00:00 2001 From: Christophe Priouzeau Date: Wed, 21 Jul 2021 10:30:28 +0200 Subject: [PATCH] FIT: fit syntax have changed With Yocto 3.1.9, Syntax have changed for fit management, usage of '-' instead of '@' Signed-off-by: Christophe Priouzeau --- classes/extlinuxconf-stm32mp.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/extlinuxconf-stm32mp.bbclass b/classes/extlinuxconf-stm32mp.bbclass index d9ec6df..024bdd4 100644 --- a/classes/extlinuxconf-stm32mp.bbclass +++ b/classes/extlinuxconf-stm32mp.bbclass @@ -143,7 +143,7 @@ def create_extlinux_file(cfile, labels, data): if fit == '1': # Set specific kernel configuration if 'fit' feature is enabled - kernel_image = kernel_image + '#conf@' + label + '.dtb' + kernel_image = kernel_image + '#conf-' + label + '.dtb' cfgfile.write('LABEL %s\n\tKERNEL %s\n' % (menu_description, kernel_image)) elif fdt: cfgfile.write('LABEL %s\n\tKERNEL %s\n\tFDT %s\n' %