Re: [PATCH v2 10/15] nvmem: core: add nvmem-layout support

2025-08-19 Thread Marco Felsch
Hi Sascha, On 25-08-19, Sascha Hauer wrote: > Hi Marco, > > These patches conflict with Ahmads bfetch changes. I think I fixed > this up, but please check the result. > > On Mon, Aug 18, 2025 at 07:44:44PM +0200, Marco Felsch wrote: > > diff --git a/drivers/nvmem/core.c b/drivers/nvmem/core.c >

Re: [PATCH v2 10/15] nvmem: core: add nvmem-layout support

2025-08-19 Thread Sascha Hauer
Hi Marco, These patches conflict with Ahmads bfetch changes. I think I fixed this up, but please check the result. On Mon, Aug 18, 2025 at 07:44:44PM +0200, Marco Felsch wrote: > diff --git a/drivers/nvmem/core.c b/drivers/nvmem/core.c > index > 7d026330105b629e68353ae5cdbbf966284da7ea..b87dd937

[PATCH master] ARM: drop unused ARM_USE_COMPRESSED_DTB

2025-08-19 Thread Ahmad Fatoum
The new USE_COMPRESSED_DTB option is selected unconditionally for ARM, so drop the stale selects to the old symbol. Signed-off-by: Ahmad Fatoum --- arch/arm/mach-imx/Kconfig | 1 - arch/arm/mach-k3/Kconfig | 1 - 2 files changed, 2 deletions(-) diff --git a/arch/arm/mach-imx/Kconfig b/arch/arm

Re: [PATCH v5 09/11] FIT: fit_open: make filename handling more robust

2025-08-19 Thread Sascha Hauer
On Tue, Aug 19, 2025 at 10:19:41AM +0200, Marco Felsch wrote: > On 25-08-19, Sascha Hauer wrote: > > On Mon, Aug 18, 2025 at 07:26:17PM +0200, Marco Felsch wrote: > > > Require the filename to start at the root '/' directory and resolve any > > > possible link to make the filename handling more rob

Re: [PATCH v5 09/11] FIT: fit_open: make filename handling more robust

2025-08-19 Thread Marco Felsch
On 25-08-19, Sascha Hauer wrote: > On Tue, Aug 19, 2025 at 10:19:41AM +0200, Marco Felsch wrote: > > On 25-08-19, Sascha Hauer wrote: > > > On Mon, Aug 18, 2025 at 07:26:17PM +0200, Marco Felsch wrote: > > > > Require the filename to start at the root '/' directory and resolve any > > > > possible

Re: [PATCH v5 07/11] of: overlay: add FIT image overlay support

2025-08-19 Thread Marco Felsch
On 25-08-19, Sascha Hauer wrote: > On Mon, Aug 18, 2025 at 07:26:15PM +0200, Marco Felsch wrote: > > This adds the support to load devicetree overlays from a FIT image. > > There are a few options to handle FIT overlays since the FIT overlay > > spec is not very strict. > > > > This implements the

Re: [PATCH v5 09/11] FIT: fit_open: make filename handling more robust

2025-08-19 Thread Marco Felsch
On 25-08-19, Sascha Hauer wrote: > On Mon, Aug 18, 2025 at 07:26:17PM +0200, Marco Felsch wrote: > > Require the filename to start at the root '/' directory and resolve any > > possible link to make the filename handling more robust. > > > > This is in preparation of adding cached fit_open support

Re: [PATCH v2 00/15] NVMEM: Add support for layout drivers

2025-08-19 Thread Sascha Hauer
On Mon, 18 Aug 2025 19:44:34 +0200, Marco Felsch wrote: > with this patchset the barebox nvmem-core is prepared for the Linux > nvmem-layout drivers. Layout drivers are used to describe the NVMEM > storage format. The patchset also adds the support to read nvmem-cells > via the devfs. This makes

Re: [PATCH 00/15] NVMEM: Add support for layout drivers

2025-08-19 Thread Sascha Hauer
On Mon, 04 Aug 2025 16:36:46 +0200, Marco Felsch wrote: > with this patchset the barebox nvmem-core is prepared for the Linux > nvmem-layout drivers. Layout drivers are used to describe the NVMEM > storage format. The patchset also adds the support to read nvmem-cells > via the devfs. This makes

Re: [PATCH v5 09/11] FIT: fit_open: make filename handling more robust

2025-08-19 Thread Sascha Hauer
On Mon, Aug 18, 2025 at 07:26:17PM +0200, Marco Felsch wrote: > Require the filename to start at the root '/' directory and resolve any > possible link to make the filename handling more robust. > > This is in preparation of adding cached fit_open support. > > Signed-off-by: Marco Felsch > --- >