diff options
-rw-r--r-- | Hurd/Xfree86.mdwn | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Hurd/Xfree86.mdwn b/Hurd/Xfree86.mdwn index 347ca47b..0ed517ea 100644 --- a/Hurd/Xfree86.mdwn +++ b/Hurd/Xfree86.mdwn @@ -13,13 +13,13 @@ First, set up the keyboard translator: Then the mouse translator. For a serial port mouse this is along the lines of: - # settrans /dev/mouse /hurd/mouse --device=com0 --protocol=microsoft + # settrans -c /dev/mouse /hurd/mouse --device=com0 --protocol=microsoft Make sure that `/dev/com0` actually exists. If it does not, create it using `MAKEDEV` in the usual fashion. PS/2 mice do not require a device. It is simple a matter of: - # settrans /dev/mouse /hurd/mouse --protocol=ps/2 + # settrans -c /dev/mouse /hurd/mouse --protocol=ps/2 For other mice, run `/hurd/mouse --help` to get a listing of supported types. |