config/kernel/linux.in
author "Benoît Thébaudeau" <benoit.thebaudeau@advansee.com>
Thu Feb 09 13:00:49 2012 +0100 (2012-02-09)
changeset 2879 e947c64136dc
parent 2852 eb134738abc6
child 2885 17c162b426c6
permissions -rw-r--r--
kernel/linux: update revisions

Update Linux with the latest available revisions.

Signed-off-by: "Benoît Thébaudeau" <benoit.thebaudeau@advansee.com>
     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_5
    30     bool
    31     prompt "3.2.5"
    32 
    33 config KERNEL_V_3_2_4
    34     bool
    35     prompt "3.2.4"
    36 
    37 config KERNEL_V_3_2_3
    38     bool
    39     prompt "3.2.3"
    40 
    41 config KERNEL_V_3_2_2
    42     bool
    43     prompt "3.2.2"
    44 
    45 config KERNEL_V_3_2_1
    46     bool
    47     prompt "3.2.1"
    48 
    49 config KERNEL_V_3_2
    50     bool
    51     prompt "3.2"
    52 
    53 config KERNEL_V_3_1_10
    54     bool
    55     prompt "3.1.10"
    56 
    57 config KERNEL_V_3_0_20
    58     bool
    59     prompt "3.0.20"
    60 
    61 config KERNEL_V_2_6_39_4
    62     bool
    63     prompt "2.6.39.4"
    64 
    65 config KERNEL_V_2_6_38_8
    66     bool
    67     prompt "2.6.38.8"
    68 
    69 config KERNEL_V_2_6_37_6
    70     bool
    71     prompt "2.6.37.6"
    72 
    73 config KERNEL_V_2_6_36_4
    74     bool
    75     prompt "2.6.36.4"
    76 
    77 config KERNEL_V_2_6_33_20
    78     bool
    79     prompt "2.6.33.20"
    80     help
    81       This is primarily for the use of those people who are stuck using the
    82       .33-rt kernel.  Anyone else who really wants to use the .33 kernel tree
    83       is welcome to use this one as well.
    84 
    85 config KERNEL_V_2_6_32_56
    86     bool
    87     prompt "2.6.32.56 (longterm)"
    88     help
    89       The Linux 2.6.32 tree is a "longterm" maintenance branch.
    90       
    91       It is intended to fill the niche for users who are not using distribution
    92       kernels but want to use a regression-free kernel for a longer time.
    93       
    94       Critical bug fixes to later 2.6 releases are often ported to this branch
    95       which makes 2.6.32 a very useful base for many embedded developers seeking
    96       stable APIs or those who do not need the latest bleeding edge features.
    97       
    98       ... and no, this kernel has not undergone any specific QA testing.
    99       
   100       See the original announcement by Greg Kroah-Hartman in the following
   101       mailing list entry:
   102         http://marc.info/?l=linux-kernel&m=126384198403392&w=4
   103 
   104 config KERNEL_V_2_6_31_14
   105     bool
   106     prompt "2.6.31.14"
   107 
   108 config KERNEL_V_2_6_27_59
   109     bool
   110     prompt "2.6.27.59 (longterm)"
   111     help
   112       The Linux 2.6.27 tree is a "longterm" maintenance branch.
   113       
   114       It is intended to fill the niche for users who are not using distribution
   115       kernels but want to use a regression-free kernel for a longer time.
   116       
   117       Critical bug fixes to later 2.6 releases are often ported to this branch
   118       which makes 2.6.27 a very useful base for many embedded developers seeking
   119       stable APIs or those who do not need the latest bleeding edge features.
   120       
   121       ... and no, this kernel has not undergone any specific QA testing.
   122       
   123       See the original announcement by Adrian Bunk in the following mailing list
   124       entry:
   125         http://marc.info/?l=linux-kernel&m=122375909403298&w=4
   126       
   127       It is now maintained by Greg Kroah-Hartman, see this mailing list entry:
   128         http://marc.info/?l=linux-kernel&m=129133701916793&w=4
   129 
   130 config KERNEL_LINUX_CUSTOM
   131     bool
   132     prompt "custom tarball or directory"
   133     help
   134       Use a local tarball or local kernel directory of a complete kernel source tree.
   135 
   136 config KERNEL_LINUX_CUSTOM_LOCATION
   137     string
   138     prompt "Path to custom source, tarball or directory"
   139     depends on KERNEL_LINUX_CUSTOM
   140     help
   141       Enter here the path to the tarball of your full kernel tree or
   142       kernel directory
   143 
   144 endchoice
   145 
   146 config KERNEL_VERSION
   147     string
   148 # Don't remove next line
   149 # CT_INSERT_VERSION_STRING_BELOW
   150     default "3.2.5" if KERNEL_V_3_2_5
   151     default "3.2.4" if KERNEL_V_3_2_4
   152     default "3.2.3" if KERNEL_V_3_2_3
   153     default "3.2.2" if KERNEL_V_3_2_2
   154     default "3.2.1" if KERNEL_V_3_2_1
   155     default "3.2" if KERNEL_V_3_2
   156     default "3.1.10" if KERNEL_V_3_1_10
   157     default "3.0.20" if KERNEL_V_3_0_20
   158     default "2.6.39.4" if KERNEL_V_2_6_39_4
   159     default "2.6.38.8" if KERNEL_V_2_6_38_8
   160     default "2.6.37.6" if KERNEL_V_2_6_37_6
   161     default "2.6.36.4" if KERNEL_V_2_6_36_4
   162     default "2.6.33.20" if KERNEL_V_2_6_33_20
   163     default "2.6.32.56" if KERNEL_V_2_6_32_56
   164     default "2.6.31.14" if KERNEL_V_2_6_31_14
   165     default "2.6.27.59" if KERNEL_V_2_6_27_59
   166     default "custom" if KERNEL_LINUX_CUSTOM
   167 
   168 endif # ! KERNEL_LINUX_USE_CUSTOM_HEADERS
   169 
   170 if KERNEL_LINUX_USE_CUSTOM_HEADERS
   171 
   172 config KERNEL_LINUX_CUSTOM_PATH
   173     string
   174     prompt "Path to custom headers directory/tarball"
   175     help
   176       See KERNEL_LINUX_CUSTOM_IS_TARBALL, below.
   177 
   178 config KERNEL_LINUX_CUSTOM_IS_TARBALL
   179     bool
   180     prompt "This is a tarball"
   181     help
   182       If you say 'n' here, the path above is expected to point to a directory
   183       containing readily prepared headers
   184       
   185       If you say 'y' here, then the path above is expected to point to a
   186       tarball of such a directory.
   187       
   188       Eg., if your headers are available in: /foo/bar/buz/my_hdrs/include,
   189       say 'n' here, and enter: /foo/bar/buz/my_hdrs below.
   190       
   191       Now, passing a tarball around is easier than passing a directory, so
   192       if you want to, you can make a tarball of /foo/bar/buz/my_hdrs/include,
   193       say 'y' here, and enter the path to this tarball below.
   194 
   195 endif # KERNEL_LINUX_USE_CUSTOM_HEADERS