config/kernel_linux_headers_install.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sat Feb 24 11:00:05 2007 +0000 (2007-02-24)
changeset 1 eeea35fbf182
child 8 84d01da9e4b5
permissions -rw-r--r--
Add the full crosstool-NG sources to the new repository of its own.
You might just say: 'Yeah! crosstool-NG's got its own repo!".
Unfortunately, that's because the previous repo got damaged beyond repair and I had no backup.
That means I'm putting backups in place in the afternoon.
That also means we've lost history... :-(
     1 choice
     2     bool
     3     prompt "Linux kernel version"
     4 
     5 config KERNEL_INSTALL_V_2_6_18
     6     bool
     7     prompt "2.6.18"
     8 
     9 config KERNEL_INSTALL_V_2_6_18_1
    10     bool
    11     prompt "2.6.18.1"
    12     depends on KERNEL_VERSION_SEE_EXTRAVERSION
    13 
    14 config KERNEL_INSTALL_V_2_6_18_2
    15     bool
    16     prompt "2.6.18.2"
    17     depends on KERNEL_VERSION_SEE_EXTRAVERSION
    18 
    19 config KERNEL_INSTALL_V_2_6_18_3
    20     bool
    21     prompt "2.6.18.3"
    22     depends on KERNEL_VERSION_SEE_EXTRAVERSION
    23 
    24 config KERNEL_INSTALL_V_2_6_18_4
    25     bool
    26     prompt "2.6.18.4"
    27     depends on KERNEL_VERSION_SEE_EXTRAVERSION
    28 
    29 config KERNEL_INSTALL_V_2_6_18_5
    30     bool
    31     prompt "2.6.18.5"
    32     depends on KERNEL_VERSION_SEE_EXTRAVERSION
    33 
    34 config KERNEL_INSTALL_V_2_6_18_6
    35     bool
    36     prompt "2.6.18.6"
    37     depends on KERNEL_VERSION_SEE_EXTRAVERSION
    38 
    39 config KERNEL_INSTALL_V_2_6_19
    40     bool
    41     prompt "2.6.19"
    42 
    43 config KERNEL_INSTALL_V_2_6_19_1
    44     bool
    45     prompt "2.6.19.1"
    46     depends on KERNEL_VERSION_SEE_EXTRAVERSION
    47 
    48 config KERNEL_INSTALL_V_2_6_19_2
    49     bool
    50     prompt "2.6.19.2"
    51     depends on KERNEL_VERSION_SEE_EXTRAVERSION
    52 
    53 config KERNEL_INSTALL_V_2_6_20
    54     bool
    55     prompt "2.6.20"
    56 
    57 # CT_INSERT_VERSION_ABOVE
    58 # Don't remove above line!
    59 endchoice
    60 
    61 config KERNEL_VERSION
    62     string
    63     default "2.6.18" if KERNEL_INSTALL_V_2_6_18
    64     default "2.6.18.1" if KERNEL_INSTALL_V_2_6_18_1
    65     default "2.6.18.2" if KERNEL_INSTALL_V_2_6_18_2
    66     default "2.6.18.3" if KERNEL_INSTALL_V_2_6_18_3
    67     default "2.6.18.4" if KERNEL_INSTALL_V_2_6_18_4
    68     default "2.6.18.5" if KERNEL_INSTALL_V_2_6_18_5
    69     default "2.6.18.6" if KERNEL_INSTALL_V_2_6_18_6
    70     default "2.6.19" if KERNEL_INSTALL_V_2_6_19
    71     default "2.6.19.1" if KERNEL_INSTALL_V_2_6_19_1
    72     default "2.6.19.2" if KERNEL_INSTALL_V_2_6_19_2
    73     default "2.6.20" if KERNEL_INSTALL_V_2_6_20
    74 # CT_INSERT_VERSION_STRING_ABOVE
    75 # Don't remove above line!