config/kernel/linux.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Thu Jan 12 22:41:47 2012 +0100 (2012-01-12)
changeset 2833 e10743b379fd
parent 2832 ac005fa480fd
child 2852 eb134738abc6
permissions -rw-r--r--
kernel/linux: update versions

A few newer versions, second shot in a row...

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
     1 # Linux kernel options
     2 
     3 ## select KERNEL_SUPPORTS_SHARED_LIBS
     4 ##
     5 ## help Build a toolchain targeting systems running Linux as a kernel.
     6 
     7 config KERNEL_LINUX_USE_CUSTOM_HEADERS
     8     bool
     9     prompt "Use pre-installed headers tree (OBSOLETE)"
    10     depends on OBSOLETE
    11     help
    12       If you have some pre-installed kernel headers lying around, you can
    13       enter the path to these headers, below, they will be copied from
    14       there, and into the toolchain's sysroot.
    15       
    16       Note:
    17       This will *not* let you use a complete kernel tree!
    18       If you want to use your own full kernel tree, then you want to say 'N'
    19       here, and select KERNEL_LINUX_CUSTOM, in the versions list, below.
    20 
    21 if ! KERNEL_LINUX_USE_CUSTOM_HEADERS
    22 
    23 choice
    24     bool
    25     prompt "Linux kernel version"
    26 # Don't remove next line
    27 # CT_INSERT_VERSION_BELOW
    28 
    29 config KERNEL_V_3_2_1
    30     bool
    31     prompt "3.2.1"
    32 
    33 config KERNEL_V_3_2
    34     bool
    35     prompt "3.2"
    36 
    37 config KERNEL_V_3_1_9
    38     bool
    39     prompt "3.1.9"
    40 
    41 config KERNEL_V_3_0_17
    42     bool
    43     prompt "3.0.17"
    44 
    45 config KERNEL_V_2_6_39_4
    46     bool
    47     prompt "2.6.39.4"
    48 
    49 config KERNEL_V_2_6_38_8
    50     bool
    51     prompt "2.6.38.8"
    52 
    53 config KERNEL_V_2_6_37_6
    54     bool
    55     prompt "2.6.37.6"
    56 
    57 config KERNEL_V_2_6_36_4
    58     bool
    59     prompt "2.6.36.4"
    60 
    61 config KERNEL_V_2_6_33_20
    62     bool
    63     prompt "2.6.33.20"
    64     help
    65       This is primarily for the use of those people who are stuck using the
    66       .33-rt kernel.  Anyone else who really wants to use the .33 kernel tree
    67       is welcome to use this one as well.
    68 
    69 config KERNEL_V_2_6_32_54
    70     bool
    71     prompt "2.6.32.54 (longterm)"
    72     help
    73       The Linux 2.6.32 tree is a "longterm" maintenance branch.
    74       
    75       It is intended to fill the niche for users who are not using distribution
    76       kernels but want to use a regression-free kernel for a longer time.
    77       
    78       Critical bug fixes to later 2.6 releases are often ported to this branch
    79       which makes 2.6.32 a very useful base for many embedded developers seeking
    80       stable APIs or those who do not need the latest bleeding edge features.
    81       
    82       ... and no, this kernel has not undergone any specific QA testing.
    83       
    84       See the original announcement by Greg Kroah-Hartman in the following
    85       mailing list entry:
    86         http://marc.info/?l=linux-kernel&m=126384198403392&w=4
    87 
    88 config KERNEL_V_2_6_31_14
    89     bool
    90     prompt "2.6.31.14"
    91 
    92 config KERNEL_V_2_6_27_59
    93     bool
    94     prompt "2.6.27.59 (longterm)"
    95     help
    96       The Linux 2.6.27 tree is a "longterm" maintenance branch.
    97       
    98       It is intended to fill the niche for users who are not using distribution
    99       kernels but want to use a regression-free kernel for a longer time.
   100       
   101       Critical bug fixes to later 2.6 releases are often ported to this branch
   102       which makes 2.6.27 a very useful base for many embedded developers seeking
   103       stable APIs or those who do not need the latest bleeding edge features.
   104       
   105       ... and no, this kernel has not undergone any specific QA testing.
   106       
   107       See the original announcement by Adrian Bunk in the following mailing list
   108       entry:
   109         http://marc.info/?l=linux-kernel&m=122375909403298&w=4
   110       
   111       It is now maintained by Greg Kroah-Hartman, see this mailing list entry:
   112         http://marc.info/?l=linux-kernel&m=129133701916793&w=4
   113 
   114 config KERNEL_LINUX_CUSTOM
   115     bool
   116     prompt "custom tarball or directory"
   117     help
   118       Use a local tarball or local kernel directory of a complete kernel source tree.
   119 
   120 config KERNEL_LINUX_CUSTOM_LOCATION
   121     string
   122     prompt "Path to custom source, tarball or directory"
   123     depends on KERNEL_LINUX_CUSTOM
   124     help
   125       Enter here the path to the tarball of your full kernel tree or
   126       kernel directory
   127 
   128 endchoice
   129 
   130 config KERNEL_VERSION
   131     string
   132 # Don't remove next line
   133 # CT_INSERT_VERSION_STRING_BELOW
   134     default "3.2.1" if KERNEL_V_3_2_1
   135     default "3.2" if KERNEL_V_3_2
   136     default "3.1.9" if KERNEL_V_3_1_9
   137     default "3.0.17" if KERNEL_V_3_0_17
   138     default "2.6.39.4" if KERNEL_V_2_6_39_4
   139     default "2.6.38.8" if KERNEL_V_2_6_38_8
   140     default "2.6.37.6" if KERNEL_V_2_6_37_6
   141     default "2.6.36.4" if KERNEL_V_2_6_36_4
   142     default "2.6.33.20" if KERNEL_V_2_6_33_20
   143     default "2.6.32.54" if KERNEL_V_2_6_32_54
   144     default "2.6.31.14" if KERNEL_V_2_6_31_14
   145     default "2.6.27.59" if KERNEL_V_2_6_27_59
   146     default "custom" if KERNEL_LINUX_CUSTOM
   147 
   148 endif # ! KERNEL_LINUX_USE_CUSTOM_HEADERS
   149 
   150 if KERNEL_LINUX_USE_CUSTOM_HEADERS
   151 
   152 config KERNEL_LINUX_CUSTOM_PATH
   153     string
   154     prompt "Path to custom headers directory/tarball"
   155     help
   156       See KERNEL_LINUX_CUSTOM_IS_TARBALL, below.
   157 
   158 config KERNEL_LINUX_CUSTOM_IS_TARBALL
   159     bool
   160     prompt "This is a tarball"
   161     help
   162       If you say 'n' here, the path above is expected to point to a directory
   163       containing readily prepared headers
   164       
   165       If you say 'y' here, then the path above is expected to point to a
   166       tarball of such a directory.
   167       
   168       Eg., if your headers are available in: /foo/bar/buz/my_hdrs/include,
   169       say 'n' here, and enter: /foo/bar/buz/my_hdrs below.
   170       
   171       Now, passing a tarball around is easier than passing a directory, so
   172       if you want to, you can make a tarball of /foo/bar/buz/my_hdrs/include,
   173       say 'y' here, and enter the path to this tarball below.
   174 
   175 endif # KERNEL_LINUX_USE_CUSTOM_HEADERS