cd96421b19
- kexec-tools is now distributed with tarballs of .tar.gz and .tar.xz format; .tar.bz2 are not provided anymore. - Add CONFIG_KEXEC_LZMA for selecting lzma support. Patches are updated along to: - Remove the now unnecessary patch 0004-mips_regdefs.patch. - Drop 100-reduce_size.patch because the size reduction is marginal. - Allow zlib and lzma support coexist together. This patch has been merged into upstream project. - Fix kexec-tools' configure.ac. - Fix a few compilation warnings. Size comparison of stripped binaries of kexec malta target with both zlib and lzma support enabled. - Before: 41447 - After: 42583 Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com> SVN-Revision: 44437
31 lines
568 B
Text
31 lines
568 B
Text
menu "Configuration"
|
|
depends on PACKAGE_kexec-tools
|
|
|
|
config KEXEC_TOOLS_TARGET_NAME
|
|
string
|
|
prompt "Target name for kexec kernel"
|
|
default EXTRA_TARGET_ARCH_NAME if powerpc64
|
|
default ARCH
|
|
help
|
|
Defines the target type of the kernels that kexec deals
|
|
with. This should be the target specification of
|
|
the kernel you're booting.
|
|
|
|
config KEXEC_TOOLS_kdump
|
|
bool
|
|
prompt "kdump support"
|
|
default n
|
|
help
|
|
Include the kdump utility.
|
|
|
|
config KEXEC_ZLIB
|
|
bool
|
|
prompt "zlib support"
|
|
default y
|
|
|
|
config KEXEC_LZMA
|
|
bool
|
|
prompt "lzma support"
|
|
default n
|
|
|
|
endmenu
|