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>
This commit is contained in:
Dave Young 2012-08-10 11:02:38 +08:00
parent c12a3216c5
commit 864fb123f8
1 changed files with 5 additions and 1 deletions

View File

@ -1,2 +1,6 @@
#!/bin/sh
echo -n
if grep -q Fedora /etc/redhat-release; then
echo -n
else
echo crashkernel=auto
fi