lcd_driver/install.sh

14 lines
211 B
Bash
Raw Permalink Normal View History

2022-06-06 19:59:25 +00:00
#!/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