On Tue, 03 July 2001, [EMAIL PROTECTED] wrote:
>
> (sorry if this appears twice, I'm using a web-based
> email client that might have led me to sending this
> twice)
>
> Before I begin, I'm not sure if this is an Agenda
> problem, a Linux-VR problem, or a general Linux problem.
>
> Anyway, I've setup my VR3 to run PicoGUI when it boots
> (using /etc/inittab) in a very similar way to the Helio
> port of PicoGUI. However, it seems to be conflicting
> with the console (that displayed all the messages while
> booting). After pgserver starts I can still see the
> cursor from the console blinking. It inverts a little
> rectangle in one of the corners repeatedly.
This happened on the Helio also. Taking a hint from the vhl-tools W Windows patches, I
added the following chunk of code to fbdev.c to fix this on the Helio:
------8<------
/* Put the console into graphics-only mode */
#ifdef CONFIG_LINUX_MIPS
/* horrible hack (from wserver's linux.c) */
{
int xx = open("/dev/tty1", O_RDWR);
if (xx >= 0) {
ioctl(xx, KDSETMODE, KD_GRAPHICS);
close(xx);
}
}
#endif
------>8------
This is indeed just a hack, though, so I suppose it doesn't work on the VR3 too. I'd
suggest checking the X server source code to see how it disables the VR3 text console.
> Once I
> suspend the unit and unsuspend it, PicoGUI no longer
> has a background displayed. It's replaced by the text
> that was displayed as Linux booted (ie. you can see the
> console again with its cursor flashing). I know that
> PicoGUI is still running, though, because I can still
> move the mouse cursor using the touch screen.
The X server probably has code to fix this too.
>
> Any help would be greatly appreciated (debugging this
> is really starting to suck, as it takes roughly 30
> minutes just to test each change to the file system).
Well, hopefully I'll be getting a VR3d soon so I'll be able to help :)
>
> -Sean
>
>
> _______________________________________________
> Pgui-devel mailing list
> [EMAIL PROTECTED]
> http://lists.sourceforge.net/lists/listinfo/pgui-devel
--
To the systems programmer, users and applications serve only to provide a
test load.
_______________________________________________
Pgui-devel mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/pgui-devel