pci550x_load

来自「linux下面」· 代码 · 共 27 行

TXT
27
字号
#!/bin/bashmodule="pci550x"device="pci550x"mode="664"# invoke insmod with all arguments we were passed/sbin/insmod /lib/modules/`uname -r`/misc/$module.o $* || exit 1# remove stale nodesrm -f /dev/${device}[0-3]major=`awk "\\$2==\"$module\" {print \\$1}" /proc/devices`mknod /dev/${device}0 c $major 0mknod /dev/${device}1 c $major 1mknod /dev/${device}2 c $major 2mknod /dev/${device}3 c $major 3# give appropriate group/permissions, and change the group# not all distributions have staff; some have "users" insteadgroup="staff"grep '^staff:' /etc/group > /dev/null || group="users"chgrp $group /dev/${device}[0-3]chmod $mode  /dev/${device}[0-3]

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?