QEMU i486: Minor updates to VGA driver
This commit is contained in:
parent
497939da0f
commit
c86c40f4e4
@ -19,4 +19,10 @@ config QEMU_VGA
|
|||||||
---help---
|
---help---
|
||||||
Enable support for the QEMU VGA. See qemu_vga.h for interfaces.
|
Enable support for the QEMU VGA. See qemu_vga.h for interfaces.
|
||||||
|
|
||||||
|
NOTE: This VGA driver exports a character driver that can be used
|
||||||
|
to write into the VGA framebuffer. It does *NOT* support a NuttX
|
||||||
|
framebuffer interfaces and, hence, cannot be used with the NuttX
|
||||||
|
graphics subsystem. Such a conversion to the standard NuttX
|
||||||
|
framebuffer interface would, however, not be a big job.
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
@ -458,6 +458,9 @@ static off_t vga_seek(FAR struct file *filp, off_t offset, int whence)
|
|||||||
case SEEK_END: /* From the end of the file */
|
case SEEK_END: /* From the end of the file */
|
||||||
newpos = (VGA_FBSIZE - 1) - offset;
|
newpos = (VGA_FBSIZE - 1) - offset;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
return g_curpos;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Make sure that the new cursor position lies within the frame buffer */
|
/* Make sure that the new cursor position lies within the frame buffer */
|
||||||
|
Loading…
Reference in New Issue
Block a user