config/kernel.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Thu Sep 11 09:02:00 2008 +0000 (2008-09-11)
changeset 849 777bf06ddd8b
parent 448 08da017ba46b
child 850 ef8549b58b6f
permissions -rw-r--r--
Update config.sub.

/trunk/tools/config.sub | 10 7 3 0 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
     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