Re: Changes to vesa.c

2001-09-18 Thread John Baldwin


On 18-Sep-01 Julian Elischer wrote:
> yes.. exactly..
> should I delete it or will you :-)
> (it was to allow a hacked X server to use strange resolution.)
> (not needed any more anyhow)

You can. :)  Just curious what it was doing there is all.

-- 

John Baldwin <[EMAIL PROTECTED]> -- http://www.FreeBSD.org/~jhb/
PGP Key: http://www.baldwin.cx/~john/pgpkey.asc
"Power Users Use the Power to Serve!"  -  http://www.FreeBSD.org/

To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: Changes to vesa.c

2001-09-18 Thread Julian Elischer

yes.. exactly..
should I delete it or will you :-)
(it was to allow a hacked X server to use strange resolution.)
(not needed any more anyhow)


On Tue, 18 Sep 2001, John Baldwin wrote:

> Perhaps this was something that accidentally snuck into the KSE commit?
> 
> Index: sys/i386/isa/vesa.c
> ===
> RCS file: /home/ncvs/src/sys/i386/isa/vesa.c,v
> retrieving revision 1.34
> retrieving revision 1.35
> diff -u -r1.34 -r1.35
> --- sys/i386/isa/vesa.c 2000/10/28 22:35:57 1.34
> +++ sys/i386/isa/vesa.c 2001/09/12 08:37:34 1.35
> @@ -23,7 +23,7 @@
>   * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
>   * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
>   *
> - * $FreeBSD: src/sys/i386/isa/vesa.c,v 1.34 2000/10/28 22:35:57 jhb Exp $
> + * $FreeBSD: src/sys/i386/isa/vesa.c,v 1.35 2001/09/12 08:37:34 julian Exp $
>   */
> 
>  #include "opt_vga.h"
> @@ -672,6 +672,8 @@
> continue;
>  
> /* reject unsupported modes */
> +#define DOTHIS 1
> +#ifdef DOTHIS 
>  #if 0
> if ((vmode.v_modeattr & (V_MODESUPP | V_MODEOPTINFO
> | V_MODENONVGA))
> @@ -689,6 +691,7 @@
> continue;
> }
>  #endif
> +#endif /* DOTHIS */
> 
> /* expand the array if necessary */
> if (modes >= vesa_vmode_max) {
> 
> -- 
> 
> John Baldwin <[EMAIL PROTECTED]> -- http://www.FreeBSD.org/~jhb/
> PGP Key: http://www.baldwin.cx/~john/pgpkey.asc
> "Power Users Use the Power to Serve!"  -  http://www.FreeBSD.org/
> 
> To Unsubscribe: send mail to [EMAIL PROTECTED]
> with "unsubscribe freebsd-current" in the body of the message
> 


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Changes to vesa.c

2001-09-18 Thread John Baldwin

Perhaps this was something that accidentally snuck into the KSE commit?

Index: sys/i386/isa/vesa.c
===
RCS file: /home/ncvs/src/sys/i386/isa/vesa.c,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- sys/i386/isa/vesa.c 2000/10/28 22:35:57 1.34
+++ sys/i386/isa/vesa.c 2001/09/12 08:37:34 1.35
@@ -23,7 +23,7 @@
  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  *
- * $FreeBSD: src/sys/i386/isa/vesa.c,v 1.34 2000/10/28 22:35:57 jhb Exp $
+ * $FreeBSD: src/sys/i386/isa/vesa.c,v 1.35 2001/09/12 08:37:34 julian Exp $
  */

 #include "opt_vga.h"
@@ -672,6 +672,8 @@
continue;
 
/* reject unsupported modes */
+#define DOTHIS 1
+#ifdef DOTHIS 
 #if 0
if ((vmode.v_modeattr & (V_MODESUPP | V_MODEOPTINFO
| V_MODENONVGA))
@@ -689,6 +691,7 @@
continue;
}
 #endif
+#endif /* DOTHIS */

/* expand the array if necessary */
if (modes >= vesa_vmode_max) {

-- 

John Baldwin <[EMAIL PROTECTED]> -- http://www.FreeBSD.org/~jhb/
PGP Key: http://www.baldwin.cx/~john/pgpkey.asc
"Power Users Use the Power to Serve!"  -  http://www.FreeBSD.org/

To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message