On fast models, the CRC32 feature is disabled by default. When enabled in U-Boot, it leads to synchronous aborts due to unrecognized instructions. This change ensures CRC32 is disabled by default to maintain compatibility.
Signed-off-by: Harrison Mutai <[email protected]> --- configs/vexpress_fvp_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/vexpress_fvp_defconfig b/configs/vexpress_fvp_defconfig index 7362c1fc35c..fda0f5283c9 100644 --- a/configs/vexpress_fvp_defconfig +++ b/configs/vexpress_fvp_defconfig @@ -2,4 +2,5 @@ CONFIG_ARM=y CONFIG_ARCH_VEXPRESS64=y CONFIG_DEFAULT_DEVICE_TREE="arm_fvp" CONFIG_IDENT_STRING=" arm_fvp" +# CONFIG_ARM64_CRC32 is not set # CONFIG_DISPLAY_CPUINFO is not set -- 2.46.2

