mkdev.ida
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #!/bin/sh
  2. # Script to create device nodes for SMART array controllers
  3. # Usage:
  4. # mkdev.ida [num controllers] [num log volumes] [num partitions]
  5. #
  6. # With no arguments, the script assumes 1 controller, 16 logical volumes,
  7. # and 16 partitions/volume, which is adequate for most configurations.
  8. #
  9. # If you had 5 controllers and were planning on no more than 4 logical volumes
  10. # each, using a maximum of 8 partitions per volume, you could say:
  11. #
  12. # mkdev.ida 5 4 8
  13. #
  14. # Of course, this has no real benefit over "mkdev.ida 5" except that it
  15. # doesn't create so many device nodes in /dev/ida.
  16. NR_CTLR=${1-1}
  17. NR_VOL=${2-16}
  18. NR_PART=${3-16}
  19. if [ ! -d /dev/ida ]; then
  20. mkdir -p /dev/ida
  21. fi
  22. C=0; while [ $C -lt $NR_CTLR ]; do
  23. MAJ=`expr $C + 72`
  24. D=0; while [ $D -lt $NR_VOL ]; do
  25. P=0; while [ $P -lt $NR_PART ]; do
  26. MIN=`expr $D * 16 + $P`
  27. if [ $P -eq 0 ]; then
  28. mknod /dev/ida/c${C}d${D} b $MAJ $MIN
  29. else
  30. mknod /dev/ida/c${C}d${D}p${P} b $MAJ $MIN
  31. fi
  32. P=`expr $P + 1`
  33. done
  34. D=`expr $D + 1`
  35. done
  36. C=`expr $C + 1`
  37. done