From owner-cvs-sys Tue Aug 19 00:27:30 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id AAA18466 for cvs-sys-outgoing; Tue, 19 Aug 1997 00:27:30 -0700 (PDT) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id AAA18460; Tue, 19 Aug 1997 00:27:19 -0700 (PDT) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.5/8.6.9) id RAA00093; Tue, 19 Aug 1997 17:25:57 +1000 Date: Tue, 19 Aug 1997 17:25:57 +1000 From: Bruce Evans Message-Id: <199708190725.RAA00093@godzilla.zeta.org.au> To: cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-sys@FreeBSD.ORG, joerg@FreeBSD.ORG Subject: Re: cvs commit: src/sys/ddb db_input.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > Modified files: > sys/ddb db_input.c > Log: > Minor hack to also allow for syscons's "interesting" arrow keys. > > I'm using "#if __i386__ && __FreeBSD__" to check for a ``potentially > syscons-relevant environment''. Hope that's ok... Nope, sys/ddb is for the "machine-independent" parts of ddb. The machine-dependent parts were in sys/i386/i386 and sys/i386/include. I think arrow keys just shouldn't be supported. Similarly in userconfig. You need termcap in the kernel to support them properly :-(. Bruce