summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoc Lai2026-01-21 09:55:16 +0000
committerRobert Marko2026-01-23 09:34:12 +0000
commit9fb645fa2068aaab2549fe7a9ffef75507f3b463 (patch)
treee25fc93cae57a0e32faa592aa19b8e25c1bd435f
parent45f35433855ce4545b50c3b7af57c2ce09258ca2 (diff)
downloadopenwrt-9fb645fa2068aaab2549fe7a9ffef75507f3b463.tar.gz
kexec-tools: add aarch64 architecture support
To update kexec and kdump dependencies for supporting the aarch64 architecture. Signed-off-by: Roc Lai <laipeng668@qq.com> Link: https://github.com/openwrt/openwrt/pull/21623 Signed-off-by: Robert Marko <robimarko@gmail.com>
-rw-r--r--package/boot/kexec-tools/Makefile4
1 files 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