Re: [PATCH] bootmenu: fix bootmenu title handling

2022-05-25 Thread Masahisa Kojima
Hi Pali, On Wed, 25 May 2022 at 04:36, Pali Rohar wrote: > > On Tuesday 24 May 2022 09:43:56 Pali Rohár wrote: > > On Tuesday 24 May 2022 12:45:30 Masahisa Kojima wrote: > > > The commit a3d0aa87acbe ("bootmenu: update bootmenu_entry structure") > > > changes the bootmenu title type from char to

Re: [PATCH] bootmenu: fix bootmenu title handling

2022-05-24 Thread Pali Rohar
On Tuesday 24 May 2022 09:43:56 Pali Rohár wrote: > On Tuesday 24 May 2022 12:45:30 Masahisa Kojima wrote: > > The commit a3d0aa87acbe ("bootmenu: update bootmenu_entry structure") > > changes the bootmenu title type from char to u16(UTF16 string) > > to support EFI based system. If EFI_LOADER is

Re: [PATCH] bootmenu: fix bootmenu title handling

2022-05-24 Thread Pali Rohar
On Tuesday 24 May 2022 12:45:30 Masahisa Kojima wrote: > The commit a3d0aa87acbe ("bootmenu: update bootmenu_entry structure") > changes the bootmenu title type from char to u16(UTF16 string) > to support EFI based system. If EFI_LOADER is not enabled, > printf("%ls") is not supported, so bootmenu

[PATCH] bootmenu: fix bootmenu title handling

2022-05-23 Thread Masahisa Kojima
The commit a3d0aa87acbe ("bootmenu: update bootmenu_entry structure") changes the bootmenu title type from char to u16(UTF16 string) to support EFI based system. If EFI_LOADER is not enabled, printf("%ls") is not supported, so bootmenu does not appear correctly. This commit switches the menu