15 lines
284 B
Plaintext
15 lines
284 B
Plaintext
|
if [ -x /sbin/agetty -o -x /bin/agetty ]; then
|
||
|
# util-linux specific settings
|
||
|
if [ "${tty}" = "tty1" ]; then
|
||
|
if [ -e /bin/getty ]; then
|
||
|
GETTY_ARGS=""
|
||
|
else
|
||
|
GETTY_ARGS="--noclear"
|
||
|
fi
|
||
|
fi
|
||
|
fi
|
||
|
|
||
|
BAUD_RATE=38400
|
||
|
TERM_NAME=linux
|
||
|
EOF
|