MA-12250 [iot] Fix build error for imx8m
Enable CONFIG_SPL_ENV_SUPPORT to fix build errors like below: common/built-in.o:(.data.env_htab+0xc): undefined reference to 'env_flags_validate' lib/built-in.o: In function `hsearch_r': lib/hashtable.c:380: undefined reference to 'env_callback_init' lib/hashtable.c:382: undefined reference to 'env_flags_init' Change-Id: Ife7dc129ac2a4dd0ee2f18ee41a5128d868ea031 Signed-off-by: Ji Luo <ji.luo@nxp.com>
This commit is contained in:
parent
c21f676447
commit
06e6b708df
|
|
@ -53,6 +53,8 @@ CONFIG_USB_FUNCTION_FASTBOOT=y
|
|||
CONFIG_FSL_FASTBOOT=y
|
||||
CONFIG_BCB_SUPPORT=y
|
||||
CONFIG_FASTBOOT_FLASH_MMC_DEV=0
|
||||
CONFIG_SPL_ENV_SUPPORT=y
|
||||
CONFIG_CMD_FASTBOOT=y
|
||||
CONFIG_ANDROID_BOOT_IMAGE=y
|
||||
CONFIG_EFI_PARTITION=y
|
||||
CONFIG_SDP_LOADADDR=0x40400000
|
||||
|
|
|
|||
|
|
@ -42,6 +42,7 @@ CONFIG_DM_THERMAL=y
|
|||
CONFIG_FIT=y
|
||||
CONFIG_SPL_FIT=y
|
||||
CONFIG_SPL_LOAD_FIT=y
|
||||
CONFIG_SPL_ENV_SUPPORT=y
|
||||
CONFIG_SPL_MMC_SUPPORT=y
|
||||
CONFIG_SPL_MMC_WRITE=y
|
||||
CONFIG_USB=y
|
||||
|
|
|
|||
|
|
@ -62,6 +62,9 @@
|
|||
#ifdef CONFIG_SPL_BUILD
|
||||
|
||||
#define CONFIG_SPL_SHA256
|
||||
#undef CONFIG_ENV_IS_IN_MMC
|
||||
#undef CONFIG_BLK
|
||||
#define CONFIG_ENV_IS_NOWHERE
|
||||
|
||||
#define AVB_RPMB
|
||||
#ifdef AVB_RPMB
|
||||
|
|
|
|||
Loading…
Reference in New Issue