modified: README.md

This commit is contained in:
2025-12-20 17:03:58 +00:00
parent ba0dfc1ced
commit 159e2fcf17

View File

@@ -321,21 +321,12 @@ For now:
- i have to execute this after each kernel update; - i have to execute this after each kernel update;
- And automatic setup from original repo not working; - And automatic setup from original repo not working;
Instructions based on original repo readme:
```bash ```bash
apt install dkms apt install dkms
apt install proxmox-headers-$(uname -r) apt install proxmox-headers-$(uname -r)
git clone https://github.com/stanford-scs/hid-g20s.git git clone https://github.com/stanford-scs/hid-g20s.git
cd hid-g20s cd hid-g20s
sudo mkdir -p /usr/src/hid-g20s-1.0 ./install.sh
sudo cp hid-g20s.c Makefile dkms.conf /usr/src/hid-g20s-1.0/
sudo cp 99-hid-g20s.rules /etc/udev/rules.d/
sudo udevadm control --reload-rules
sudo dkms add -m hid-g20s -v 1.0
sudo dkms build -m hid-g20s -v 1.0
sudo dkms install -m hid-g20s -v 1.0
sudo modprobe hid-g20s
``` ```
**Confirm everything is ok:** **Confirm everything is ok:**
@@ -393,6 +384,10 @@ done
echo "Restarting Bluethooth" echo "Restarting Bluethooth"
# Restart Bluetooth to trigger HID rebind # Restart Bluetooth to trigger HID rebind
systemctl restart bluetooth systemctl restart bluetooth
# bluetooth not starting correctly
# error "src/adv_monitor.c:btd_adv_monitor_power_down() Unexpected NULL btd_adv_monitor_manager ob>"
hciconfig hci0 down
hciconfig hci0 up
``` ```
```bash ```bash