config/kernel.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Mon Jan 03 23:40:22 2011 +0100 (2011-01-03)
changeset 2267 7af68e6083aa
parent 1976 2d90ec981ba3
child 2484 d1a8c2ae7946
permissions -rw-r--r--
libc-glibc: remove 2.3.6

This is an obsolete version which is no longer used by any sample (the only
user, the ia64 sample, has been removed).

It also makes the code path a bit complex, with twists just to accomodate
that version. Removing the version will make those twists go away, and
will ease commonalisation of glibc and eglibc in the future (hopefully!).

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
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
bartvdrmeulen@2017
    11
config MINGW32
bartvdrmeulen@2017
    12
    bool
bartvdrmeulen@2017
    13
    default n
bartvdrmeulen@2017
    14
yann@1499
    15
# Each target OS (aka kernel) that support shared libraries can select
yann@1499
    16
# this, so the user can decide whether or not to build a shared library
yann@1499
    17
# enabled toolchain
yann@1499
    18
config KERNEL_SUPPORTS_SHARED_LIBS
yann@1499
    19
    bool
yann@1499
    20
    default n
yann@1499
    21
yann@847
    22
config KERNEL
yann@847
    23
    string
yann@847
    24
yann@861
    25
config KERNEL_VERSION
yann@861
    26
    string
yann@850
    27
yann@1870
    28
source "config.gen/kernel.in"
yann@854
    29
yann@1502
    30
comment "Common kernel options"
yann@1502
    31
yann@1502
    32
config SHARED_LIBS
yann@1502
    33
    bool
yann@1502
    34
    prompt "Build shared libraries"
yann@1502
    35
    depends on KERNEL_SUPPORTS_SHARED_LIBS
yann@1502
    36
    default y
yann@1502
    37
    help
yann@1502
    38
      Say 'y' here, unless you don't want shared libraries.
yann@1502
    39
      
yann@1502
    40
      You might not want shared libraries if you're building for a target that
yann@1502
    41
      don't support it (maybe some nommu targets, for example, or bare metal).
yann@1502
    42
yann@1976
    43
source "config.gen/kernel.in.2"
yann@1976
    44
yann@1
    45
endmenu