From 87a7ef0aca84aeb3c975aa2bf71e2138a423963b Mon Sep 17 00:00:00 2001 From: Jaehoon Chung Date: Fri, 2 Jun 2023 13:06:26 +0900 Subject: [PATCH] include: starfive-vifionfive: fix the prefix from CFG to CONFIG This is caused by backporting. Latest U-boot is uinsg CFG_EXTRA_ENV_SETTINGS, but v2022.10 is using CONFIG_EXTRA_ENV_SETTINGS. Change-Id: Ia42e9c9402cc1eedd4467cc20069e9a64d90e474 Signed-off-by: Jaehoon Chung --- include/configs/starfive-visionfive2.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/configs/starfive-visionfive2.h b/include/configs/starfive-visionfive2.h index 93dcc22d36..610399ee3e 100644 --- a/include/configs/starfive-visionfive2.h +++ b/include/configs/starfive-visionfive2.h @@ -31,7 +31,7 @@ "name=uboot,size=4MB,type=${type_guid_gpt_loader2};" \ "name=system,size=-,bootable,type=${type_guid_gpt_system};" -#define CFG_EXTRA_ENV_SETTINGS \ +#define CONFIG_EXTRA_ENV_SETTINGS \ "kernel_addr_r=0x40200000\0" \ "kernel_comp_addr_r=0x88000000\0" \ "kernel_comp_size=0x4000000\0" \ -- 2.34.1