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

嵌入式Linux

开发平台:

C/C++

  1. #!/bin/sh
  2. module="spull"
  3. device="pd"
  4. group="wheel"
  5. mode="664"
  6. # invoke insmod with all arguments we got
  7. /sbin/insmod -f $module $* || exit 1
  8. major=`cat /proc/devices | awk "\$2=="$module" {print \$1}"`
  9. # Remove stale nodes and replace them, then give gid and perms
  10. # Usually the script is shorter, it's scull that has several devices in it.
  11. rm -f /dev/${device}[a-d][0-8] /dev/${device}[a-d]
  12. for p in "" 1 2 3 4 5 6 7 8; do
  13. n=$p; if [ "$n" = "" ]; then n=0; fi
  14. mknod /dev/${device}a${p} b $major $n
  15. mknod /dev/${device}b${p} b $major `expr 16 + $n`
  16. mknod /dev/${device}c${p} b $major `expr 32 + $n`
  17. mknod /dev/${device}d${p} b $major `expr 48 + $n`
  18. done
  19. chgrp $group /dev/${device}[a-d][0-8]  /dev/${device}[a-d]
  20. chmod $mode  /dev/${device}[a-d][0-8]  /dev/${device}[a-d]