This repository has been archived on 2024-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
|
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
|