Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 21 Aug 1998 03:30:01 -0700 (PDT)
From:      Sheldon Hearn <axl@iafrica.com>
To:        freebsd-bugs@FreeBSD.ORG
Subject:   Re: i386/7695: rc.i386 only enables mouse support for ttyv0
Message-ID:  <199808211030.DAA01856@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR i386/7695; it has been noted by GNATS.

From: Sheldon Hearn <axl@iafrica.com>
To: freebsd-gnats-submit@freebsd.org
Cc:  Subject: Re: i386/7695: rc.i386 only enables mouse support for ttyv0
Date: Fri, 21 Aug 1998 12:24:38 +0200

 What a pity. The patch is buggered by an unwanted space in the regular
 expression. Please ignore previous patch and apply this one instead.
 
 --- src/etc/etc.i386/rc.i386.ORIG	Thu Aug 20 19:26:28 1998
 +++ src/etc/etc.i386/rc.i386	Thu Aug 20 19:26:44 1998
 @@ -102,7 +102,9 @@
  if [ "X${moused_enable}" = X"YES" ] ; then
  	echo -n ' moused'
  	moused ${moused_flags} -p ${moused_port} -t ${moused_type}
 -	vidcontrol <${viddev} -m on
 +        for i in `grep "^ttyv.*getty Pc.*\bon\b" /etc/ttys|cut -f 1` ; do
 +                vidcontrol </dev/$i -m on
 +        done
  fi
  echo '.'
  

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-bugs" in the body of the message



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