summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2002-02-14 16:08:05 +0000
committerKeith Packard <keithp@keithp.com>2002-02-14 16:08:05 +0000
commit6d8cedf68c7803330bc920cf7506727c4ad6108c (patch)
tree5972d6d982d805b10694db1be11aba4d7961808a
parent44b20bfa587def11f3127980e67ff47e695c3e51 (diff)
update kdrive manual and usagedri-20020129-merge
-rw-r--r--hw/kdrive/Xkdrive.man34
-rw-r--r--hw/kdrive/src/kdrive.c14
2 files changed, 29 insertions, 19 deletions
diff --git a/hw/kdrive/Xkdrive.man b/hw/kdrive/Xkdrive.man
index cb1e9935c..26bb28c55 100644
--- a/hw/kdrive/Xkdrive.man
+++ b/hw/kdrive/Xkdrive.man
@@ -44,32 +44,32 @@ Xserver(1)), all the
.B Xkdrive
servers accept the following options:
.TP 8
-.B -screen \fIwidth\fBx\fIheight\fR[\fBx\fIdepth\fR]\fB
-use a screen of the specified size.
-.TP 8
-.B -zaphod
-disable switching screens by moving the pointer accross a screen boundary.
-.TP 8
-.B -3button
-disable emulation of a middle mouse button by chording.
-.TP 8
-.B -2button
-enable emulation of a middle mouse button by chording.
+.B -card \fIpcmcia\fP
+use pcmcia card as additional screen.
.TP 8
.B -dumb
disable hardware acceleration.
.TP 8
+.B -origin \fIX\fP,\fIY\fP
+Locates the next screen in the Xinerama virtual screen.
+.TP 8
+.B -screen \fIwidth\fBx\fIheight\fR[\fBx\fIdepth\fR[\fBx\fIfreq\fR]]\fR[\fB@\fIrotation\fR]\fB
+use a screen of the specified \fIwidth\fP, \fIheight\fP, screen \fIdepth\fP, \fIfrequency\fP, and \fIrotation\fP (0, 90, 180 and 270 are legal values).
+.TP 8
.B -softCursor
disable the hardware cursor.
.TP 8
-.B -card \fIcard\fB
-not documented.
-.TP 8
.B -videoTest
-not documented.
+start the server, pause momentarily, and exit.
.TP 8
-.B -standalone
-not documented.
+.B -zaphod
+disable switching screens by moving the pointer across a screen boundary.
+.TP 8
+.B -2button
+enable emulation of a middle mouse button by chording.
+.TP 8
+.B -3button
+disable emulation of a middle mouse button by chording.
.SH SEE ALSO
X(__miscmansuffix__), Xserver(1), xdm(1), xinit(1), Xvesa(1), Xfbdev(1).
.SH AUTHORS
diff --git a/hw/kdrive/src/kdrive.c b/hw/kdrive/src/kdrive.c
index d88f549f0..de98ed7a3 100644
--- a/hw/kdrive/src/kdrive.c
+++ b/hw/kdrive/src/kdrive.c
@@ -327,6 +327,18 @@ AbortDDX(void)
void
ddxUseMsg()
{
+ ErrorF("\nTinyX Device Dependent Usage:\n");
+ ErrorF("-card pcmcia Use PCMCIA card as additional screen\n");
+ ErrorF("-screen WIDTHxHEIGHT[xDEPTH[xFREQ]][@ROTATION] Specify screen characteristics\n");
+ ErrorF("-zaphod Disable cursor screen switching\n");
+ ErrorF("-2button Emulate 3 button mouse\n");
+ ErrorF("-3button Disable 3 button mouse emulation\n");
+ ErrorF("-dumb Disable hardware acceleration\n");
+ ErrorF("-softCursor Force software cursor\n");
+ ErrorF("-videoTest Start the server, pause momentarily and exit\n");
+ ErrorF("-origin X,Y Locates the next screen in the the virtual screen (Xinerama)\n");
+ ErrorF("-mouse path[,n] Filename of mouse device, n is number of buttons\n");
+ ErrorF("\n");
}
void
@@ -632,8 +644,6 @@ KdProcessArgument (int argc, char **argv, int i)
kdVideoTest = TRUE;
return 1;
}
- if (!strcmp (argv[i], "-standalone"))
- return 1;
if (!strcmp (argv[i], "-origin"))
{
if ((i+1) < argc)