From 45d496db076932dafa7d7029205eea72d50e0696 Mon Sep 17 00:00:00 2001 From: rw-r-r-0644 Date: Tue, 1 Jun 2021 13:20:55 +0200 Subject: [PATCH] isfshax: ensure correct superblock alignment --- stage2/isfs/isfshax.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stage2/isfs/isfshax.h b/stage2/isfs/isfshax.h index c2931c1..b3b8c80 100644 --- a/stage2/isfs/isfshax.h +++ b/stage2/isfs/isfshax.h @@ -38,7 +38,7 @@ typedef struct isfshax_super u16 fat[CLUSTER_COUNT]; isfs_fst fst[6143]; isfshax_info isfshax; -} PACKED ALIGNED(64) isfshax_super; +} PACKED ALIGNED(NAND_DATA_ALIGN) isfshax_super; _Static_assert(sizeof(isfshax_super) == ISFSSUPER_SIZE, "isfshax_super must be 0x40000");