diff options
author | ed <ed@FreeBSD.org> | 2009-11-13 11:28:54 +0000 |
---|---|---|
committer | ed <ed@FreeBSD.org> | 2009-11-13 11:28:54 +0000 |
commit | a53dc193764a8928da88e20397e66f2899792aca (patch) | |
tree | b86fe80f8a708abb928d56e967531b8056ab7e4e /sys/dev/syscons | |
parent | 4e6819803d8a0f9bc9f4706e17f512d154faaecc (diff) | |
download | FreeBSD-src-a53dc193764a8928da88e20397e66f2899792aca.zip FreeBSD-src-a53dc193764a8928da88e20397e66f2899792aca.tar.gz |
Convert syscons on i386 to TERM=xterm.
TEKEN_XTERM is now gone. Because we always use xterm mode now, we only
need a TEKEN_CONS25 switch to go back to cons25.
Diffstat (limited to 'sys/dev/syscons')
-rw-r--r-- | sys/dev/syscons/scterm-teken.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/sys/dev/syscons/scterm-teken.c b/sys/dev/syscons/scterm-teken.c index fe8a186..1d110ab9 100644 --- a/sys/dev/syscons/scterm-teken.c +++ b/sys/dev/syscons/scterm-teken.c @@ -50,15 +50,6 @@ __FBSDID("$FreeBSD$"); #include <teken/teken.h> -#if defined(TEKEN_XTERM) && defined(TEKEN_CONS25) -#error "xterm and cons25 are mutually exclusive." -#endif - -/* XXX: Use cons25 on i386, for compatibility with pc98. */ -#if defined(__i386__) && !defined(TEKEN_XTERM) && !defined(TEKEN_CONS25) -#define TEKEN_CONS25 -#endif - static void scteken_revattr(unsigned char, teken_attr_t *); static unsigned int scteken_attr(const teken_attr_t *); |