From aeeb2b4b8459d853be85aa894c5be1aa140510ad Mon Sep 17 00:00:00 2001 From: Juan RP Date: Thu, 2 Apr 2015 13:01:43 +0200 Subject: agetty-tty1: unbreak and only apply --noclear on tty1. --- services/agetty-generic/run | 3 ++- services/agetty-tty1/conf | 4 +++- 2 files changed, 5 insertions(+), 2 deletions(-) (limited to 'services') diff --git a/services/agetty-generic/run b/services/agetty-generic/run index 9f532b2..b47475a 100755 --- a/services/agetty-generic/run +++ b/services/agetty-generic/run @@ -1,8 +1,9 @@ #!/bin/sh +tty=${PWD##*-} + [ -r conf ] && . conf -tty=${PWD##*-} if [ -x /sbin/getty ]; then # busybox GETTY=getty diff --git a/services/agetty-tty1/conf b/services/agetty-tty1/conf index 19cbabb..7c684e9 100644 --- a/services/agetty-tty1/conf +++ b/services/agetty-tty1/conf @@ -1,6 +1,8 @@ if [ -x /sbin/agetty ]; then # util-linux specific settings - GETTY_ARGS="--no-clear" + if [ "${tty}" = "tty1" ]; then + GETTY_ARGS="--noclear" + fi fi BAUD_RATE=38400 -- cgit 1.4.1