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

嵌入式Linux

开发平台:

C/C++

  1. #!/bin/sh
  2. module="scullv"
  3. device="scullv"
  4. mode="664"
  5. # Group: since distributions do it differently, look for wheel or use staff
  6. if grep '^staff:' /etc/group > /dev/null; then
  7.     group="staff"
  8. else
  9.     group="wheel"
  10. fi
  11. # remove stale nodes
  12. rm -f /dev/${device}? 
  13. # invoke insmod with all arguments we got
  14. # and use a pathname, as newer modutils don't look in . by default
  15. /sbin/insmod -f ./$module.o $* || exit 1
  16. major=`cat /proc/devices | awk "\$2=="$module" {print \$1}"`
  17. mknod /dev/${device}0 c $major 0
  18. mknod /dev/${device}1 c $major 1
  19. mknod /dev/${device}2 c $major 2
  20. mknod /dev/${device}3 c $major 3
  21. ln -sf ${device}0  /dev/${device}
  22. # give appropriate group/permissions
  23. chgrp $group /dev/${device}[0-3]
  24. chmod $mode  /dev/${device}[0-3]