On Tue, May 30, 2017 at 02:31:48PM +0200, YASUOKA Masahiko wrote:
> +     status = EFI_CALL(BS->LocateHandle, ByProtocol, &serio_guid, 0, &sz, 0);
> +     if (status == EFI_BUFFER_TOO_SMALL) {
> +             handles = alloc(sz);
> +             status = EFI_CALL(BS->LocateHandle, ByProtocol, &serio_guid,
> +                 0, &sz, handles);
> +     }
> +     if (handles == NULL || EFI_ERROR(status))
> +             panic("could not get handles of serial i/o");

Hi,

On my thinkpad helix 2 the boot loader now keeps rebooting with
the above panic message before I can even type anything.

Could this panic be changed into a non-fatal error?

Thanks!

Reply via email to