config/kernel.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Thu May 10 21:33:35 2007 +0000 (2007-05-10)
changeset 85 ac2845835b13
parent 34 fbdc53e2ee3e
child 91 aa1d248fa51b
permissions -rw-r--r--
Update the way we handle directories supplied by the user:
- the tarball directory is considered as a local copy, and tarballs are copied to a working area,
- the sources and build directories (CT_SRC_DIR and CT_BUILD_DIR) are now computed, and no longer an option,
- the build dir has been renamed from 'build' to 'targets'.
That should ease preparing a tarball of the resulting target.
     1 # Kernel options
     2 
     3 menu "Kernel"
     4 
     5 choice
     6     bool
     7     prompt "Target OS"
     8     default KERNEL_LINUX
     9 
    10 config KERNEL_LINUX
    11     bool
    12     prompt "linux"
    13     help
    14       Build a toolchain targeting systems running Linux as a kernel.
    15 
    16 config KERNEL_CYGWIN
    17     bool
    18     prompt "cygwin"
    19     depends on EXPERIMENTAL && ( ARCH_x86 || ARCH_x86_64 )
    20     help
    21       Build a toolchain targeting systems running Windows/cygwin as a kernel.
    22 
    23 endchoice
    24 
    25 config KERNEL_VERSION
    26     string
    27 
    28 if KERNEL_LINUX
    29 source config/kernel_linux.in
    30 endif
    31 
    32 if KERNEL_CYGWIN
    33 source config/kernel_cygwin.in
    34 endif
    35 
    36 endmenu