summaryrefslogtreecommitdiff
path: root/board/st/stm32mp1/stm32mp1.c
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2025-09-30 10:47:19 -0600
committerTom Rini <trini@konsulko.com>2025-09-30 10:47:19 -0600
commit5b93c3ec7f9d66dc40d062a47a4a880f7d346b7a (patch)
treef10ba825a869213ac23bb65cda4cbaffa12e7ee2 /board/st/stm32mp1/stm32mp1.c
parent8dee93cfc50992990ea6f1871b128d464929e1f5 (diff)
parent8a2e75e6a1ca51bbd81eef36ffb26737adec316f (diff)
Merge tag 'u-boot-stm32-20250930' of https://source.denx.de/u-boot/custodians/u-boot-stmHEADmaster
CI: https://source.denx.de/u-boot/custodians/u-boot-stm/-/pipelines/27776 - stm32mp1: Fix env_get_location() - stm32mp2: Update register used by BL31 for boot parameter
Diffstat (limited to 'board/st/stm32mp1/stm32mp1.c')
-rw-r--r--board/st/stm32mp1/stm32mp1.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/board/st/stm32mp1/stm32mp1.c b/board/st/stm32mp1/stm32mp1.c
index ab7af69d472..cb5cab9f36a 100644
--- a/board/st/stm32mp1/stm32mp1.c
+++ b/board/st/stm32mp1/stm32mp1.c
@@ -751,6 +751,8 @@ enum env_location env_get_location(enum env_operation op, int prio)
case BOOT_FLASH_EMMC:
if (CONFIG_IS_ENABLED(ENV_IS_IN_MMC))
return ENVL_MMC;
+ else if (CONFIG_IS_ENABLED(ENV_IS_IN_EXT4))
+ return ENVL_EXT4;
else
return ENVL_NOWHERE;