This is the mail archive of the crossgcc@sourceware.org mailing list for the crossgcc project.

See the CrossGCC FAQ for lots more information.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH 1 of 1] This patch adds support for the latest Linux 2.6.32.3 kernel


# HG changeset patch
# User Joachim Nilsson <jocke@vmlinux.org>
# Date 1262878303 -3600
# Node ID 274c66a1b292658e8568af2678170885de48eb29
# Parent  9c8f68607d75b2aa10c531a3a7ab213fc5893cb0
This patch adds support for the latest Linux 2.6.32.3 kernel.

Signed-off-by: Joachim Nilsson <jocke@vmlinux.org>

diff --git a/config/kernel/linux.in b/config/kernel/linux.in
--- a/config/kernel/linux.in
+++ b/config/kernel/linux.in
@@ -34,6 +34,10 @@
 # Don't remove next line
 # CT_INSERT_VERSION_BELOW
 
+config KERNEL_V_2_6_32_3
+    bool
+    prompt "2.6.32.3"
+
 config KERNEL_V_2_6_32_2
     bool
     prompt "2.6.32.2"
@@ -46,6 +50,10 @@
     bool
     prompt "2.6.32"
 
+config KERNEL_V_2_6_31_11
+    bool
+    prompt "2.6.31.11"
+
 config KERNEL_V_2_6_31_9
     bool
     prompt "2.6.31.9"
@@ -140,9 +148,29 @@
     prompt "2.6.28.10 (OBSOLETE)"
     depends on OBSOLETE
 
+config KERNEL_V_2_6_27_43
+    bool
+    prompt "2.6.27.43 (long-term stable)"
+    default y
+    help
+      The Linux 2.6.27 tree is the current "long-term stable" maintenance branch.
+      It is intended to fill the niche for users who are not using distribution
+      kernels but want to use a regression-free kernel for a longer time.
+      
+      Critical bug fixes to later 2.6 releases are often ported to this branch
+      which makes 2.6.27 a very useful base for many embedded developers seeking
+      stable APIs or those who do not need the latest bleeding edge features.
+      
+      ... and no, this kernel has not undergone any specific QA testing.
+      
+      See the original announcement by Adrian Bunk in the following mailing list
+      entry: http://marc.info/?l=linux-kernel&m=122375909403298&w=2
+
 config KERNEL_V_2_6_27_42
     bool
     prompt "2.6.27.42 (long-term stable)"
+    help
+      See the latest 2.6.27 kernel for information about "long-term stable".
 
 endchoice
 
@@ -150,9 +178,11 @@
     string
 # Don't remove next line
 # CT_INSERT_VERSION_STRING_BELOW
+    default "2.6.32.3" if KERNEL_V_2_6_32_3
     default "2.6.32.2" if KERNEL_V_2_6_32_2
     default "2.6.32.1" if KERNEL_V_2_6_32_1
     default "2.6.32" if KERNEL_V_2_6_32
+    default "2.6.31.11" if KERNEL_V_2_6_31_11
     default "2.6.31.9" if KERNEL_V_2_6_31_9
     default "2.6.31.8" if KERNEL_V_2_6_31_8
     default "2.6.31.7" if KERNEL_V_2_6_31_7
@@ -176,6 +206,7 @@
     default "2.6.30" if KERNEL_V_2_6_30
     default "2.6.29.6" if KERNEL_V_2_6_29_6
     default "2.6.28.10" if KERNEL_V_2_6_28_10
+    default "2.6.27.43" if KERNEL_V_2_6_27_43
     default "2.6.27.42" if KERNEL_V_2_6_27_42
 
 choice

--
For unsubscribe information see http://sourceware.org/lists.html#faq


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]