mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2025-03-04 04:31:08 +00:00
Remove orphanned Linux kernel patchsets. Initiate a kernel build scripts directory. Move the Linux kernel build script there. /trunk/scripts/build/kernel/linux.sh | 146 11 135 0 +++--------------------------------------- /trunk/scripts/crosstool.sh | 2 1 1 0 /trunk/steps.mk | 1 0 1 0 - /trunk/config/kernel/linux.in | 49 0 49 0 -------------- /trunk/config/kernel.in | 4 4 0 0 + 5 files changed, 16 insertions(+), 186 deletions(-)
30 lines
393 B
Plaintext
30 lines
393 B
Plaintext
# Kernel options
|
|
|
|
menu "Kernel"
|
|
|
|
config KERNEL
|
|
string
|
|
default "linux" if KERNEL_LINUX
|
|
|
|
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
|