mirror of
https://github.com/m42uko/linux-fsia6b.git
synced 2022-05-12 18:36:03 +02:00
11 lines
185 B
Bash
Executable File
11 lines
185 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "`whoami`" != "root" ]; then
|
|
echo "Need to be root."
|
|
exit 1
|
|
fi
|
|
|
|
modprobe serio
|
|
insmod fsia6b.ko
|
|
./linuxconsole/utils/inputattach --baud 115200 --fsia6b /dev/ttyUSB0
|