From owner-cvs-src-old@FreeBSD.ORG Thu Sep 24 20:33:36 2009 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 833AE1065676 for ; Thu, 24 Sep 2009 20:33:36 +0000 (UTC) (envelope-from ed@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 713248FC1E for ; Thu, 24 Sep 2009 20:33:36 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n8OKXaVX079016 for ; Thu, 24 Sep 2009 20:33:36 GMT (envelope-from ed@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n8OKXaQE079015 for cvs-src-old@freebsd.org; Thu, 24 Sep 2009 20:33:36 GMT (envelope-from ed@repoman.freebsd.org) Message-Id: <200909242033.n8OKXaQE079015@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to ed@repoman.freebsd.org using -f From: Ed Schouten Date: Thu, 24 Sep 2009 20:33:14 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/teken teken.c teken.h teken_scs.h teken_subr.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Sep 2009 20:33:36 -0000 ed 2009-09-24 20:33:14 UTC FreeBSD src repository Modified files: sys/teken teken.c teken.h teken_scs.h teken_subr.h Log: SVN rev 197470 on 2009-09-24 20:33:14Z by ed Make SCS work in 8-bit mode. This means we can finally do things like VT100 box drawing when using Syscons (8-bit characters). As far as I know, the only remaining issue is the absense of proper escape sequences for special keyboard characters (cursor, F1 to F12, etc) and xterm emulation should be ready for general use. Enabling xterm would have the following advantages: - Easier possible migration to Unicode. cons25 termcap entries are very 8-bit centric. They use things like CP437 characters for box drawing, etc. - Better support for SSH'ing to other operating systems/devices. Most switches use VT100-style admin interfaces. - Reduced bandwidth, because applications can now use things like scrolling regions. - You can finally use applications like dtach(1) on both the console and inside an xterm. Revision Changes Path 1.7 +4 -4 src/sys/teken/teken.c 1.5 +1 -1 src/sys/teken/teken.h 1.2 +17 -7 src/sys/teken/teken_scs.h 1.5 +2 -1 src/sys/teken/teken_subr.h