config/kernel/linux.in
author Bryan Hundven <bryanhundven@gmail.com>
Tue Jun 21 21:01:20 2011 -0700 (2011-06-21)
changeset 2513 586678dfff0b
parent 2484 d1a8c2ae7946
child 2514 8bb5151c5b01
permissions -rw-r--r--
config/kernel: Update linux kernel versions

Add 2.6.39.1
Drop 2.6.38-2.6.38.6 provide the latest 2.6.38.8
Update longterm trees:
* 2.6.33 is 2.6.33.14
* 2.6.32 is 2.6.32.41
     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 choice
     8     bool
     9     prompt "Get kernel headers from:"
    10 
    11 config KERNEL_LINUX_INSTALL
    12     bool
    13     prompt "kernel's 'headers_install'"
    14     help
    15       This will make use of the new headers_install rule in recent kernels.
    16       This is most probably what you want to use.
    17 
    18 config KERNEL_LINUX_USE_CUSTOM_HEADERS
    19     bool
    20     prompt "pre-installed headers tree"
    21     help
    22       If you have some pre-installed kernel headers lying around, you can
    23       enter the path to these headers, below, they will be copied from
    24       there, and into the toolchain's sysroot.
    25       
    26       Note:
    27       This will *not* let you use a complete kernel tree!
    28       If you want to use your own full kernel tree, then you want to
    29       say 'Y' to KERNEL_LINUX_INSTALL, above, and select KERNEL_LINUX_CUSTOM.
    30 
    31 endchoice
    32 
    33 if KERNEL_LINUX_INSTALL
    34 
    35 choice
    36     bool
    37     prompt "Linux kernel version"
    38 # Don't remove next line
    39 # CT_INSERT_VERSION_BELOW
    40 
    41 config KERNEL_V_2_6_39_1
    42     bool
    43     prompt "2.6.39.1"
    44 
    45 config KERNEL_V_2_6_39
    46     bool
    47     prompt "2.6.39"
    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_35_13
    62     bool
    63     prompt "2.6.35.13 (longterm)"
    64     help
    65       The Linux 2.6.35 tree is a "longterm" maintenance branch.
    66       
    67       It is intended to fill the niche for users who are not using distribution
    68       kernels but want to use a regression-free kernel for a longer time.
    69       
    70       Critical bug fixes to later 2.6 releases are often ported to this branch
    71       which makes 2.6.35 a very useful base for many embedded developers seeking
    72       stable APIs or those who do not need the latest bleeding edge features.
    73       
    74       ... and no, this kernel has not undergone any specific QA testing.
    75       
    76       See the original announcement by Andi Kleen in the following mailing
    77       list entry:
    78         http://marc.info/?l=linux-kernel&m=129136895415202&w=4
    79 
    80 config KERNEL_V_2_6_34_9
    81     bool
    82     prompt "2.6.34.9"
    83 
    84 config KERNEL_V_2_6_33_14
    85     bool
    86     prompt "2.6.33.14"
    87 
    88 config KERNEL_V_2_6_32_41
    89     bool
    90     prompt "2.6.32.41 (longterm)"
    91     help
    92       The Linux 2.6.32 tree is a "longterm" maintenance branch.
    93       
    94       It is intended to fill the niche for users who are not using distribution
    95       kernels but want to use a regression-free kernel for a longer time.
    96       
    97       Critical bug fixes to later 2.6 releases are often ported to this branch
    98       which makes 2.6.32 a very useful base for many embedded developers seeking
    99       stable APIs or those who do not need the latest bleeding edge features.
   100       
   101       ... and no, this kernel has not undergone any specific QA testing.
   102       
   103       See the original announcement by Greg Kroah-Hartman in the following
   104       mailing list entry:
   105         http://marc.info/?l=linux-kernel&m=126384198403392&w=4
   106 
   107 config KERNEL_V_2_6_31_14
   108     bool
   109     prompt "2.6.31.14"
   110 
   111 config KERNEL_V_2_6_27_59
   112     bool
   113     prompt "2.6.27.59 (longterm)"
   114     help
   115       The Linux 2.6.27 tree is a "longterm" maintenance branch.
   116       
   117       It is intended to fill the niche for users who are not using distribution
   118       kernels but want to use a regression-free kernel for a longer time.
   119       
   120       Critical bug fixes to later 2.6 releases are often ported to this branch
   121       which makes 2.6.27 a very useful base for many embedded developers seeking
   122       stable APIs or those who do not need the latest bleeding edge features.
   123       
   124       ... and no, this kernel has not undergone any specific QA testing.
   125       
   126       See the original announcement by Adrian Bunk in the following mailing list
   127       entry:
   128         http://marc.info/?l=linux-kernel&m=122375909403298&w=4
   129       
   130       It is now maintained by Greg Kroah-Hartman, see this mailing list entry:
   131         http://marc.info/?l=linux-kernel&m=129133701916793&w=4
   132 
   133 config KERNEL_LINUX_CUSTOM
   134     bool
   135     prompt "custom tarball"
   136     help
   137       Use a local tarball of a complete kernel source tree.
   138 
   139 config KERNEL_LINUX_CUSTOM_TARBALL
   140     string
   141     prompt "Path to custom tarball"
   142     depends on KERNEL_LINUX_CUSTOM
   143     help
   144       Enter here the path to the tarball of your full kernel tree.
   145 
   146 endchoice
   147 
   148 config KERNEL_VERSION
   149     string
   150 # Don't remove next line
   151 # CT_INSERT_VERSION_STRING_BELOW
   152     default "2.6.39.1" if KERNEL_V_2_6_39_1
   153     default "2.6.39" if KERNEL_V_2_6_39
   154     default "2.6.38.8" if KERNEL_V_2_6_38_8
   155     default "2.6.37.6" if KERNEL_V_2_6_37_6
   156     default "2.6.36.4" if KERNEL_V_2_6_36_4
   157     default "2.6.35.13" if KERNEL_V_2_6_35_13
   158     default "2.6.34.9" if KERNEL_V_2_6_34_9
   159     default "2.6.33.14" if KERNEL_V_2_6_33_13
   160     default "2.6.32.41" if KERNEL_V_2_6_32_40
   161     default "2.6.31.14" if KERNEL_V_2_6_31_14
   162     default "2.6.27.59" if KERNEL_V_2_6_27_59
   163 
   164 endif # KERNEL_LINUX_INSTALL
   165 
   166 if KERNEL_LINUX_USE_CUSTOM_HEADERS
   167 
   168 config KERNEL_LINUX_CUSTOM_PATH
   169     string
   170     prompt "Path to custom headers directory/tarball"
   171     help
   172       See KERNEL_LINUX_CUSTOM_IS_TARBALL, below.
   173 
   174 config KERNEL_LINUX_CUSTOM_IS_TARBALL
   175     bool
   176     prompt "This is a tarball"
   177     help
   178       If you say 'n' here, the path above is expected to point to a directory
   179       containing readily prepared headers
   180       
   181       If you say 'y' here, then the path above is expected to point to a
   182       tarball of such a directory.
   183       
   184       Eg., if your headers are available in: /foo/bar/buz/my_hdrs/include,
   185       say 'n' here, and enter: /foo/bar/buz/my_hdrs below.
   186       
   187       Now, passing a tarball around is easier than passing a directory, so
   188       if you want to, you can make a tarball of /foo/bar/buz/my_hdrs/include,
   189       say 'y' here, and enter the path to this tarball below.
   190 
   191 endif # KERNEL_LINUX_USE_CUSTOM_HEADERS