Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 156825 | Differences between
and this patch

Collapse All | Expand All

(-)xserver/hw/kdrive/fbdev/fbinit.c~ (-1 / +6 lines)
Lines 28-33 Link Here
28
#endif
28
#endif
29
#include <fbdev.h>
29
#include <fbdev.h>
30
30
31
extern int use_evdev;
32
31
void
33
void
32
InitCard (char *name)
34
InitCard (char *name)
33
{
35
{
Lines 45-51 Link Here
45
void
47
void
46
InitInput (int argc, char **argv)
48
InitInput (int argc, char **argv)
47
{
49
{
48
    KdInitInput (&LinuxMouseFuncs, &LinuxKeyboardFuncs);
50
    if (use_evdev)
51
        KdInitInput (&LinuxEvdevMouseFuncs, &LinuxEvdevKeyboardFuncs);
52
    else
53
        KdInitInput (&LinuxMouseFuncs, &LinuxKeyboardFuncs);
49
#ifdef TOUCHSCREEN
54
#ifdef TOUCHSCREEN
50
    KdAddMouseDriver (&TsFuncs);
55
    KdAddMouseDriver (&TsFuncs);
51
#endif
56
#endif
(-)xserver/hw/kdrive/src/kdrive.c.orig (+8 lines)
Lines 44-49 Link Here
44
#include "dpmsproc.h"
44
#include "dpmsproc.h"
45
#endif
45
#endif
46
46
47
int use_evdev = 0;
48
47
typedef struct _kdDepths {
49
typedef struct _kdDepths {
48
    CARD8   depth;
50
    CARD8   depth;
49
    CARD8   bpp;
51
    CARD8   bpp;
Lines 687-692 Link Here
687
    ErrorF("-videoTest       Start the server, pause momentarily and exit\n");
689
    ErrorF("-videoTest       Start the server, pause momentarily and exit\n");
688
    ErrorF("-origin X,Y      Locates the next screen in the the virtual screen (Xinerama)\n");
690
    ErrorF("-origin X,Y      Locates the next screen in the the virtual screen (Xinerama)\n");
689
    ErrorF("-mouse path[,n]  Filename of mouse device, n is number of buttons\n");
691
    ErrorF("-mouse path[,n]  Filename of mouse device, n is number of buttons\n");
692
    ErrorF("-use-evdev       Use Linux evdev input\n");
690
    ErrorF("-switchCmd       Command to execute on vt switch\n");
693
    ErrorF("-switchCmd       Command to execute on vt switch\n");
691
    ErrorF("-nozap           Don't terminate server on Ctrl+Alt+Backspace\n");
694
    ErrorF("-nozap           Don't terminate server on Ctrl+Alt+Backspace\n");
692
    ErrorF("vtxx             Use virtual terminal xx instead of the next available\n");
695
    ErrorF("vtxx             Use virtual terminal xx instead of the next available\n");
Lines 796-801 Link Here
796
	    UseMsg ();
799
	    UseMsg ();
797
	return 2;
800
	return 2;
798
    }
801
    }
802
    if (!strcmp (argv[i], "-use-evdev"))
803
    {
804
	use_evdev = 1;
805
	return 1;
806
    }
799
    if (!strcmp (argv[i], "-keyboard"))
807
    if (!strcmp (argv[i], "-keyboard"))
800
    {
808
    {
801
	if ((i+1) < argc)
809
	if ((i+1) < argc)

Return to bug 156825