diff options
| author | Daniel Schultz <[email protected]> | 2024-08-30 02:09:39 -0700 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-09-10 13:16:02 -0600 |
| commit | 1bd194f1ffc3df7e3bf3e937c666305a8b0acad4 (patch) | |
| tree | 9c71c4eadf102ac20b3a124f8a408c60133dcfbb | |
| parent | 4d197fab9b82ad50383f50b0316137590b80f040 (diff) | |
configs: phycore_am62x_a53_defconfig: Fix CONFIG_ENV_SIZE
The environment should have a size of 0x20000 instead 0x2000.
Update to have the same environment size for all PHYTEC K3 products.
Signed-off-by: Daniel Schultz <[email protected]>
| -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 07a1fff1f3d..246b8743da0 100644 --- a/configs/phycore_am62x_a53_defconfig +++ b/configs/phycore_am62x_a53_defconfig @@ -12,7 +12,7 @@ CONFIG_TARGET_PHYCORE_AM62X_A53=y CONFIG_HAS_CUSTOM_SYS_INIT_SP_ADDR=y CONFIG_CUSTOM_SYS_INIT_SP_ADDR=0x80b80000 CONFIG_SF_DEFAULT_SPEED=25000000 -CONFIG_ENV_SIZE=0x2000 +CONFIG_ENV_SIZE=0x20000 CONFIG_ENV_OFFSET=0x680000 CONFIG_SPL_DM_SPI=y CONFIG_DEFAULT_DEVICE_TREE="ti/k3-am625-phyboard-lyra-rdk" |
