[PATCH 07/12] arm64: vdso32: Always build compat vDSO object as little-endian
From: Will Deacon
Date: Tue Aug 11 2026 - 10:10:43 EST
Big-endian support on arm64 depends on BROKEN. In preparation for
removing the dead code altogether, remove support for building a
big-endian 32-bit vDSO.
Signed-off-by: Will Deacon <will@xxxxxxxxxx>
---
arch/arm64/kernel/vdso32/Makefile | 4 ----
1 file changed, 4 deletions(-)
diff --git a/arch/arm64/kernel/vdso32/Makefile b/arch/arm64/kernel/vdso32/Makefile
index bea3675fa668..00efdc5d2354 100644
--- a/arch/arm64/kernel/vdso32/Makefile
+++ b/arch/arm64/kernel/vdso32/Makefile
@@ -45,11 +45,7 @@ endif
# From arm Makefile
VDSO_CAFLAGS += $(call cc32-option,-fno-dwarf2-cfi-asm)
VDSO_CAFLAGS += -mabi=aapcs-linux -mfloat-abi=soft
-ifeq ($(CONFIG_CPU_BIG_ENDIAN), y)
-VDSO_CAFLAGS += -mbig-endian
-else
VDSO_CAFLAGS += -mlittle-endian
-endif
# From arm vDSO Makefile
VDSO_CAFLAGS += -fPIC -fno-builtin -fno-stack-protector
--
2.55.0.679.g6767b8d81c-goog