diff options
author | Lennart Poettering <lennart@poettering.net> | 2011-01-04 21:45:52 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2011-01-04 21:45:52 +0100 |
commit | 60b4f27794f3f3b5bd1c67b42d09eb4c21838aed (patch) | |
tree | 13ab4e2dd938d9edee4d8bb24a7f0e76f97d27f7 /src | |
parent | 75d12d5767c7788f86ca782ef459dee8e157c72e (diff) |
serial: use TERM=vt100 instead of TERM=vt100-nav
TERM=vt100-nav was necessary for compat with some ppc hvc devices, a
long time ago. Unfortunately vt100-nav terminfo is not installed by
default on most distros, hence change the default to v100 which is
available universally and still should be a relatively safe and
conservative default.
Should it turn out that vt100 is not really the best choice we can
revert this change again and then ask distros to move vt100-nav into
their default install.
Diffstat (limited to 'src')
-rw-r--r-- | src/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.c b/src/util.c index 2c7b1f9a56..08bdec223e 100644 --- a/src/util.c +++ b/src/util.c @@ -3521,7 +3521,7 @@ const char *default_term_for_tty(const char *tty) { /* FIXME: Proper handling of /dev/console would be cool */ - return "TERM=vt100-nav"; + return "TERM=vt100"; } static const char *const ioprio_class_table[] = { |