config/kernel_linux_headers_install.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Thu Feb 14 22:42:37 2008 +0000 (2008-02-14)
changeset 423 656d929db867
parent 407 2e96797201e5
child 426 95ea1a41aa9d
permissions -rw-r--r--
Add latest kernel versions (Robert P. J. DAY).
     1 choice
     2     bool
     3     prompt "Linux kernel version"
     4 
     5 config KERNEL_INSTALL_V_2_6_18_8
     6     bool
     7     prompt "2.6.18.8 (OBSOLETE)"
     8     depends on KERNEL_VERSION_SEE_EXTRAVERSION && OBSOLETE
     9 
    10 config KERNEL_INSTALL_V_2_6_19_7
    11     bool
    12     prompt "2.6.19.7 (OBSOLETE)"
    13     depends on KERNEL_VERSION_SEE_EXTRAVERSION && OBSOLETE
    14 
    15 config KERNEL_INSTALL_V_2_6_20_15
    16     bool
    17     prompt "2.6.20.15 (OBSOLETE)"
    18     depends on KERNEL_VERSION_SEE_EXTRAVERSION && OBSOLETE
    19 
    20 config KERNEL_INSTALL_V_2_6_21_7
    21     bool
    22     prompt "2.6.21.7"
    23     depends on KERNEL_VERSION_SEE_EXTRAVERSION
    24 
    25 config KERNEL_INSTALL_V_2_6_22
    26     bool
    27     prompt "2.6.22"
    28 
    29 config KERNEL_INSTALL_V_2_6_22_1
    30     bool
    31     prompt "2.6.22.1"
    32     depends on KERNEL_VERSION_SEE_EXTRAVERSION
    33 
    34 config KERNEL_INSTALL_V_2_6_22_2
    35     bool
    36     prompt "2.6.22.2"
    37     depends on KERNEL_VERSION_SEE_EXTRAVERSION
    38 
    39 config KERNEL_INSTALL_V_2_6_22_3
    40     bool
    41     prompt "2.6.22.3"
    42     depends on KERNEL_VERSION_SEE_EXTRAVERSION
    43 
    44 config KERNEL_INSTALL_V_2_6_22_4
    45     bool
    46     prompt "2.6.22.4"
    47     depends on KERNEL_VERSION_SEE_EXTRAVERSION
    48 
    49 config KERNEL_INSTALL_V_2_6_22_5
    50     bool
    51     prompt "2.6.22.5"
    52     depends on KERNEL_VERSION_SEE_EXTRAVERSION
    53 
    54 config KERNEL_INSTALL_V_2_6_22_6
    55     bool
    56     prompt "2.6.22.6"
    57     depends on KERNEL_VERSION_SEE_EXTRAVERSION
    58 
    59 config KERNEL_INSTALL_V_2_6_22_7
    60     bool
    61     prompt "2.6.22.7"
    62     depends on KERNEL_VERSION_SEE_EXTRAVERSION
    63 
    64 config KERNEL_INSTALL_V_2_6_22_8
    65     bool
    66     prompt "2.6.22.8"
    67     depends on KERNEL_VERSION_SEE_EXTRAVERSION
    68 
    69 config KERNEL_INSTALL_V_2_6_22_9
    70     bool
    71     prompt "2.6.22.9"
    72     depends on KERNEL_VERSION_SEE_EXTRAVERSION
    73 
    74 config KERNEL_INSTALL_V_2_6_22_10
    75     bool
    76     prompt "2.6.22.10"
    77     depends on KERNEL_VERSION_SEE_EXTRAVERSION
    78 
    79 config KERNEL_INSTALL_V_2_6_23
    80     bool
    81     prompt "2.6.23"
    82 
    83 config KERNEL_INSTALL_V_2_6_23_1
    84     bool
    85     prompt "2.6.23.1"
    86     depends on KERNEL_VERSION_SEE_EXTRAVERSION
    87 
    88 config KERNEL_INSTALL_V_2_6_24
    89     bool
    90     prompt "2.6.24"
    91 
    92 config KERNEL_INSTALL_V_2_6_24_1
    93     bool
    94     prompt "2.6.24.1"
    95     depends on KERNEL_VERSION_SEE_EXTRAVERSION
    96 
    97 config KERNEL_INSTALL_V_2_6_24_2
    98     bool
    99     prompt "2.6.24.2"
   100     depends on KERNEL_VERSION_SEE_EXTRAVERSION
   101 
   102 # CT_INSERT_VERSION_ABOVE
   103 # Don't remove above line!
   104 endchoice
   105 
   106 config KERNEL_VERSION
   107     string
   108     default "2.6.18.8" if KERNEL_INSTALL_V_2_6_18_8
   109     default "2.6.19.7" if KERNEL_INSTALL_V_2_6_19_7
   110     default "2.6.20.15" if KERNEL_INSTALL_V_2_6_20_15
   111     default "2.6.21.7" if KERNEL_INSTALL_V_2_6_21_7
   112     default "2.6.22" if KERNEL_INSTALL_V_2_6_22
   113     default "2.6.22.1" if KERNEL_INSTALL_V_2_6_22_1
   114     default "2.6.22.2" if KERNEL_INSTALL_V_2_6_22_2
   115     default "2.6.22.3" if KERNEL_INSTALL_V_2_6_22_3
   116     default "2.6.22.4" if KERNEL_INSTALL_V_2_6_22_4
   117     default "2.6.22.5" if KERNEL_INSTALL_V_2_6_22_5
   118     default "2.6.22.6" if KERNEL_INSTALL_V_2_6_22_6
   119     default "2.6.22.7" if KERNEL_INSTALL_V_2_6_22_7
   120     default "2.6.22.8" if KERNEL_INSTALL_V_2_6_22_8
   121     default "2.6.22.9" if KERNEL_INSTALL_V_2_6_22_9
   122     default "2.6.22.10" if KERNEL_INSTALL_V_2_6_22_10
   123     default "2.6.23" if KERNEL_INSTALL_V_2_6_23
   124     default "2.6.23.1" if KERNEL_INSTALL_V_2_6_23_1
   125     default "2.6.24" if KERNEL_INSTALL_V_2_6_24
   126     default "2.6.24.1" if KERNEL_INSTALL_V_2_6_24_1
   127     default "2.6.24.2" if KERNEL_INSTALL_V_2_6_24_2
   128 # CT_INSERT_VERSION_STRING_ABOVE
   129 # Don't remove above line!
   130 
   131 config KERNEL_LINUX_HEADERS_INSTALL_CHECK
   132     bool
   133     prompt "Check installed headers"
   134     default n
   135     help
   136       If you are in doubt that installed headers are buggy, say 'Y'
   137       here to have an extra check passed onto the headers.