Re: [PATCH 1/1] efi_loader: provide initrddump test tool

2021-01-19 Thread Ilias Apalodimas
> >> + } [...] > >> + > >> + cout->set_attribute(cout, EFI_LIGHTGRAY | EFI_BACKGROUND_BLACK); > >> + cout->clear_screen(cout); > >> + return EFI_SUCCESS; > >> +} > >> -- > >> 2.29.2 > >> > > > > > > I guess we can use this in the selftests for initrd loading in the future > > right? > > This se

Re: [PATCH 1/1] efi_loader: provide initrddump test tool

2021-01-19 Thread Heinrich Schuchardt
On 19.01.21 09:14, Ilias Apalodimas wrote: > Hi Heinrich, > > On Sun, Jan 17, 2021 at 07:48:18AM +0100, Heinrich Schuchardt wrote: >> Provide an UEFI application to save the initial RAM disk provided by U-Boot >> via the Load File2 protocol. >> >> Signed-off-by: Heinrich Schuchardt >> --- >> lib/

Re: [PATCH 1/1] efi_loader: provide initrddump test tool

2021-01-19 Thread Ilias Apalodimas
Hi Heinrich, On Sun, Jan 17, 2021 at 07:48:18AM +0100, Heinrich Schuchardt wrote: > Provide an UEFI application to save the initial RAM disk provided by U-Boot > via the Load File2 protocol. > > Signed-off-by: Heinrich Schuchardt > --- > lib/efi_selftest/Makefile | 6 + > lib/efi_selftes

Re: [PATCH 1/1] efi_loader: provide initrddump test tool

2021-01-17 Thread AKASHI Takahiro
Heinrich, On Sun, Jan 17, 2021 at 07:48:18AM +0100, Heinrich Schuchardt wrote: > Provide an UEFI application to save the initial RAM disk provided by U-Boot > via the Load File2 protocol. I don't have any specific comments on this "app," but as the size of efi selftest grows and even more app's a

[PATCH 1/1] efi_loader: provide initrddump test tool

2021-01-16 Thread Heinrich Schuchardt
Provide an UEFI application to save the initial RAM disk provided by U-Boot via the Load File2 protocol. Signed-off-by: Heinrich Schuchardt --- lib/efi_selftest/Makefile | 6 + lib/efi_selftest/initrddump.c | 378 ++ 2 files changed, 384 insertions(+) creat