⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 load

📁 Linux 内核版本2.6.15下的pmac运动控制卡驱动源程序
💻
字号:
#!/bin/shmodule="pmacisa"device="pmacisa"mode="664"# Group: since distributions do it differently, look for wheel or use staffif grep '^staff:' /etc/group > /dev/null; then    group="staff"else    group="wheel"fi# invoke modprobe with all arguments we got/sbin/modprobe $modulemajor=`cat /proc/devices | awk "\\$2==\"$module\" {print \\$1}"`# Create 8 entry points, as PMAC_NO is 8 by defaultrm -f /dev/${device}[0-7]mknod /dev/${device}0 c $major 0mknod /dev/${device}1 c $major 1mknod /dev/${device}2 c $major 2mknod /dev/${device}3 c $major 3mknod /dev/${device}4 c $major 4mknod /dev/${device}5 c $major 5mknod /dev/${device}6 c $major 6mknod /dev/${device}7 c $major 7chgrp $group /dev/${device}[0-7]chmod $mode  /dev/${device}[0-7]

⌨️ 快捷键说明

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