This website requires JavaScript.
Explore
Help
Sign In
rpms
/
kexec-tools
Watch
7
Star
0
Fork
0
You've already forked kexec-tools
Code
Issues
Pull Requests
Releases
Activity
4a468829e7
kexec-tools
/
rhcrashkernel-param
7 lines
100 B
Plaintext
Raw
Normal View
History
Unescape
Escape
add rhcrashkernel-param.sh for anaconda use Resolves: 707441 Provide a script rhcrashkernel-param.sh to generate cmdline, so anaconda can just call it, we can easily add more logic into this script later. Note: Currently for fedora only adding null output for testing purpose. Signed-off-by: Dave Young <dyoung@redhat.com> Suggested-by: Vivek Goyal <vgoyal@redhat.com>
2012-05-11 06:29:53 +00:00
#!/bin/sh
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-10 03:02:38 +00:00
if grep -q Fedora /etc/redhat-release; then
echo -n
else
echo crashkernel=auto
fi
Reference in New Issue
Copy Permalink