major number 가 10번인 misc에 대한 정보를 확인할 수 있다.
[root@linux2 proc]# cat /proc/misc
63 device-mapper
175 agpgart
228 hpet
135 rtc
device driver 관점에서 봤을 때..
/proc는 체계적인 정보를 확인할 수 없다.
커널 2.6부터는 /sys 디렉토리가 있는데, 시스템 정보가 체계적으로 있다.
[root@linux2 class]# pwd
/sys/class
[root@linux2 class]# cd misc
[root@linux2 misc]# ls -al
합계 0
drwxr-xr-x 6 root root 0 4월 18 03:52 .
drwxr-xr-x 19 root root 0 4월 18 11:05 ..
drwxr-xr-x 2 root root 0 4월 18 03:52 agpgart
drwxr-xr-x 2 root root 0 4월 18 03:52 device-mapper
drwxr-xr-x 2 root root 0 4월 18 03:52 hpet
drwxr-xr-x 2 root root 0 4월 18 03:52 rtc
[root@linux2 misc]# cd rtc
[root@linux2 rtc]# ls -al
합계 0
drwxr-xr-x 2 root root 0 4월 18 03:52 .
drwxr-xr-x 6 root root 0 4월 18 03:52 ..
-r--r--r-- 1 root root 4096 4월 20 14:35 dev
[root@linux2 rtc]# cat dev
10:135
sys파일 시스템은 안드로이드와 전력관리할 때 많이 사용되기도 한다고 한다..
'c or linux' 카테고리의 다른 글
CPU 구성요소 (0) | 2011.04.20 |
---|---|
[공부중] OS Timer 예제 - interrupt (0) | 2011.04.20 |
[공부중] 커널 타이머 (0) | 2011.04.20 |
[공부중] minor number 기반으로 다루기 (0) | 2011.04.20 |
[공부중] memory mapped / io mapped (0) | 2011.04.19 |