From mboxrd@z Thu Jan 1 00:00:00 1970 From: Heiko Stuebner Date: Fri, 19 Feb 2021 11:16:20 +0100 Subject: [PATCH] rockchip: rk3399-puma: Increase environment size to 16 kiB. In-Reply-To: <20210219003002.318548-1-christoph.muellner@theobroma-systems.com> References: <20210219003002.318548-1-christoph.muellner@theobroma-systems.com> Message-ID: <9210847.aoefvbuG5b@diego> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Am Freitag, 19. Februar 2021, 01:30:02 CET schrieb Christoph Muellner: > On Puma we have the environment at an offset of 16 kiB. > On the eMMC this gives us 16 kiB for the environment before the SPL starts. > On the SPI NOR we also have 16 kiB until end of flash. > So let's increase the environment size from 8 kiB to its maximum > of 16 kiB for both MMC and SPI NOR. > > Signed-off-by: Christoph Muellner as that area would otherwise be simply wasted, this looks like a nice addition Reviewed-by: Heiko Stuebner > --- > > board/theobroma-systems/puma_rk3399/Kconfig | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/board/theobroma-systems/puma_rk3399/Kconfig b/board/theobroma-systems/puma_rk3399/Kconfig > index e82623a1701..21946d984da 100644 > --- a/board/theobroma-systems/puma_rk3399/Kconfig > +++ b/board/theobroma-systems/puma_rk3399/Kconfig > @@ -13,7 +13,7 @@ config BOARD_SPECIFIC_OPTIONS # dummy > def_bool y > > config ENV_SIZE > - default 0x2000 > + default 0x4000 > > config ENV_OFFSET > default 0x3fc000 if ENV_IS_IN_SPI_FLASH >