kexec-tools/rhcrashkernel-param
Dave Young 864fb123f8 rhcrashkernel-param: echo crashkernel=auto for rhel7
Per discussion in kdump meetint, add crashkernel=auto to rhcrashkernel-param
script for rhel7 for testing. Anaconda will call this script to add the cmdline
instead of hardcode it.

Signed-off-by: Dave Young <dyoung@redhat.com>
2012-08-20 15:01:47 +08:00

7 lines
100 B
Bash

#!/bin/sh
if grep -q Fedora /etc/redhat-release; then
echo -n
else
echo crashkernel=auto
fi