diff options
author | Kent Overstreet <kmo@daterainc.com> | 2014-10-08 23:06:44 -0700 |
---|---|---|
committer | Kent Overstreet <kmo@daterainc.com> | 2014-10-13 13:18:52 -0700 |
commit | 586ef7f683ae670b72d35aeeb209d728ac24aca8 (patch) | |
tree | 82364e17834321f2406129ecdfa1cb5fac541455 | |
parent | b2ea0b7268fd5e9a8f1f66e51156dc12e7886c9f (diff) |
Don't spew log output when running kernel crash dump kernel
It'll make the logs easier to read
Change-Id: Iff8c51c1926c5cc5c5475db2cb7d5f920f054dae
-rw-r--r-- | rc.interactive | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/rc.interactive b/rc.interactive index 3e31dc3..26e2680 100644 --- a/rc.interactive +++ b/rc.interactive @@ -27,5 +27,7 @@ if [ -s /proc/vmcore ]; then sync poweroff else - kexec -p /cdrom/vmlinuz --append="root=/dev/sda rw console=ttyS0,115200 maxcpus=1" + # If debugging crash dumps, add "console=ttyS0,115200" to the append line + # below: + kexec -p /cdrom/vmlinuz --append="root=/dev/sda rw maxcpus=1" fi |