mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-19 04:47:52 +00:00
4ef6286f11
Some fixups in config entries, to avoid warnings when parsed by the kconfig parser.
26 lines
331 B
Plaintext
26 lines
331 B
Plaintext
# Kernel options
|
|
|
|
menu "Kernel"
|
|
|
|
choice
|
|
bool
|
|
prompt "Target OS"
|
|
default KERNEL_LINUX
|
|
|
|
config KERNEL_LINUX
|
|
bool
|
|
prompt "linux"
|
|
help
|
|
Build a toolchain targeting systems running Linux as a kernel.
|
|
|
|
endchoice
|
|
|
|
config KERNEL_VERSION
|
|
string
|
|
|
|
if KERNEL_LINUX
|
|
source config/kernel_linux.in
|
|
endif
|
|
|
|
endmenu
|