Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 22 Jun 1998 20:11:45 +0300 (IDT)
From:      Yuri Krichevsky <yury@nest.bistbn.com>
To:        freebsd-hackers@FreeBSD.ORG
Subject:   Re: Quick question on syscons
Message-ID:  <199806221711.UAA20993@nest.bistbn.com>
In-Reply-To: <199806220137.SAA02686@antipodes.cdrom.com> from Mike Smith at "Jun 22, 98 04:37:30 am"

next in thread | previous in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199806221711.UAA20993>