Re: [U-Boot] [PATCH v2 2/2] efi_loader: Fix possible starving in efi_cin_read_key

2019-03-05 Thread Heinrich Schuchardt
On 3/5/19 12:50 PM, matthias@kernel.org wrote: > From: Matthias Brugger > > The function efi_cin_read_key can be affected by a loss of > a character which will make u-boot to wait forever. > Fix this by calling term_get_char instead. > > Signed-off-by: Matthias Brugger You can test EFI

[U-Boot] [PATCH v2 2/2] efi_loader: Fix possible starving in efi_cin_read_key

2019-03-05 Thread matthias . bgg
From: Matthias Brugger The function efi_cin_read_key can be affected by a loss of a character which will make u-boot to wait forever. Fix this by calling term_get_char instead. Signed-off-by: Matthias Brugger --- Changes in v2: None lib/efi_loader/efi_console.c | 18 -- 1