Re: [PATCH] boot: call dhcp_run in pxe bootmethod

2025-04-06 Thread Tom Rini
On Wed, 02 Apr 2025 23:50:25 +0200, Heiko Stuebner wrote: > A recent change tried to speed up EFI booting by not calling dhcp_run > from eth_bootdev_hunt() every time. PXE so far relied on that dhcp_run > call to get an IP address. > > Fix that by adding a dhcp_run call to the pxe bootflow, with

[PATCH] boot: call dhcp_run in pxe bootmethod

2025-04-05 Thread Heiko Stuebner
A recent change tried to speed up EFI booting by not calling dhcp_run from eth_bootdev_hunt() every time. PXE so far relied on that dhcp_run call to get an IP address. Fix that by adding a dhcp_run call to the pxe bootflow, with autoload disabled to only get the ip address and nothing else. Sugge