Re: [PATCH] system certificates: specify byte alignment
From: Giuliano Procida
Date: Mon Sep 22 2025 - 16:17:40 EST
On Mon, 22 Sept 2025 at 17:38, Will Deacon <will@xxxxxxxxxx> wrote:
>
> On Fri, Sep 12, 2025 at 11:00:15AM +0100, Giuliano Procida wrote:
> > The .align macro is architecture dependent. On arm64 it behaves as
> > .p2align. The various alignments in this file are all bytes.
> >
> > So use the .balign macro to avoid unnecessary padding due to
> > over-alignment.
> >
> > Signed-off-by: Giuliano Procida <gprocida@xxxxxxxxxx>
> > ---
> > certs/system_certificates.S | 8 ++++----
> > 1 file changed, 4 insertions(+), 4 deletions(-)
>
> Does certs/revocation_certificates.S need fixing as well?
Yes. I will post a v2.
> Will