config/kernel.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Wed Sep 10 21:40:23 2008 +0000 (2008-09-10)
changeset 847 af75fc1fe0fc
parent 448 08da017ba46b
child 850 ef8549b58b6f
permissions -rw-r--r--
Remove the now really obsolete Linux kernel headers copy and sanitised.
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(-)
     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