diff options
author | Harrison Mutai <harrison.mutai@arm.com> | 2025-03-04 16:52:01 +0000 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-03-18 08:12:34 -0600 |
commit | 1d41f7afdf17c45ff8a6853742c9a61b371b73d0 (patch) | |
tree | 8b04a3b5d6a797c3a180b0c9cbe6dcdae189be06 | |
parent | 03a76b1a737fc9cf511aa7520999968ec3d2fd78 (diff) |
vepxress64: disable CRC32 by default to prevent aborts
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 <harrison.mutai@arm.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
-rw-r--r-- | configs/vexpress_fvp_defconfig | 1 |
1 files changed, 1 insertions, 0 deletions
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 |