diff options
author | Poul-Henning Kamp <phk@FreeBSD.org> | 1998-02-12 22:05:08 +0000 |
---|---|---|
committer | Poul-Henning Kamp <phk@FreeBSD.org> | 1998-02-12 22:05:08 +0000 |
commit | 8a69c85a7ea2daa19c377b2267a4e4924a85c801 (patch) | |
tree | b702476dd85acac421ff0ee9511b16a9e1d5b8dc /sys/dev/syscons/syscons.h | |
parent | 045b6fefd86fb0589b7927cef51cc569d5947035 (diff) |
Add support for VESA mode 0x102 (800x600x4) in syscons. You can activate
this using option "-b" to the boot blocks. It is smartest to compile
a font into your kernel (See LINT), but not mandatory, but apart from
the cursor you will see nothing on the screen until you load a font.
This mode allows XF86_VGA16 to run in 800x600 mode on otherwise unsupported
graphics hardware.
A number of buglets in the cursor handling in syscons may become
visible this way.
Notes
Notes:
svn path=/head/; revision=33283
Diffstat (limited to 'sys/dev/syscons/syscons.h')
-rw-r--r-- | sys/dev/syscons/syscons.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/syscons/syscons.h b/sys/dev/syscons/syscons.h index 1e0176986a0b..bbb8a1c56e15 100644 --- a/sys/dev/syscons/syscons.h +++ b/sys/dev/syscons/syscons.h @@ -25,7 +25,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. * - * $Id: syscons.h,v 1.35 1997/10/23 03:23:50 yokota Exp $ + * $Id: syscons.h,v 1.36 1997/11/21 11:37:07 yokota Exp $ */ #ifndef _I386_ISA_SYSCONS_H_ @@ -48,7 +48,7 @@ } #define mark_all(scp) {\ scp->start = 0;\ - scp->end = scp->xsize * scp->ysize;\ + scp->end = scp->xsize * scp->ysize - 1;\ } /* status flags */ |