scullp_load
上传用户:wudi5211
上传日期:2010-01-21
资源大小:607k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

C/C++

  1. #!/bin/sh
  2. module="scullp"
  3. device="scullp"
  4. group="wheel"
  5. mode="664"
  6. # remove stale nodes
  7. rm -f /dev/${device}? 
  8. # invoke insmod with all arguments we got
  9. /sbin/insmod -f $module $* || exit 1
  10. major=`cat /proc/devices | awk "\$2=="$module" {print \$1}"`
  11. mknod /dev/${device}0 c $major 0
  12. mknod /dev/${device}1 c $major 1
  13. mknod /dev/${device}2 c $major 2
  14. mknod /dev/${device}3 c $major 3
  15. ln -sf ${device}0  /dev/${device}
  16. # give appropriate group/permissions
  17. chgrp $group /dev/${device}[0-3]
  18. chmod $mode  /dev/${device}[0-3]