Re: [PATCH] ARM: Align image end to 8 bytes to fit DT alignment

2025-05-18 Thread Marek Vasut
On 5/15/25 9:27 PM, Simon Glass wrote: Hi Marek, On Mon, 12 May 2025 at 18:11, Marek Vasut wrote: Align U-Boot image end to 8 bytes to make sure DT alignment requirement is fulfilled. This fixes a possible failure in fdt_find_separate() in case the U-Boot image is aligned to 4 Bytes and DT is

Re: [PATCH] ARM: Align image end to 8 bytes to fit DT alignment

2025-05-18 Thread Marek Vasut
On 5/12/25 6:50 PM, Quentin Schulz wrote: Hi Marek, On 5/12/25 6:10 PM, Marek Vasut wrote: Align U-Boot image end to 8 bytes to make sure DT alignment requirement is fulfilled. This fixes a possible failure in fdt_find_separate() in case the U-Boot image is aligned to 4 Bytes and DT is appended

Re: [PATCH] ARM: Align image end to 8 bytes to fit DT alignment

2025-05-15 Thread Tom Rini
On Mon, May 12, 2025 at 06:10:28PM +0200, Marek Vasut wrote: > Align U-Boot image end to 8 bytes to make sure DT alignment requirement > is fulfilled. This fixes a possible failure in fdt_find_separate() in > case the U-Boot image is aligned to 4 Bytes and DT is appended at the > end at already 8

Re: [PATCH] ARM: Align image end to 8 bytes to fit DT alignment

2025-05-15 Thread Simon Glass
Hi Marek, On Mon, 12 May 2025 at 18:11, Marek Vasut wrote: > > Align U-Boot image end to 8 bytes to make sure DT alignment requirement > is fulfilled. This fixes a possible failure in fdt_find_separate() in > case the U-Boot image is aligned to 4 Bytes and DT is appended at the > end at already 8

Re: [PATCH] ARM: Align image end to 8 bytes to fit DT alignment

2025-05-12 Thread Quentin Schulz
Hi Marek, On 5/12/25 6:10 PM, Marek Vasut wrote: Align U-Boot image end to 8 bytes to make sure DT alignment requirement is fulfilled. This fixes a possible failure in fdt_find_separate() in case the U-Boot image is aligned to 4 Bytes and DT is appended at the end at already 8 Byte aligned offse

[PATCH] ARM: Align image end to 8 bytes to fit DT alignment

2025-05-12 Thread Marek Vasut
Align U-Boot image end to 8 bytes to make sure DT alignment requirement is fulfilled. This fixes a possible failure in fdt_find_separate() in case the U-Boot image is aligned to 4 Bytes and DT is appended at the end at already 8 Byte aligned offset. Signed-off-by: Marek Vasut --- Cc: Ilias Apalod