summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--init1
-rw-r--r--init_functions7
2 files changed, 7 insertions, 1 deletions
diff --git a/init b/init
index 2578cf8..5c2d751 100644
--- a/init
+++ b/init
@@ -76,6 +76,7 @@ if [ "${break}" = "postmount" ]; then
launch_interactive_shell
fi
+# this should always be the last thing we do before the switch_root.
rdlogger_stop
exec env -i \
diff --git a/init_functions b/init_functions
index 152da7f..f356a14 100644
--- a/init_functions
+++ b/init_functions
@@ -326,6 +326,11 @@ rdlogger_start() {
exec >/run/initramfs/rdlogger.pipe 2>&1
[ -n "$rd_debug" ] && set -x
+
+ # messages would be otherwise lost if we don't unset quiet. this does,
+ # however, mean that passing rd.log=console will negate the effects of
+ # 'quiet' for initramfs console output.
+ unset quiet
}
rdlogger_stop() {
@@ -361,7 +366,7 @@ rdlogger() {
# will Do The Right Thing™.
# rd.log=console
- if [ -z "$quiet" ] && bitfield_has_bit "$rd_logmask" "$_rdlog_cons"; then
+ if bitfield_has_bit "$rd_logmask" "$_rdlog_cons"; then
exec 4>/dev/console
else
exec 4>/dev/null