From: Kah Jing Lee <[email protected]> Fix qspiboot issue which uncompressed kernel(5.16) overflows to rootfs Add 2 env. variables to support compressed kernel in legacy qspiboot: setenv kernel_comp_addr_r 0x9000000 setenv kernel_comp_size 0x01000000
Signed-off-by: Kah Jing Lee <[email protected]> Signed-off-by: Jit Loon Lim <[email protected]> --- include/configs/socfpga_soc64_common.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/configs/socfpga_soc64_common.h b/include/configs/socfpga_soc64_common.h index f7f3bc1f13..7fe9dced88 100644 --- a/include/configs/socfpga_soc64_common.h +++ b/include/configs/socfpga_soc64_common.h @@ -133,6 +133,8 @@ #else #define CONFIG_EXTRA_ENV_SETTINGS \ + "kernel_comp_addr_r=0x9000000\0" \ + "kernel_comp_size=0x01000000\0" \ "qspibootimageaddr=0x020E0000\0" \ "qspifdtaddr=0x020D0000\0" \ "bootimagesize=0x01F00000\0" \ -- 2.26.2

