config/kernel.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Aug 30 16:44:59 2009 +0200 (2009-08-30)
changeset 1499 ff1f40a8f9c1
parent 1337 7f742f73c2d1
child 1502 472cfde636a1
permissions -rw-r--r--
config: introduce the KERNEL_SUPPORTS_SHARED_LIBS silent config option

The target OSes will be able to select this option if they support shared
libraries, instead of having "Build shared libaries" depend on each OS.
yann@1
     1
# Kernel options
yann@1
     2
yann@861
     3
menu "Operating System"
yann@861
     4
yann@883
     5
# Config option used throughout the config and code to determine wether
yann@1337
     6
# we have a kernel or not (there might be different bare metal stuff)...
yann@883
     7
config BARE_METAL
yann@883
     8
    bool
yann@883
     9
    default n
yann@883
    10
yann@1499
    11
# Each target OS (aka kernel) that support shared libraries can select
yann@1499
    12
# this, so the user can decide whether or not to build a shared library
yann@1499
    13
# enabled toolchain
yann@1499
    14
config KERNEL_SUPPORTS_SHARED_LIBS
yann@1499
    15
    bool
yann@1499
    16
    default n
yann@1499
    17
yann@847
    18
config KERNEL
yann@847
    19
    string
yann@847
    20
yann@861
    21
config KERNEL_VERSION
yann@861
    22
    string
yann@850
    23
yann@861
    24
source config.gen/kernel.in
yann@854
    25
yann@1
    26
endmenu