diff options
author | Patrice Chotard <patrice.chotard@foss.st.com> | 2025-04-25 10:21:34 +0200 |
---|---|---|
committer | Patrice Chotard <patrice.chotard@foss.st.com> | 2025-04-25 16:00:23 +0200 |
commit | 9d679cc4adbf2fdf077411bb4e2cb5ef4c1fd8b8 (patch) | |
tree | 515b472d1e4ce23e17084813e6730c3034a8c94f | |
parent | f54300f0bfe255d7ce1d7b2c54f8873aeb68c739 (diff) |
configs: stm32mp25: enable DISTRO_DEFAULT and BOOTCOMMAND
Enable DISTRO_DEFAULT and BOOTCOMMAND flags for stm32mp25
Signed-off-by: Patrice Chotard <patrice.chotard@foss.st.com>
Cover-letter:
arm: stm32mp: STM32MP25 machine update
This series is updating STM32MP25 machine/board support:
_ update cmd_stm32key.
_ update cmd_stm32prog.
_ update STM32MP25 configs.
_ add leds and buttons support.
_ add boot_mode support (USB/PXE/MMC/NOR/NAND).
_ add bootcmd support.
_ enable MMC support.
Currently, it misses clock,reset and regulator support for STM32MP25
which will be added in a next step due to dependencies with OP-TEE.
For example, due to OP-TEE dependencies, all MMC support is ready
but not functional.
END
Series-version: 2
Series-changes: 2
- Enable DISTRO_DEFAULT and BOOTCOMMAND flags
-rw-r--r-- | configs/stm32mp25_defconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configs/stm32mp25_defconfig b/configs/stm32mp25_defconfig index 0e515e4af65..317a6d5ecd6 100644 --- a/configs/stm32mp25_defconfig +++ b/configs/stm32mp25_defconfig @@ -16,7 +16,9 @@ CONFIG_SYS_MEMTEST_END=0x88000000 CONFIG_API=y CONFIG_SYS_MMC_MAX_DEVICE=3 CONFIG_FIT=y +CONFIG_DISTRO_DEFAULTS=y CONFIG_BOOTDELAY=1 +CONFIG_BOOTCOMMAND="run bootcmd_stm32mp" CONFIG_SYS_PROMPT="STM32MP> " # CONFIG_CMD_BDI is not set CONFIG_CMD_BOOTZ=y |