From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eugeniu Rosca Date: Tue, 5 Mar 2019 19:42:39 +0100 Subject: [U-Boot] [PATCH] ARM: rmobile: Convert to bootm_size In-Reply-To: References: <20181127001054.29623-1-marek.vasut+renesas@gmail.com> <8cd3e7ee-f5dd-61f3-082c-feec2777141f@gmail.com> <97181119-9bd1-8f37-7b1e-0624d077e571@gmail.com> <55912eb8-c0a7-9b5f-0dc1-f71a497ae564@gmail.com> <93b1f711-86ec-3b12-195f-6e447c1425ad@gmail.com> <20181128013121.GH11247@bill-the-cat> <20181128121927.GK11247@bill-the-cat> Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hello Marek, May I ask for your opinion on Renesas commits [1-2] especially in light of the `bootm_size` changes done in your patch? The topics look orthogonal to me, but I kindly ask for your confirmation. Also, purely related to the `bootm_size` patch, compiling v2019.04-rc3 U-Boot for H3-Salvator-X with the diff [3] applied, I get: common/image.c: In function 'env_get_bootm_mapsize': common/image.c:520:2: error: #error "Take bootm_size from CONFIG" #error "Take bootm_size from CONFIG" ^~~~~ Does this mean the "CONFIG_SYS_BOOTMAPSZ" definition has to be removed from include/configs/rcar-gen3-common.h, to allow the patch to have the desired effect? [1] https://github.com/renesas-rcar/u-boot/commit/86ad30910df818 ("arm: rcar_gen3: Add skip of relocation") [2] https://github.com/renesas-rcar/u-boot/commit/91e27e4cc463e ("arm: rcar_gen3: Add skip of relocation") [3] Brutal way to reveal the active bootm_size: diff --git a/common/image.c b/common/image.c index 4d4248f234fb..d65de506060b 100644 --- a/common/image.c +++ b/common/image.c @@ -517,8 +517,10 @@ phys_size_t env_get_bootm_mapsize(void) } #if defined(CONFIG_SYS_BOOTMAPSZ) +#error "Take bootm_size from CONFIG" return CONFIG_SYS_BOOTMAPSZ; #else +#error "Take bootm_size from env" return env_get_bootm_size(); #endif } Thanks, Eugeniu.