commit d1edce71135cc6d98c0a4b5729774542b676e769 Author: sophgo-forum-service <forum_service@sophgo.com> Date: Fri Mar 15 16:07:33 2024 +0800 [fix] recommend using ssh method to clone repo. [fix] fix sensor driver repo branch name.
26 lines
641 B
Bash
Executable File
26 lines
641 B
Bash
Executable File
#!/bin/sh
|
|
|
|
module="cvi_tpu"
|
|
device="cvi-tpu0"
|
|
mode="664"
|
|
|
|
# Group: since distributions do it differently, look for wheel or use staff
|
|
if grep '^staff:' /etc/group > /dev/null; then
|
|
group="staff"
|
|
else
|
|
group="wheel"
|
|
fi
|
|
|
|
# invoke insmod with all arguments we got
|
|
# and use a pathname, as newer modutils don't look in . by default
|
|
insmod /lib/modules/$module.ko $* || exit 1
|
|
|
|
major=`cat /proc/devices | awk "\\$2==\"cvi-tpu\" {print \\$1}"`
|
|
|
|
# Remove stale nodes and replace them, then give gid and perms
|
|
# Usually the script is shorter, it's simple that has several devices in it.
|
|
|
|
rm -f /dev/${device}
|
|
mknod /dev/${device} c $major 0
|
|
|