config.in

来自「用于生成linux操作系统下的交叉编译工具链和嵌入式linux系统的根文件系统,」· IN 代码 · 共 36 行

IN
36
字号
# Choose the kernel headers to use for kernel-headers target. This is# ignored if you are building your own kernel or using the system kernel.#comment "Kernel Header Options"choice	prompt "Kernel Headers"	default BR2_KERNEL_HEADERS_2_4_27	help	  Select the version of kernel header files you wish to use.	  You must select the correct set of header files to match	  the kernel you intend to use on your target system.	config BR2_KERNEL_HEADERS_2_4_25		bool "Linux 2.4.25 kernel headers"	config BR2_KERNEL_HEADERS_2_4_27		bool "Linux 2.4.27 kernel headers"	config BR2_KERNEL_HEADERS_2_6_8		bool "Linux 2.6.8 kernel headers (with mips fixes)"	config BR2_KERNEL_HEADERS_2_6_9		bool "Linux 2.6.9 kernel headers"endchoiceconfig BR2_DEFAULT_KERNEL_HEADERS	string	default "2.4.25"    if BR2_KERNEL_HEADERS_2_4_25	default "2.4.27"    if BR2_KERNEL_HEADERS_2_4_27	default "2.6.8"	    if BR2_KERNEL_HEADERS_2_6_8	default "2.6.9"	    if BR2_KERNEL_HEADERS_2_6_9

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?