From 6c89654cf37da95aeea07e1645f2cdffe320c8bc Mon Sep 17 00:00:00 2001 From: Daniel Semkowicz Date: Mon, 2 Oct 2023 15:36:14 +0200 Subject: [PATCH] uboot-extlinux-config.bbclass: Uppercase "menu title" entry All other extlinux.conf entries are written to the output file in uppercase. Signed-off-by: Daniel Semkowicz Signed-off-by: Alexandre Belloni Signed-off-by: Richard Purdie --- meta/classes-recipe/uboot-extlinux-config.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes-recipe/uboot-extlinux-config.bbclass b/meta/classes-recipe/uboot-extlinux-config.bbclass index f99100708dc..a7f325ff2d8 100644 --- a/meta/classes-recipe/uboot-extlinux-config.bbclass +++ b/meta/classes-recipe/uboot-extlinux-config.bbclass @@ -96,7 +96,7 @@ python do_create_extlinux_config() { cfgfile.write('# Generic Distro Configuration file generated by OpenEmbedded\n') if len(labels.split()) > 1: - cfgfile.write('menu title Select the boot mode\n') + cfgfile.write('MENU TITLE Select the boot mode\n') timeout = localdata.getVar('UBOOT_EXTLINUX_TIMEOUT') if timeout: -- 2.47.2