diff options
author | Michael Prokop <mika@grml.org> | 2007-09-08 19:53:01 +0200 |
---|---|---|
committer | maximilian attems <max@stro.at> | 2007-09-08 19:53:01 +0200 |
commit | d85d8755ce0d8a84524a64cf32887fd9bd21e65f (patch) | |
tree | ee7dd446aab730683a7de55cb85c34bf869d0c7d | |
parent | 6303982cbb523988b95fd79a10534ba7de81e703 (diff) | |
download | initramfs-tools-d85d8755ce0d8a84524a64cf32887fd9bd21e65f.tar.gz initramfs-tools-d85d8755ce0d8a84524a64cf32887fd9bd21e65f.zip |
disable quiet on debug bootarg
If you have quiet in your /proc/cmdline you can never
reach any debug bootoption anymore.
-rwxr-xr-x | init | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -119,11 +119,13 @@ for x in $(cat /proc/cmdline); do ;; debug) debug=y + quiet=n exec >/tmp/initramfs.debug 2>&1 set -x ;; debug=*) debug=y + quiet=n set -x ;; break=*) |