Re: [PATCH 2/2 v2] efi_loader: Disable devices before handing over control

2020-10-22 Thread Heinrich Schuchardt
On 10/22/20 12:04 AM, Ilias Apalodimas wrote: > U-Boot Driver Model is supposed to remove devices with either > DM_REMOVE_ACTIVE_DMA or DM_REMOVE_OS_PREPARE flags set, before exiting. > Our bootm command does that by explicitly calling calling > "dm_remove_devices_flags(DM_REMOVE_ACTIVE_ALL);" and

Re: [PATCH 2/2 v2] efi_loader: Disable devices before handing over control

2020-10-21 Thread Ilias Apalodimas
+cc Mark On Thu, 22 Oct 2020 at 01:04, Ilias Apalodimas wrote: > > U-Boot Driver Model is supposed to remove devices with either > DM_REMOVE_ACTIVE_DMA or DM_REMOVE_OS_PREPARE flags set, before exiting. > Our bootm command does that by explicitly calling calling >

[PATCH 2/2 v2] efi_loader: Disable devices before handing over control

2020-10-21 Thread Ilias Apalodimas
U-Boot Driver Model is supposed to remove devices with either DM_REMOVE_ACTIVE_DMA or DM_REMOVE_OS_PREPARE flags set, before exiting. Our bootm command does that by explicitly calling calling "dm_remove_devices_flags(DM_REMOVE_ACTIVE_ALL);" and we also disable any USB devices. The EFI equivalent