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) |