diff options
author | WANG Chao <chaowang@redhat.com> | 2013-08-01 18:54:55 +0800 |
---|---|---|
committer | Harald Hoyer <harald@redhat.com> | 2013-08-01 12:55:55 +0200 |
commit | ff66b6dad345ca12de4aa14db298c8776b16d115 (patch) | |
tree | f54f0c489f04615628f837755d0da683e61998c0 | |
parent | 64a7eace88b30f3ea03df86ddceb23d4949b692d (diff) | |
download | dracut-ff66b6dad345ca12de4aa14db298c8776b16d115.tar.gz dracut-ff66b6dad345ca12de4aa14db298c8776b16d115.tar.bz2 dracut-ff66b6dad345ca12de4aa14db298c8776b16d115.zip |
95terminfo: install vt102
systemd uses vt102 as default term for tty:
commit acda6a0
Author: Lennart Poettering <lennart@poettering.net>
Date: Sun Apr 22 02:45:39 2012 +0200
default to v102 everywhere, instead of vt100, to synchronize with agetty
Signed-off-by: WANG Chao <chaowang@redhat.com>
-rwxr-xr-x | modules.d/95terminfo/module-setup.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules.d/95terminfo/module-setup.sh b/modules.d/95terminfo/module-setup.sh index ecd43958..4656cd36 100755 --- a/modules.d/95terminfo/module-setup.sh +++ b/modules.d/95terminfo/module-setup.sh @@ -10,7 +10,7 @@ install() { done if [ -d ${_terminfodir} ]; then - for i in "l/linux" "v/vt100" "v/vt220"; do + for i in "l/linux" "v/vt100" "v/vt102" "v/vt220"; do inst_dir "$_terminfodir/${i%/*}" cp --reflink=auto --sparse=auto -prfL -t "${initdir}/${_terminfodir}/${i%/*}" "$_terminfodir/$i" done |