Re: [PATCH v4 04/10] rockchip: binman: Create a template for the FIT

2025-04-09 Thread Jonas Karlman
Hi Quentin, On 2025-04-09 11:39, Quentin Schulz wrote: > Hi Jonas, Simon, > > On 3/29/25 4:06 PM, Jonas Karlman wrote: > [...] >> -#if defined(CONFIG_ARM64) || defined(CONFIG_SPL_OPTEE_IMAGE) >> +#ifdef HAS_FIT >> fit { >> type = "blob"; >> f

Re: [PATCH v4 04/10] rockchip: binman: Create a template for the FIT

2025-04-09 Thread Quentin Schulz
Hi Jonas, Simon, On 3/29/25 4:06 PM, Jonas Karlman wrote: [...] -#if defined(CONFIG_ARM64) || defined(CONFIG_SPL_OPTEE_IMAGE) +#ifdef HAS_FIT fit { type = "blob"; filename = "u-boot.itb"; Use the template for the SPI here already

Re: [PATCH v4 04/10] rockchip: binman: Create a template for the FIT

2025-04-06 Thread Kever Yang
On 2025/3/29 23:06, Jonas Karlman wrote: From: Simon Glass Move the FIT description into a template so that it can (later) be used in multiple places in the image. Signed-off-by: Simon Glass Signed-off-by: Jonas Karlman Reviewed-by: Kever Yang Thanks, - Kever --- Changes in v4: - Renam

[PATCH v4 04/10] rockchip: binman: Create a template for the FIT

2025-03-29 Thread Jonas Karlman
From: Simon Glass Move the FIT description into a template so that it can (later) be used in multiple places in the image. Signed-off-by: Simon Glass Signed-off-by: Jonas Karlman --- Changes in v4: - Rename template label to fit_template - Split from "VBE serial part H: Implement VBE on Rockch