diff options
author | Francesco Dolcini | 2024-01-02 13:12:07 +0100 |
---|---|---|
committer | Fabio Estevam | 2024-01-08 14:34:34 -0300 |
commit | 59a72caba907e55edf7458f83ea8f1f60dc12b6e (patch) | |
tree | 70cb3bcca564380c9c3a9d649208d7437c798a47 /include/configs/verdin-imx8mm.h | |
parent | 32a41b7c378315088ebc7392c91121261b84bad9 (diff) |
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 <francesco.dolcini@toradex.com>
Reviewed-by: Fabio Estevam <festevam@gmail.com>
Diffstat (limited to 'include/configs/verdin-imx8mm.h')
-rw-r--r-- | include/configs/verdin-imx8mm.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/configs/verdin-imx8mm.h b/include/configs/verdin-imx8mm.h index 8072d5d503f..a7ea02807dd 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" \ |