I'm into something about writing a "Mock GPU driver" for Linux based systems. What I mean is that, simply I want to write a driver (Behind X-server obviously) to answer X's API calls with some debugging messages.
In other words I want to fool Linux about having an actual GPU. So I can make a test-bed for GUI-accelerated packages in console based systems.
Right now, if I execute a GUI-accelerated package in Linux console based systems; it'll simply dies due to lack of a real GPU (or a GPU driver better I'd say).
So I want to know:
- Is it even possible? (Writing a GPU driver to fool Linux about having an actual GPU)
- What resources do you recommend before getting my hands dirty in code?
- Is there any similar projects around the net?
PS: I'm an experienced ANSI-C programmer but I don't have any clue in real Kernel/Driver development under *nix (read some tutorials about USB driver development though), so any resources about these areas will be really appreciated as well. Thanks in advance.
Xvfb(manpage). If you're not afraid of some bash, you can look at Gentoo's virtualx.eclass for an example of use (there it is used to run tests which require X11). – Michał Górny Jul 26 '12 at 16:26