From 7d25c0b01248fbfbbcdf668cc1c080fe0b54978f Mon Sep 17 00:00:00 2001 From: Emmanuel Vadot Date: Sat, 7 Nov 2020 19:42:31 +0100 Subject: [PATCH 2/2] Add FreeBSD hack that does not disable usb when efi_exit_boot_service is called Content-Type: text/plain; charset=UTF-8 --- common/bootm.c.orig 2020-07-06 19:22:53 UTC +++ common/bootm.c @@ -431,7 +431,12 @@ ulong bootm_disable_interrupts(void) * updated every 1 ms within the HCCA structure in SDRAM! For more * details see the OpenHCI specification. */ + /* + * FreeBSD Hack, on some board this cause efi_exit_bootservice to hang + * for some yet unknown reason. + * This only does this when doing netboot ??? usb_stop(); + */ #endif return iflag; }