From 01afd5703e89ac0ae5e55ad62cc3145e15a61d5e Mon Sep 17 00:00:00 2001 From: Maxim Devaev Date: Tue, 28 Jul 2020 17:20:04 +0300 Subject: [PATCH] Update README.md --- README.md | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index ea8f30b0..31d85ff2 100644 --- a/README.md +++ b/README.md @@ -351,24 +351,24 @@ The Pi-KVM OS is based on Arch Linux ARM and contains all the required packages Please note: **we strongly discourage the use of VNC on untrusted networks.** The current implementation does not use encryption, and your passwords are transmitted over the network in a plain text. The existing anonymous TLS mode is also not secure enough. * To use Arduino HID with **v2** platform: - 1. Build and connect HID according to the [diagram](#v0-diagram). - 2. Switch to RW-mode using command `rw`. - 3. Add these lines to `/etc/kvmd/override.yaml` (remove `{}` in the file before): - ```yaml - kvmd: - hid: - type: serial - reset_pin: 4 - device: /dev/kvmd-hid - ``` - 4. Add this line to `/etc/udev/rules.d/99-kvmd.rules`: - ```udev - KERNEL=="ttyAMA0", SYMLINK+="kvmd-hid" - ``` - 5. Run `systemctl disable getty@ttyGS0.service`. - 6. Remove `console=ttyAMA0,115200` and `kgdboc=ttyAMA0,115200` from `/boot/cmdline.txt`. - 7. Flash the Arduino (see [here](#building-the-os), step 8). - 8. Run `reboot`. + - Build and connect HID according to the [diagram](#v0-diagram). + - Switch to RW-mode using command `rw`. + - Add these lines to `/etc/kvmd/override.yaml` (remove `{}` in the file before): + ```yaml + kvmd: + hid: + type: serial + reset_pin: 4 + device: /dev/kvmd-hid + ``` + - Add this line to `/etc/udev/rules.d/99-kvmd.rules`: + ```udev + KERNEL=="ttyAMA0", SYMLINK+="kvmd-hid" + ``` + - Run `systemctl disable getty@ttyGS0.service`. + - Remove `console=ttyAMA0,115200` and `kgdboc=ttyAMA0,115200` from `/boot/cmdline.txt`. + - Flash the Arduino (see [here](#building-the-os), step 8). + - Run `reboot`. -----