Linux/Linux_Device_Drivers
kernel symbol (커널 심볼) 확인
반응형
./out/target/product/mako/obj/KERNEL_OBJ/vmlinux
vmlinux에서 확인 (압축되지 않은 debugging용으로 존재하는 linux kernel image)
zImage는 압축된 것 (ELF format이아님)
readelf -s vmlinux | grep -ie xxxx
다음과 같이 symbol들이 포함됨을확인할 수 있다.
13000: c033a0c8 28 FUNC LOCAL DEFAULT 2 xxxx_open
13011: c033a1c4 340 FUNC LOCAL DEFAULT 2 xxxx_isr
13041: c033a750 132 FUNC LOCAL DEFAULT 2 xxxx_release
...
반응형
'Linux > Linux_Device_Drivers' 카테고리의 다른 글
character device driver - allocating fixed number of major number (메이저 넘버 강제 - 고정 - 할당) (0) | 2015.05.31 |
---|---|
Kernel device driver 추가 (0) | 2015.05.31 |
Linux input device driver (인풋 디바이스 드라이버) (0) | 2015.03.10 |
MTD (Memory Technology Devices) (0) | 2015.03.10 |
Linux Device Driver (0) | 2015.03.10 |
댓글