diff options
author | Daniel Schultz <d.schultz@phytec.de> | 2024-08-30 02:09:35 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-09-10 13:16:01 -0600 |
commit | 9624465384cfca23d78015f3b423e476f49e02f2 (patch) | |
tree | 222588a79923342bb4b33f981231728980b547c6 | |
parent | 11b8fa00953b678fe68de0297c58de5d048159bc (diff) |
configs: phycore_am62x_a53_defconfig: Make BOOTCMD generic
The phyCORE-AM62x board code sets an environment variable 'boot'
with the device U-Boot booted from. Use this variable in
CONFIG_BOOTCOMMAND to boot Linux from the same boot device by
default.
Signed-off-by: Daniel Schultz <d.schultz@phytec.de>
-rw-r--r-- | configs/phycore_am62x_a53_defconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/phycore_am62x_a53_defconfig b/configs/phycore_am62x_a53_defconfig index 39161b722b1..7bbd8011fa8 100644 --- a/configs/phycore_am62x_a53_defconfig +++ b/configs/phycore_am62x_a53_defconfig @@ -40,7 +40,7 @@ CONFIG_SPL_LOAD_FIT_ADDRESS=0x81000000 CONFIG_BOOTSTD_FULL=y CONFIG_SYS_BOOTM_LEN=0x800000 CONFIG_OF_BOARD_SETUP=y -CONFIG_BOOTCOMMAND="run mmcboot; bootflow scan -lb" +CONFIG_BOOTCOMMAND="run ${boot}boot; bootflow scan -lb" CONFIG_DEFAULT_FDT_FILE="oftree" CONFIG_BOARD_LATE_INIT=y CONFIG_SPL_MAX_SIZE=0x58000 |