config/kernel.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Thu May 17 16:22:51 2007 +0000 (2007-05-17)
changeset 96 aa1a9fbd6eb8
parent 61 1207acb66003
child 446 d205527c5e01
permissions -rw-r--r--
Debug facilities:
- add a framework to easily add new ones
- add gdb as a first debug facility
- add patches for gdb
After the kernel checked its installed headers, clean up the mess of .checked.* files.
Reorder scripts/crosstool.sh:
- dump the configuration early
- renice early
- get info about build system early, when setting up the environment
- when in cross or native, the host tools are those of the build system, and only in this case
- elapsed time calculations moved to scripts/functions
Remove handling of the color: it's gone once and for all.
Update tools/addToolVersion.sh:
- handle debug facilities
- commonalise some code
- remove dead tools (cygwin, tcc)
Point to my address for bug reports.
yann@1
     1
# Kernel options
yann@1
     2
yann@1
     3
menu "Kernel"
yann@1
     4
yann@1
     5
choice
yann@1
     6
    bool
yann@34
     7
    prompt "Target OS"
yann@1
     8
    default KERNEL_LINUX
yann@1
     9
yann@1
    10
config KERNEL_LINUX
yann@1
    11
    bool
yann@1
    12
    prompt "linux"
yann@1
    13
    help
yann@1
    14
      Build a toolchain targeting systems running Linux as a kernel.
yann@1
    15
yann@1
    16
endchoice
yann@1
    17
yann@1
    18
config KERNEL_VERSION
yann@1
    19
    string
yann@1
    20
yann@1
    21
if KERNEL_LINUX
yann@1
    22
source config/kernel_linux.in
yann@1
    23
endif
yann@1
    24
yann@1
    25
endmenu