diff options
author | Joel Johnson <mrjoel@lixil.net> | 2020-03-23 14:21:38 -0600 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2020-04-14 13:16:42 +0200 |
commit | c5936cc4f8c36bc3deb0335a5f5b38c2bd3cea3c (patch) | |
tree | 1a821b0a5308bcd0ccde9b3b2eed1f560bbf3cd6 /board | |
parent | b16d7c3216fea40545a3ed1784345f3c851b28e8 (diff) | |
download | u-boot-c5936cc4f8c36bc3deb0335a5f5b38c2bd3cea3c.zip u-boot-c5936cc4f8c36bc3deb0335a5f5b38c2bd3cea3c.tar.gz u-boot-c5936cc4f8c36bc3deb0335a5f5b38c2bd3cea3c.tar.bz2 |
arm: mvebu: clearfog: move ENV params to Kconfig
Migrate the values for ENV_SIZE and ENV_OFFSET into board specific
Kconfig defaults so they're more accessible for configuration.
Signed-off-by: Joel Johnson <mrjoel@lixil.net>
Reviewed-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'board')
-rw-r--r-- | board/solidrun/clearfog/Kconfig | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/board/solidrun/clearfog/Kconfig b/board/solidrun/clearfog/Kconfig index ea9c419..e8c3f53 100644 --- a/board/solidrun/clearfog/Kconfig +++ b/board/solidrun/clearfog/Kconfig @@ -39,6 +39,14 @@ config CLEARFOG_SFP_25GB SGMII connection (requires a supporting SFP). By default, transfer speed of 1.25 Gbps is used, suitable for a more common 1 Gbps SFP module. +config ENV_SIZE + hex "Environment Size" + default 0x10000 + +config ENV_OFFSET + hex "Environment offset" + default 0xF0000 + config ENV_SECT_SIZE hex "Environment Sector-Size" # Use SPI flash erase block size of 4 KiB |