From: Francesco Dolcini Date: Tue, 2 Jan 2024 12:12:07 +0000 (+0100) Subject: verdin-imx8mm: Remove stale fdt_addr env variable X-Git-Url: http://git.dujemihanovic.xyz/login.html?a=commitdiff_plain;h=59a72caba907e55edf7458f83ea8f1f60dc12b6e;p=u-boot.git verdin-imx8mm: Remove stale fdt_addr env variable fdt_addr variable is the location in flash of the device tree blob [1], it does not exist for verdin-imx8mm. Because of this the bootefi command fails unless the optional `[fdt address]` parameter is passed on the command line, bootefi.c:efi_install_fdt() assumes that `fdt_addr` is valid when present. Fix this removing fdt_addr from the U-Boot environment. [1] doc/usage/environment.rst Signed-off-by: Francesco Dolcini Reviewed-by: Fabio Estevam --- diff --git a/include/configs/verdin-imx8mm.h b/include/configs/verdin-imx8mm.h index 8072d5d503..a7ea02807d 100644 --- a/include/configs/verdin-imx8mm.h +++ b/include/configs/verdin-imx8mm.h @@ -40,7 +40,6 @@ "boot_file=Image\0" \ "boot_script_dhcp=boot.scr\0" \ "console=ttymxc0\0" \ - "fdt_addr=0x43000000\0" \ "fdt_board=dev\0" \ "initrd_addr=0x43800000\0" \ "initrd_high=0xffffffffffffffff\0" \