From: Tom Rini Date: Wed, 19 Nov 2025 14:50:32 +0000 (-0600) Subject: liteboard: Stop disabling device tree relocation X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8d083351e91289f0e675cfb77592a784ff1a3bd0;p=thirdparty%2Fu-boot.git liteboard: Stop disabling device tree relocation Remove setting of fdt_high to ~0, which disables device tree relocation, from the default environment. Doing so prevents U-Boot from correcting problems such as having an unaligned device tree and leads to various failure modes in the OS. Signed-off-by: Tom Rini --- diff --git a/include/configs/liteboard.h b/include/configs/liteboard.h index 2934c76a662..a90d02c049f 100644 --- a/include/configs/liteboard.h +++ b/include/configs/liteboard.h @@ -24,7 +24,6 @@ "script=boot.scr\0" \ "image=zImage\0" \ "console=ttymxc0\0" \ - "fdt_high=0xffffffff\0" \ "initrd_high=0xffffffff\0" \ "fdt_file=" CONFIG_DEFAULT_FDT_FILE "\0" \ "fdt_addr=0x83000000\0" \