mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-19 04:47:52 +00:00
2237fab536
Fix that. /trunk/tools/addToolVersion.sh | 26 13 13 0 +++++++++++++------------- /trunk/config/kernel/linux.in | 6 3 3 0 +++--- /trunk/config/kernel.in | 2 1 1 0 +- /trunk/config/cc.in | 2 1 1 0 +- /trunk/config/libc.in | 4 2 2 0 ++-- 5 files changed, 20 insertions(+), 20 deletions(-)
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
|