about summary refs log tree commit diff
path: root/core-services/02-console-setup.sh
diff options
context:
space:
mode:
Diffstat (limited to 'core-services/02-console-setup.sh')
-rw-r--r--core-services/02-console-setup.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/core-services/02-console-setup.sh b/core-services/02-console-setup.sh
index 5769f61..f1a4afc 100644
--- a/core-services/02-console-setup.sh
+++ b/core-services/02-console-setup.sh
@@ -3,19 +3,19 @@
 [ -n "$VIRTUALIZATION" ] && return 0
 
 if [ -n "$FONT" ]; then
-    msg "Setting up TTYs font to '${FONT}'...\n"
+    msg "Setting up TTYs font to '${FONT}'..."
     for i in /dev/tty[0-6]; do
         setfont ${FONT_MAP:+-m $FONT_MAP} ${FONT_UNIMAP:+-u $FONT_UNIMAP} $FONT -C $i
     done
 fi
 
 if [ -n "$KEYMAP" ]; then
-    msg "Setting up keymap to '${KEYMAP}'...\n"
+    msg "Setting up keymap to '${KEYMAP}'..."
     loadkeys -q -u ${KEYMAP}
 fi
 
 if [ -n "$HARDWARECLOCK" ]; then
-    msg "Setting up RTC to '${HARDWARECLOCK}'...\n"
+    msg "Setting up RTC to '${HARDWARECLOCK}'..."
     TZ=$TIMEZONE hwclock --systz \
         ${HARDWARECLOCK:+--$(echo $HARDWARECLOCK |tr A-Z a-z) --noadjfile} || emergency_shell
 fi