Re: [PATCH v2] efi_loader: Use sysreset instead of reset command

2022-03-21 Thread Masami Hiramatsu
Hi Heinrich, Thanks for finding the issues. 2022年3月19日(土) 18:02 Heinrich Schuchardt : > > On 3/16/22 20:23, Simon Glass wrote: > > On Wed, 16 Mar 2022 at 06:35, Heinrich Schuchardt > > wrote: > >> > >> On 3/16/22 09:03, Masami Hiramatsu wrote: > >>> Use sysreset_walk_halt() directly from reset-

Re: [PATCH v2] efi_loader: Use sysreset instead of reset command

2022-03-19 Thread Heinrich Schuchardt
On 3/16/22 20:23, Simon Glass wrote: On Wed, 16 Mar 2022 at 06:35, Heinrich Schuchardt wrote: On 3/16/22 09:03, Masami Hiramatsu wrote: Use sysreset_walk_halt() directly from reset-after-capsule-on-disk feature to reboot (cold reset) machine instead of using reset command interface, since thi

Re: [PATCH v2] efi_loader: Use sysreset instead of reset command

2022-03-16 Thread Simon Glass
On Wed, 16 Mar 2022 at 06:35, Heinrich Schuchardt wrote: > > On 3/16/22 09:03, Masami Hiramatsu wrote: > > Use sysreset_walk_halt() directly from reset-after-capsule-on-disk > > feature to reboot (cold reset) machine instead of using reset command > > interface, since this is not a command. > > No

Re: [PATCH v2] efi_loader: Use sysreset instead of reset command

2022-03-16 Thread Heinrich Schuchardt
On 3/16/22 09:03, Masami Hiramatsu wrote: Use sysreset_walk_halt() directly from reset-after-capsule-on-disk feature to reboot (cold reset) machine instead of using reset command interface, since this is not a command. Note that this will make CONFIG_EFI_CAPSULE_ON_DISK depending on the CONFIG_SY

[PATCH v2] efi_loader: Use sysreset instead of reset command

2022-03-16 Thread Masami Hiramatsu
Use sysreset_walk_halt() directly from reset-after-capsule-on-disk feature to reboot (cold reset) machine instead of using reset command interface, since this is not a command. Note that this will make CONFIG_EFI_CAPSULE_ON_DISK depending on the CONFIG_SYSRESET. Signed-off-by: Masami Hiramatsu --