config/kernel.in
author Johannes Stezenbach <js@sig21.net>
Thu Jul 29 19:30:37 2010 +0200 (2010-07-29)
branch1.7
changeset 2047 ace1d90c9b15
parent 1502 472cfde636a1
child 1976 2d90ec981ba3
permissions -rw-r--r--
scripts: remove . from $PATH

Add CT_SanitizePath function which removes entries referring to ., /tmp
and non-existing directories from $PATH, and call it early in the
build script.

If . is in PATH, gcc-4.4.4 build breaks:

[ALL ] checking what assembler to use...
/tmp/build/targets/arm-unknown-linux-uclibcgnueabi/build/gcc-core-static/arm-unknown-linux-uclibcgnueabi/bin/as
...
[ALL ] config.status: creating as

i.e. "as" is supposed to be the arm-unknown-linux-uclibcgnueabi cross assembler,
but config.status creates a local "as" script which is calling the
host assembler.

Signed-off-by: Johannes Stezenbach <js@sig21.net>
[Yann E. MORIN: style fixes + explanations]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
(transplanted from 20dd8cef1c8adff0aa3e78ae6d7acfbc45ed5a83)
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@1870
    24
source "config.gen/kernel.in"
yann@854
    25
yann@1502
    26
comment "Common kernel options"
yann@1502
    27
yann@1502
    28
config SHARED_LIBS
yann@1502
    29
    bool
yann@1502
    30
    prompt "Build shared libraries"
yann@1502
    31
    depends on KERNEL_SUPPORTS_SHARED_LIBS
yann@1502
    32
    default y
yann@1502
    33
    help
yann@1502
    34
      Say 'y' here, unless you don't want shared libraries.
yann@1502
    35
      
yann@1502
    36
      You might not want shared libraries if you're building for a target that
yann@1502
    37
      don't support it (maybe some nommu targets, for example, or bare metal).
yann@1502
    38
yann@1
    39
endmenu