From 9fb645fa2068aaab2549fe7a9ffef75507f3b463 Mon Sep 17 00:00:00 2001 From: Roc Lai Date: Wed, 21 Jan 2026 17:55:16 +0800 Subject: [PATCH] kexec-tools: add aarch64 architecture support To update kexec and kdump dependencies for supporting the aarch64 architecture. Signed-off-by: Roc Lai Link: https://github.com/openwrt/openwrt/pull/21623 Signed-off-by: Robert Marko --- package/boot/kexec-tools/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/boot/kexec-tools/Makefile b/package/boot/kexec-tools/Makefile index e1447bae70..45500a120d 100644 --- a/package/boot/kexec-tools/Makefile +++ b/package/boot/kexec-tools/Makefile @@ -47,7 +47,7 @@ define Package/kexec $(call Package/kexec-tools/Default) TITLE:=Kernel boots kernel DEPENDS:=\ - @(armeb||arm||i386||x86_64||powerpc64||mipsel||mips) \ + @(armeb||arm||aarch64||i386||x86_64||powerpc64||mipsel||mips) \ +KEXEC_ZLIB:zlib +KEXEC_LZMA:liblzma @KERNEL_KEXEC endef @@ -58,7 +58,7 @@ endef define Package/kdump $(call Package/kexec-tools/Default) TITLE:=Kernel crash analysis - DEPENDS:=+kexec @(i386||x86_64||arm) @KERNEL_CRASH_DUMP + DEPENDS:=+kexec @(i386||x86_64||arm||aarch64) @KERNEL_CRASH_DUMP endef define Package/kdump/description