본문 바로가기
Linux System/Linux Kernel

runtime에 target board kernel의 config 확인

by rewyear 2022. 9. 14.
커널을 빌드하는 host 환경이 아닌 실행중인 target board에서 해당 kernel image에 적용된 config를 확인할 수 있는 방법

 

/proc 디렉토리 아래 config.gz로 해당 커널 image의 config가 압축되어 config.gz파일로 존재

이를 압축 해제하게 되면 해당 image의 kernel config를 확인할 수 있음

 

하기 명령은 압축해제한 config를 running.config에 저장

cat /proc/config.gz | gunzip > /tmp/running.config

 

압축 해제한 config 확인

vi /tmp/running.config
#
# Automatically generated file; DO NOT EDIT.
# Linux/arm64 4.14.202 Kernel Configuration
#
CONFIG_ARM64=y
CONFIG_64BIT=y

...

 

300x250

'Linux System > Linux Kernel' 카테고리의 다른 글

Kernel Panic Calltrace 분석  (0) 2024.02.08
[Kernel] Timer  (0) 2023.02.11
User Space와 Kernel Space  (0) 2022.08.17
Device Driver - Atomic  (0) 2022.05.23
Kernel Build  (0) 2022.03.03