mirror of
https://git.yoctoproject.org/poky
synced 2026-02-16 05:33:03 +01:00
Do not set default values of KDUMP_CMDLINE and KDUMP_KIMAGE, and leave
them set by configure file since they are different for different
architectures. Take KDUMP_KIMAGE kdump kernel image for example:
x86 is bzImage
mips64 is vmlinux
ppc is uImage
arm is zImage
(From OE-Core rev: 05dcb054fcd0c80bb09612c3e15b6b1f0487aae8)
Signed-off-by: Roy Li <rongqing.li@windriver.com>
Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
15 lines
411 B
Plaintext
15 lines
411 B
Plaintext
#the kdump kernel version string.
|
|
#KDUMP_KVER="`uname -r`"
|
|
|
|
#this will be passed to the kdump kernel as kdump kernel command line
|
|
#KDUMP_CMDLINE="`cat /proc/cmdline`"
|
|
|
|
#the kernel image for kdump
|
|
#KDUMP_KIMAGE="/boot/bzImage-${KDUMP_KVER}"
|
|
|
|
#Where to save the vmcore
|
|
#KDUMP_VMCORE_PATH="/var/crash/`date +"%Y-%m-%d"`"
|
|
|
|
#the arguments to makedumpfile
|
|
MAKEDUMPFILE_ARGS="--dump-dmesg -x /boot/vmlinux-`uname -r`"
|