CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2020/05/18 06:14:33
Modified files:
sys/arch/arm64/stand/efiboot: conf.c efipxe.c
sys/arch/armv7/stand/efiboot: conf.c efipxe.c
Log message:
Our check to see if the EFI services support Mtftp() doesn't work
on U-Boot anymore, since we checked if the method is provided, but
now U-Boot provides a simple stub that only returns EFI_UNSUPPORTED.
A proper UEFI would throw EFI_INVALID_PARAMETER if we pass NULL
as first parameter, but U-Boot doesn't. This way we can see if
the method is actually provided and not just a stub.
ok kettenis@