Re: [U-Boot] [PATCH 1/1] efi_loader: environment variables for terminal size

2018-09-14 Thread Mark Kettenis
> From: Alexander Graf > Date: Fri, 14 Sep 2018 07:21:56 +0200 > > On 14.09.18 06:41, Heinrich Schuchardt wrote: > > Correct scrolling in EFI applications like the EFI Shell requires correct > > setting of the terminal size. Detecting the terminal size over the serial > > interface is often not s

Re: [U-Boot] [PATCH 1/1] efi_loader: environment variables for terminal size

2018-09-13 Thread Heinrich Schuchardt
On 09/14/2018 07:21 AM, Alexander Graf wrote: > > > On 14.09.18 06:41, Heinrich Schuchardt wrote: >> Correct scrolling in EFI applications like the EFI Shell requires correct >> setting of the terminal size. Detecting the terminal size over the serial >> interface is often not supported. The patc

Re: [U-Boot] [PATCH 1/1] efi_loader: environment variables for terminal size

2018-09-13 Thread Alexander Graf
On 14.09.18 06:41, Heinrich Schuchardt wrote: > Correct scrolling in EFI applications like the EFI Shell requires correct > setting of the terminal size. Detecting the terminal size over the serial > interface is often not supported. The patch introduces the environment Can you give examples on

[U-Boot] [PATCH 1/1] efi_loader: environment variables for terminal size

2018-09-13 Thread Heinrich Schuchardt
Correct scrolling in EFI applications like the EFI Shell requires correct setting of the terminal size. Detecting the terminal size over the serial interface is often not supported. The patch introduces the environment variables LINES and COLUMNS to set the terminal size manually. Signed-off-by: H