From ea83dca5214ed3e08098602d517c9c23ca13beb7 Mon Sep 17 00:00:00 2001 From: Jaehoon Chung Date: Tue, 5 Nov 2024 18:50:54 +0900 Subject: [PATCH] board: rpi: tizen_rpi: Change from CONFIG_ARM64 to CONFIG_PHYS_64BIT initrd_high is dependent with CONFIG_PHYS_64BIT configuration. Even though CONFIG_ARM64 is not enabled, CONFIG_PHYS_64BIT can be enabled. Change-Id: I4a6be68f5e0b4a9fb7b98e8adc469a08d6dea998 Signed-off-by: Jaehoon Chung --- board/raspberrypi/rpi/tizen_rpi.env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board/raspberrypi/rpi/tizen_rpi.env b/board/raspberrypi/rpi/tizen_rpi.env index cea5a13599..9f8a7076be 100644 --- a/board/raspberrypi/rpi/tizen_rpi.env +++ b/board/raspberrypi/rpi/tizen_rpi.env @@ -47,7 +47,7 @@ stderr=serial * only 64M, the remaining 25M starting at 0x02700000 should allow quite * large initrds before they start colliding with U-Boot. */ -#ifdef CONFIG_ARM64 +#ifdef CONFIG_PHYS_64BIT fdt_high=ffffffffffffffff initrd_high=ffffffffffffffff #else -- 2.34.1