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 <christophe.priouzeau@foss.st.com>
This commit is contained in:
parent
4bf96d789e
commit
816fd629ab
|
|
@ -143,7 +143,7 @@ def create_extlinux_file(cfile, labels, data):
|
||||||
|
|
||||||
if fit == '1':
|
if fit == '1':
|
||||||
# Set specific kernel configuration if 'fit' feature is enabled
|
# 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))
|
cfgfile.write('LABEL %s\n\tKERNEL %s\n' % (menu_description, kernel_image))
|
||||||
elif fdt:
|
elif fdt:
|
||||||
cfgfile.write('LABEL %s\n\tKERNEL %s\n\tFDT %s\n' %
|
cfgfile.write('LABEL %s\n\tKERNEL %s\n\tFDT %s\n' %
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue