config/kernel.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Thu Sep 11 09:01:48 2008 +0000 (2008-09-11)
changeset 848 5b3785e0d41d
parent 448 08da017ba46b
child 850 ef8549b58b6f
permissions -rw-r--r--
Fix auto-completion for updaetools.

/trunk/ct-ng.comp | 2 1 1 0 +-
1 file changed, 1 insertion(+), 1 deletion(-)
     1 # Kernel options
     2 
     3 menu "Kernel"
     4 
     5 config KERNEL
     6     string
     7     default "linux" if KERNEL_LINUX
     8 
     9 choice
    10     bool
    11     prompt "Target OS"
    12     default KERNEL_LINUX
    13 
    14 config KERNEL_LINUX
    15     bool
    16     prompt "linux"
    17     help
    18       Build a toolchain targeting systems running Linux as a kernel.
    19 
    20 endchoice
    21 
    22 config KERNEL_VERSION
    23     string
    24 
    25 if KERNEL_LINUX
    26 source config/kernel/linux.in
    27 endif
    28 
    29 endmenu