From 59b034fa8f016fd7468dde6a9183e02ec2668eb1 Mon Sep 17 00:00:00 2001 From: Tom Rini Date: Tue, 18 Nov 2025 12:04:27 -0600 Subject: [PATCH] novena: 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 Acked-by: Marek Vasut --- include/configs/novena.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/configs/novena.h b/include/configs/novena.h index 059b8104e4b..12fb759afe2 100644 --- a/include/configs/novena.h +++ b/include/configs/novena.h @@ -53,7 +53,6 @@ /* Extra U-Boot environment. */ #define CFG_EXTRA_ENV_SETTINGS \ - "fdt_high=0xffffffff\0" \ "initrd_high=0xffffffff\0" \ "consdev=ttymxc1\0" \ "baudrate=115200\0" \ -- 2.47.3