最終更新:2015-07-18 (土) 00:17:47 (3205d)  

CONFIG_IKCONFIG_PROC
Top / CONFIG_IKCONFIG_PROC

これを有効にするとLinux/proc/config.gzで稼働中のkernel設定が見られるようになる。

  • make menuconfigでいうと、 General setup → Enable access to .config through /proc/config.gz
  • CONFIG_IKCONFIGを有効にしないと選択できない。

メモ

  • CONFIG_IKCONFIG - make menuconfigでいうと、 General setup → Kernel .config support
    • これを有効にするとkernel設定の内容がkernelイメージに含まれるようになる。

init/Kconfig

config IKCONFIG_PROC
	bool "Enable access to .config through /proc/config.gz"
	depends on IKCONFIG && PROC_FS
	---help---
	  This option enables access to the kernel configuration file
	  through /proc/config.gz.

関連