public inbox for crossgcc@sourceware.org
 help / color / mirror / Atom feed
* [PATCH 1 of 2] Adding kernel 2.6.31.6 and 2.6.27.39
  2009-11-17 18:08 [PATCH 0 of 2] small house-cleaning patches Frederic Roussel
  2009-11-17 18:07 ` [PATCH 2 of 2] Fix typos and adjust some documentation Frederic Roussel
@ 2009-11-17 18:07 ` Frederic Roussel
  2009-11-18 20:39 ` [PATCH 0 of 2] small house-cleaning patches Yann E. MORIN
  2 siblings, 0 replies; 4+ messages in thread
From: Frederic Roussel @ 2009-11-17 18:07 UTC (permalink / raw)
  To: Yann E. MORIN; +Cc: crossgcc

# HG changeset patch
# User "Frederic Roussel" <fr.frasc@gmail.com>
# Date 1258480450 28800
# Node ID 73cec3ad00f63b2d676f9011f84e69422efcd185
# Parent  c7d0e5a017c99f31ee106dde609d9718d889583d
Adding kernel 2.6.31.6 and 2.6.27.39

diff -r c7d0e5a017c9 -r 73cec3ad00f6 config/kernel/linux.in
--- a/config/kernel/linux.in	Mon Nov 16 22:37:39 2009 +0100
+++ b/config/kernel/linux.in	Tue Nov 17 09:54:10 2009 -0800
@@ -34,6 +34,10 @@
 # Don't remove next line
 # CT_INSERT_VERSION_BELOW
 
+config KERNEL_V_2_6_31_6
+    bool
+    prompt "2.6.31.6"
+
 config KERNEL_V_2_6_31_5
     bool
     prompt "2.6.31.5"
@@ -108,9 +112,9 @@
     prompt "2.6.28.10 (OBSOLETE)"
     depends on OBSOLETE
 
-config KERNEL_V_2_6_27_38
+config KERNEL_V_2_6_27_39
     bool
-    prompt "2.6.27.38 (long-term stable)"
+    prompt "2.6.27.39 (long-term stable)"
 
 endchoice
 
@@ -118,6 +122,7 @@
     string
 # Don't remove next line
 # CT_INSERT_VERSION_STRING_BELOW
+    default "2.6.31.6" if KERNEL_V_2_6_31_6
     default "2.6.31.5" if KERNEL_V_2_6_31_5
     default "2.6.31.4" if KERNEL_V_2_6_31_4
     default "2.6.31.3" if KERNEL_V_2_6_31_3
@@ -136,7 +141,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.38" if KERNEL_V_2_6_27_38
+    default "2.6.27.39" if KERNEL_V_2_6_27_39
 
 choice
     bool

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

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH 2 of 2] Fix typos and adjust some documentation
  2009-11-17 18:08 [PATCH 0 of 2] small house-cleaning patches Frederic Roussel
@ 2009-11-17 18:07 ` Frederic Roussel
  2009-11-17 18:07 ` [PATCH 1 of 2] Adding kernel 2.6.31.6 and 2.6.27.39 Frederic Roussel
  2009-11-18 20:39 ` [PATCH 0 of 2] small house-cleaning patches Yann E. MORIN
  2 siblings, 0 replies; 4+ messages in thread
From: Frederic Roussel @ 2009-11-17 18:07 UTC (permalink / raw)
  To: Yann E. MORIN; +Cc: crossgcc

# HG changeset patch
# User "Frederic Roussel" <fr.frasc@gmail.com>
# Date 1258480882 28800
# Node ID 263103c04678e5b5287fe723c5bbbd0a3bea08cb
# Parent  73cec3ad00f63b2d676f9011f84e69422efcd185
Fix typos and adjust some documentation.

diff -r 73cec3ad00f6 -r 263103c04678 Makefile.in
--- a/Makefile.in	Tue Nov 17 09:54:10 2009 -0800
+++ b/Makefile.in	Tue Nov 17 10:01:22 2009 -0800
@@ -129,7 +129,7 @@
 
 # We create a script fragment that is parseable from inside a Makefile,
 # but also from inside a shell script, hence the reason why we don't
-# use := to set varaibles, although that will incur a (very small)
+# use := to set variables, although that will incur a (very small)
 # penalty from the Makefile that includes it (due to re-evaluation at
 # each call).
 paths.mk:
diff -r 73cec3ad00f6 -r 263103c04678 docs/overview.txt
--- a/docs/overview.txt	Tue Nov 17 09:54:10 2009 -0800
+++ b/docs/overview.txt	Tue Nov 17 10:01:22 2009 -0800
@@ -366,22 +366,22 @@
 
 If you want to stop the build after a step you are debugging, you can pass the
 variable STOP to make:
-  ct-ng STOP=some_step
+  ct-ng build STOP=some_step
 
 Conversely, if you want to restart a build at a specific step you are
 debugging, you can pass the RESTART variable to make:
-  ct-ng RESTART=some_step
+  ct-ng build RESTART=some_step
 
 Alternatively, you can call make with the name of a step to just do that step:
   ct-ng libc_headers
 is equivalent to:
-  ct-ng RESTART=libc_headers STOP=libc_headers
+  ct-ng build RESTART=libc_headers STOP=libc_headers
 
 The shortcuts +step_name and step_name+ allow to respectively stop or restart
 at that step. Thus:
-  ct-ng +libc_headers        and:    ct-ng libc_headers+
+  ct-ng +libc_headers              and:    ct-ng libc_headers+
 are equivalent to:
-  ct-ng STOP=libc_headers    and:    ct-ng RESTART=libc_headers
+  ct-ng build STOP=libc_headers    and:    ct-ng build RESTART=libc_headers
 
 To obtain the list of acceptable steps, please call:
   ct-ng list-steps

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

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH 0 of 2] small house-cleaning patches
@ 2009-11-17 18:08 Frederic Roussel
  2009-11-17 18:07 ` [PATCH 2 of 2] Fix typos and adjust some documentation Frederic Roussel
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Frederic Roussel @ 2009-11-17 18:08 UTC (permalink / raw)
  To: Yann E. MORIN; +Cc: crossgcc

Hi all,

The patches I'm sending are fairly minor, bu they are a good exercise for me to go through, as wading through the code lets me understand it better.

- add the latest kernels 2.6.31.6 and 2.6.27.39
- fix some documentation. Hey, at least someone is reading it ;-)
- cosmetic fix of a typo

Thanks all

--Frederic


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

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 0 of 2] small house-cleaning patches
  2009-11-17 18:08 [PATCH 0 of 2] small house-cleaning patches Frederic Roussel
  2009-11-17 18:07 ` [PATCH 2 of 2] Fix typos and adjust some documentation Frederic Roussel
  2009-11-17 18:07 ` [PATCH 1 of 2] Adding kernel 2.6.31.6 and 2.6.27.39 Frederic Roussel
@ 2009-11-18 20:39 ` Yann E. MORIN
  2 siblings, 0 replies; 4+ messages in thread
From: Yann E. MORIN @ 2009-11-18 20:39 UTC (permalink / raw)
  To: crossgcc; +Cc: Frederic Roussel

Frederic,
All,

On Tuesday 17 November 2009 19:02:52 Frederic Roussel wrote:
> The patches I'm sending are fairly minor, bu they are a good exercise for
> me to go through, as wading through the code lets me understand it better.

So, now you understand the code better, I hope we'll see more contributions
from you! ;-p

> - add the latest kernels 2.6.31.6 and 2.6.27.39
> - fix some documentation. Hey, at least someone is reading it ;-)
> - cosmetic fix of a typo

All applied. Thank you!

Regards,
Yann E. MORIN.

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
`------------------------------^-------^------------------^--------------------'



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

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2009-11-18 20:39 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-11-17 18:08 [PATCH 0 of 2] small house-cleaning patches Frederic Roussel
2009-11-17 18:07 ` [PATCH 2 of 2] Fix typos and adjust some documentation Frederic Roussel
2009-11-17 18:07 ` [PATCH 1 of 2] Adding kernel 2.6.31.6 and 2.6.27.39 Frederic Roussel
2009-11-18 20:39 ` [PATCH 0 of 2] small house-cleaning patches Yann E. MORIN

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).