Re: [BUG] usage of $kernel_addr_r in distro_efi_boot()

2023-11-15 Thread Simon Glass
Hi Heinrich, On Wed, 15 Nov 2023 at 18:07, Heinrich Schuchardt wrote: > > If $kernel_addr_r cannot be read, distro_efi_boot() falls back to > address 0. This will lead to a segmentation fault on many systems. > > distro_efi_read_bootflow_net() has a fallback to CONFIG_SYS_LOAD_ADDR > and may

[BUG] usage of $kernel_addr_r in distro_efi_boot()

2023-11-15 Thread Heinrich Schuchardt
If $kernel_addr_r cannot be read, distro_efi_boot() falls back to address 0. This will lead to a segmentation fault on many systems. distro_efi_read_bootflow_net() has a fallback to CONFIG_SYS_LOAD_ADDR and may have loaded to that address. Shouldn't we be consistent in what we program? Please,