From owner-freebsd-hackers Mon Jun 22 10:12:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA06462 for freebsd-hackers-outgoing; Mon, 22 Jun 1998 10:12:28 -0700 (PDT) (envelope-from owner-freebsd-hackers@FreeBSD.ORG) Received: from nest.bistbn.com (yury@nest.bistbn.com [209.88.174.52]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA06388 for ; Mon, 22 Jun 1998 10:11:51 -0700 (PDT) (envelope-from yury@nest.bistbn.com) Received: (from yury@localhost) by nest.bistbn.com (8.8.8/8.8.8) id UAA20993 for freebsd-hackers@freebsd.org; Mon, 22 Jun 1998 20:11:45 +0300 (IDT) (envelope-from yury) From: Yuri Krichevsky Message-Id: <199806221711.UAA20993@nest.bistbn.com> Subject: Re: Quick question on syscons In-Reply-To: <199806220137.SAA02686@antipodes.cdrom.com> from Mike Smith at "Jun 22, 98 04:37:30 am" To: freebsd-hackers@FreeBSD.ORG Date: Mon, 22 Jun 1998 20:11:45 +0300 (IDT) Reply-To: yury@luckynet.co.il X-Mailer: ELM [version 2.4ME+ PL38 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG According to Mike Smith: > > You need to execute "vidcontrol -m on" on every ttyv you want to be able > > to cut/paste text to/from. > > Just to point out that on more recently installed system (perhaps only > in the -current branch) the 'allscreens_flags' option in rc.conf can be > utilised to automate this, if you're not using it to set video modes. I think it should be default behavior in case of "-m" option There is no sense to enable moused only on ttyv0. Here is a small patch for /etc/rc.i386 *** rc.i386.orig Mon Jun 22 19:57:04 1998 --- rc.i386 Mon Jun 22 19:57:56 1998 *************** *** 102,108 **** if [ "X${moused_enable}" = X"YES" ] ; then echo -n ' moused' moused ${moused_flags} -p ${moused_port} -t ${moused_type} ! vidcontrol <${viddev} -m on fi echo '.' --- 102,111 ---- if [ "X${moused_enable}" = X"YES" ] ; then echo -n ' moused' moused ${moused_flags} -p ${moused_port} -t ${moused_type} ! for ttyv in /dev/ttyv* ! do ! vidcontrol <${ttyv} -m on ! done fi echo '.' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message