From e7394a89d3e4dcfc43afac42f7e7de69529f38af Mon Sep 17 00:00:00 2001 From: Joachim Wiberg Date: Fri, 9 Aug 2024 12:34:57 +0200 Subject: [PATCH] board/common: disable metadata checksumming for aux partition U-Boot (2024.07) does not yet support the 'metadata_csum' feature flag to Ext4 file systems. So let's disable it for now in mkaux.sh so we can allow builds for, e.g., the R2S and VisionFive2 boards to modify and save their U-Boot environment. Needed on the NanoPi R2S to set ethaddr + eth1addr since it does not have any VPD EEPROM mounted. Signed-off-by: Joachim Wiberg --- board/common/mkaux.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/board/common/mkaux.sh b/board/common/mkaux.sh index aef37f72..3f139452 100755 --- a/board/common/mkaux.sh +++ b/board/common/mkaux.sh @@ -11,6 +11,7 @@ image aux.ext4 { ext4 { label = "aux" use-mke2fs = true + features = "^metadata_csum,^metadata_csum_seed" } }