lcd_driver/install.sh
2022-06-07 16:00:49 +02:00

14 lines
211 B
Bash
Executable file

#!/bin/sh
module=lcd
device=lcd
/sbin/insmod ./$module.ko $* || exit 1
rm -rf /dev/$device
major=$(awk "\$2 == \"$module\" { print \$1 }" /proc/devices)
mknod /dev/$device c $major 0
chmod 664 /dev/$device