mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-02-01 13:03:12 +01:00
Fixed build failure caused by missing libzstd dependency.
Added CONFIG_KEXEC_ZSTD configuration option and libzstd library dependency
declaration, following the same pattern as existing zlib and lzma support.
Fixes: e75218ef4a ("kexec-tools: bump to 2.0.32")
Link: https://github.com/openwrt/openwrt/pull/21623#issuecomment-3805115332
Signed-off-by: Roc Lai <laipeng668@qq.com>
Link: https://github.com/openwrt/openwrt/pull/21743
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
19 lines
234 B
Text
19 lines
234 B
Text
menu "Configuration"
|
|
depends on PACKAGE_kexec
|
|
|
|
config KEXEC_ZLIB
|
|
bool
|
|
prompt "zlib support"
|
|
default y
|
|
|
|
config KEXEC_LZMA
|
|
bool
|
|
prompt "lzma support"
|
|
default n
|
|
|
|
config KEXEC_ZSTD
|
|
bool
|
|
prompt "zstd support"
|
|
default n
|
|
|
|
endmenu
|