From 81f53b0dafdfe9458f6d04fc5ec2732c2ea23a71 Mon Sep 17 00:00:00 2001 From: Klaus Goger Date: Mon, 11 Dec 2017 17:56:08 +0100 Subject: rockchip: move CONFIG_ENV_SIZE and CONFIG_ENV_OFFSET to Kconfig This commit adds ENV_SIZE and ENV_OFFSET configuration items for ARCH_ROCKCHIP, but keeps these non-visible (i.e. not prompt is given). With these new items present, the configuration from the header files is moved to Kconfig. Keeping these non-visible is necessary to have the possibility to select new default values if CONFIG_IS_IN_* is changed (interactively or with oldconfig). Otherwise it will always be set to a previous value if used with a prompt. As an example if we do a defconfig with CONFIG_IS_IN_MMC and change it to CONFIG_IS_IN_SPI_FLASH via menuconfig, ENV_SIZE and ENV_OFFSET will not be changed to the correct values as defconfig will already have set them to the default values of CONFIG_IS_IN_MMC in .config. Signed-off-by: Klaus Goger Reviewed-by: Philipp Tomsich --- env/Kconfig | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'env') diff --git a/env/Kconfig b/env/Kconfig index 2477bf8..bef6e89 100644 --- a/env/Kconfig +++ b/env/Kconfig @@ -427,4 +427,22 @@ config ENV_UBI_VOLUME endif +if ARCH_ROCKCHIP + +config ENV_OFFSET + hex + depends on !ENV_IS_IN_UBI + depends on !ENV_IS_NOWHERE + default 0x3f8000 + help + Offset from the start of the device (or partition) + +config ENV_SIZE + hex + default 0x8000 + help + Size of the environment storage area + +endif + endmenu -- cgit v1.1