* [PATCH] sh: rsk7203 CONFIG_MTD=n fix
@ 2009-10-26 10:08 Magnus Damm
2009-10-26 10:23 ` Fabio Giovagnini
` (10 more replies)
0 siblings, 11 replies; 12+ messages in thread
From: Magnus Damm @ 2009-10-26 10:08 UTC (permalink / raw)
To: linux-sh
From: Magnus Damm <damm@opensource.se>
Fix the rsk7203 board code to build with CONFIG_MTD=n.
Signed-off-by: Magnus Damm <damm@opensource.se>
---
arch/sh/boards/mach-rsk/devices-rsk7203.c | 4 ----
arch/sh/boards/mach-rsk/setup.c | 23 ++++++++++++++---------
2 files changed, 14 insertions(+), 13 deletions(-)
--- 0001/arch/sh/boards/mach-rsk/devices-rsk7203.c
+++ work/arch/sh/boards/mach-rsk/devices-rsk7203.c 2009-10-26 12:32:26.000000000 +0900
@@ -11,10 +11,6 @@
#include <linux/types.h>
#include <linux/platform_device.h>
#include <linux/interrupt.h>
-#include <linux/mtd/mtd.h>
-#include <linux/mtd/partitions.h>
-#include <linux/mtd/physmap.h>
-#include <linux/mtd/map.h>
#include <linux/smsc911x.h>
#include <linux/gpio.h>
#include <linux/leds.h>
--- 0001/arch/sh/boards/mach-rsk/setup.c
+++ work/arch/sh/boards/mach-rsk/setup.c 2009-10-26 12:02:16.000000000 +0900
@@ -15,14 +15,12 @@
#include <linux/mtd/mtd.h>
#include <linux/mtd/partitions.h>
#include <linux/mtd/physmap.h>
+#ifdef CONFIG_MTD
#include <linux/mtd/map.h>
+#endif
#include <asm/machvec.h>
#include <asm/io.h>
-static const char *probes[] = { "cmdlinepart", NULL };
-
-static struct mtd_partition *parsed_partitions;
-
static struct mtd_partition rsk_partitions[] = {
{
.name = "Bootloader",
@@ -41,6 +39,8 @@ static struct mtd_partition rsk_partitio
};
static struct physmap_flash_data flash_data = {
+ .parts = rsk_partitions,
+ .nr_parts = ARRAY_SIZE(rsk_partitions),
.width = 2,
};
@@ -60,7 +60,8 @@ static struct platform_device flash_devi
},
};
-static struct mtd_info *flash_mtd;
+#ifdef CONFIG_MTD
+static const char *probes[] = { "cmdlinepart", NULL };
static struct map_info rsk_flash_map = {
.name = "RSK+ Flash",
@@ -68,6 +69,10 @@ static struct map_info rsk_flash_map = {
.bankwidth = 2,
};
+static struct mtd_info *flash_mtd;
+
+static struct mtd_partition *parsed_partitions;
+
static void __init set_mtd_partitions(void)
{
int nr_parts = 0;
@@ -77,14 +82,14 @@ static void __init set_mtd_partitions(vo
nr_parts = parse_mtd_partitions(flash_mtd, probes,
&parsed_partitions, 0);
/* If there is no partition table, used the hard coded table */
- if (nr_parts <= 0) {
- flash_data.parts = rsk_partitions;
- flash_data.nr_parts = ARRAY_SIZE(rsk_partitions);
- } else {
+ if (nr_parts > 0) {
flash_data.nr_parts = nr_parts;
flash_data.parts = parsed_partitions;
}
}
+#else
+static inline void set_mtd_partitions(void) {}
+#endif
static struct platform_device *rsk_devices[] __initdata = {
&flash_device,
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] sh: rsk7203 CONFIG_MTD=n fix
2009-10-26 10:08 [PATCH] sh: rsk7203 CONFIG_MTD=n fix Magnus Damm
@ 2009-10-26 10:23 ` Fabio Giovagnini
2009-10-26 10:56 ` Magnus Damm
` (9 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: Fabio Giovagnini @ 2009-10-26 10:23 UTC (permalink / raw)
To: linux-sh
Hi, all
just in these days I'm designing a new custom borad derived from rsk7203.
I'd like to use linux-sh instead of uc-linux.
What toolchain should I use?
Where can I find the git user manual
Thanks a lot
Reagrds
Alle 11:08, lunedì 26 ottobre 2009, Magnus Damm ha scritto:
> From: Magnus Damm <damm@opensource.se>
>
> Fix the rsk7203 board code to build with CONFIG_MTD=n.
>
> Signed-off-by: Magnus Damm <damm@opensource.se>
> ---
>
> arch/sh/boards/mach-rsk/devices-rsk7203.c | 4 ----
> arch/sh/boards/mach-rsk/setup.c | 23 ++++++++++++++---------
> 2 files changed, 14 insertions(+), 13 deletions(-)
>
> --- 0001/arch/sh/boards/mach-rsk/devices-rsk7203.c
> +++ work/arch/sh/boards/mach-rsk/devices-rsk7203.c 2009-10-26
> 12:32:26.000000000 +0900 @@ -11,10 +11,6 @@
> #include <linux/types.h>
> #include <linux/platform_device.h>
> #include <linux/interrupt.h>
> -#include <linux/mtd/mtd.h>
> -#include <linux/mtd/partitions.h>
> -#include <linux/mtd/physmap.h>
> -#include <linux/mtd/map.h>
> #include <linux/smsc911x.h>
> #include <linux/gpio.h>
> #include <linux/leds.h>
> --- 0001/arch/sh/boards/mach-rsk/setup.c
> +++ work/arch/sh/boards/mach-rsk/setup.c 2009-10-26 12:02:16.000000000
> +0900 @@ -15,14 +15,12 @@
> #include <linux/mtd/mtd.h>
> #include <linux/mtd/partitions.h>
> #include <linux/mtd/physmap.h>
> +#ifdef CONFIG_MTD
> #include <linux/mtd/map.h>
> +#endif
> #include <asm/machvec.h>
> #include <asm/io.h>
>
> -static const char *probes[] = { "cmdlinepart", NULL };
> -
> -static struct mtd_partition *parsed_partitions;
> -
> static struct mtd_partition rsk_partitions[] = {
> {
> .name = "Bootloader",
> @@ -41,6 +39,8 @@ static struct mtd_partition rsk_partitio
> };
>
> static struct physmap_flash_data flash_data = {
> + .parts = rsk_partitions,
> + .nr_parts = ARRAY_SIZE(rsk_partitions),
> .width = 2,
> };
>
> @@ -60,7 +60,8 @@ static struct platform_device flash_devi
> },
> };
>
> -static struct mtd_info *flash_mtd;
> +#ifdef CONFIG_MTD
> +static const char *probes[] = { "cmdlinepart", NULL };
>
> static struct map_info rsk_flash_map = {
> .name = "RSK+ Flash",
> @@ -68,6 +69,10 @@ static struct map_info rsk_flash_map = {
> .bankwidth = 2,
> };
>
> +static struct mtd_info *flash_mtd;
> +
> +static struct mtd_partition *parsed_partitions;
> +
> static void __init set_mtd_partitions(void)
> {
> int nr_parts = 0;
> @@ -77,14 +82,14 @@ static void __init set_mtd_partitions(vo
> nr_parts = parse_mtd_partitions(flash_mtd, probes,
> &parsed_partitions, 0);
> /* If there is no partition table, used the hard coded table */
> - if (nr_parts <= 0) {
> - flash_data.parts = rsk_partitions;
> - flash_data.nr_parts = ARRAY_SIZE(rsk_partitions);
> - } else {
> + if (nr_parts > 0) {
> flash_data.nr_parts = nr_parts;
> flash_data.parts = parsed_partitions;
> }
> }
> +#else
> +static inline void set_mtd_partitions(void) {}
> +#endif
>
> static struct platform_device *rsk_devices[] __initdata = {
> &flash_device,
> --
> To unsubscribe from this list: send the line "unsubscribe linux-sh" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
--
Fabio Giovagnini
Aurion s.r.l.
CF e P.IVA 00885711200
Tel. +39.335.8350919
www.aurion-tech.com
account telefono VoIP skype (www.skype.com):
aurion.giovagnini
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] sh: rsk7203 CONFIG_MTD=n fix
2009-10-26 10:08 [PATCH] sh: rsk7203 CONFIG_MTD=n fix Magnus Damm
2009-10-26 10:23 ` Fabio Giovagnini
@ 2009-10-26 10:56 ` Magnus Damm
2009-10-26 10:58 ` Paul Mundt
` (8 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: Magnus Damm @ 2009-10-26 10:56 UTC (permalink / raw)
To: linux-sh
Hey Fabio,
On Mon, Oct 26, 2009 at 7:23 PM, Fabio Giovagnini
<fabio.giovagnini@aurion-tech.com> wrote:
> just in these days I'm designing a new custom borad derived from rsk7203.
> I'd like to use linux-sh instead of uc-linux.
> What toolchain should I use?
Try the latest codesourcery toolchain. I use that for kernel
development. For user space I'm not sure.
> Where can I find the git user manual
Good question. I suspect that there are a wide range of documents
available for git, but I don't think I'm the right person to give any
advice about that.
Cheers,
/ magnus
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] sh: rsk7203 CONFIG_MTD=n fix
2009-10-26 10:08 [PATCH] sh: rsk7203 CONFIG_MTD=n fix Magnus Damm
2009-10-26 10:23 ` Fabio Giovagnini
2009-10-26 10:56 ` Magnus Damm
@ 2009-10-26 10:58 ` Paul Mundt
2009-10-26 11:23 ` Fabio Giovagnini
` (7 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: Paul Mundt @ 2009-10-26 10:58 UTC (permalink / raw)
To: linux-sh
On Mon, Oct 26, 2009 at 07:08:55PM +0900, Magnus Damm wrote:
> Fix the rsk7203 board code to build with CONFIG_MTD=n.
On Mon, Oct 26, 2009 at 07:12:39PM +0900, Magnus Damm wrote:
> Add an uImage.bin target to allow uncompressed uImages.
> Useful for boards with busted u-boot decompression like
> the rsk7203 on my desk.
Applied to the 2.6.32 queue, thanks.
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] sh: rsk7203 CONFIG_MTD=n fix
2009-10-26 10:08 [PATCH] sh: rsk7203 CONFIG_MTD=n fix Magnus Damm
` (2 preceding siblings ...)
2009-10-26 10:58 ` Paul Mundt
@ 2009-10-26 11:23 ` Fabio Giovagnini
2009-10-26 12:12 ` Paul Mundt
` (6 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: Fabio Giovagnini @ 2009-10-26 11:23 UTC (permalink / raw)
To: linux-sh
OK. Thanks a lot.
Did you build any application for rsk7203?
I used MCP data environment, but it is without g++, so I cannot use libraries
as SDL, qt embedded, or more.
I think exculding all the g++ stuff is not strategic.
Alle 11:56, lunedì 26 ottobre 2009, Magnus Damm ha scritto:
> Hey Fabio,
>
> On Mon, Oct 26, 2009 at 7:23 PM, Fabio Giovagnini
>
> <fabio.giovagnini@aurion-tech.com> wrote:
> > just in these days I'm designing a new custom borad derived from rsk7203.
> > I'd like to use linux-sh instead of uc-linux.
> > What toolchain should I use?
>
> Try the latest codesourcery toolchain. I use that for kernel
> development. For user space I'm not sure.
>
> > Where can I find the git user manual
>
> Good question. I suspect that there are a wide range of documents
> available for git, but I don't think I'm the right person to give any
> advice about that.
>
> Cheers,
>
> / magnus
> --
> To unsubscribe from this list: send the line "unsubscribe linux-sh" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
--
Fabio Giovagnini
Aurion s.r.l.
CF e P.IVA 00885711200
Tel. +39.335.8350919
www.aurion-tech.com
account telefono VoIP skype (www.skype.com):
aurion.giovagnini
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] sh: rsk7203 CONFIG_MTD=n fix
2009-10-26 10:08 [PATCH] sh: rsk7203 CONFIG_MTD=n fix Magnus Damm
` (3 preceding siblings ...)
2009-10-26 11:23 ` Fabio Giovagnini
@ 2009-10-26 12:12 ` Paul Mundt
2009-10-26 13:49 ` Fabio Giovagnini
` (5 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: Paul Mundt @ 2009-10-26 12:12 UTC (permalink / raw)
To: linux-sh
On Mon, Oct 26, 2009 at 12:23:57PM +0100, Fabio Giovagnini wrote:
> OK. Thanks a lot.
> Did you build any application for rsk7203?
> I used MCP data environment, but it is without g++, so I cannot use libraries
> as SDL, qt embedded, or more.
> I think exculding all the g++ stuff is not strategic.
>
Then talk to MPC about it. This is not an MPC support forum, and
obviously we do not recommend using antiquated toolchains.
The CodeSourcery toolchain is the only one that is current and supported,
although the SH-FDPIC toolchain aimed at SH-2A is not yet publically
available. However you can of course take the source and attempt to
construct a FLAT toolchain from it in the interim (although this too
would result in a currently unsupported configuration).
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] sh: rsk7203 CONFIG_MTD=n fix
2009-10-26 10:08 [PATCH] sh: rsk7203 CONFIG_MTD=n fix Magnus Damm
` (4 preceding siblings ...)
2009-10-26 12:12 ` Paul Mundt
@ 2009-10-26 13:49 ` Fabio Giovagnini
2009-10-26 21:12 ` Fabio Giovagnini
` (4 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: Fabio Giovagnini @ 2009-10-26 13:49 UTC (permalink / raw)
To: linux-sh
I hacked the previuos MCP data toolchain and I got g++ runnung, so I was able
to compile and run SDL based applications.
Now I start from u-boot to manage the board from the reset. Later I'll
approach the problem of user space applications.
Coudesourgery toolchian is uClibc based or glibc based?
Thanksa alot
Alle 13:12, lunedì 26 ottobre 2009, Paul Mundt ha scritto:
> On Mon, Oct 26, 2009 at 12:23:57PM +0100, Fabio Giovagnini wrote:
> > OK. Thanks a lot.
> > Did you build any application for rsk7203?
> > I used MCP data environment, but it is without g++, so I cannot use
> > libraries as SDL, qt embedded, or more.
> > I think exculding all the g++ stuff is not strategic.
>
> Then talk to MPC about it. This is not an MPC support forum, and
> obviously we do not recommend using antiquated toolchains.
>
> The CodeSourcery toolchain is the only one that is current and supported,
> although the SH-FDPIC toolchain aimed at SH-2A is not yet publically
> available. However you can of course take the source and attempt to
> construct a FLAT toolchain from it in the interim (although this too
> would result in a currently unsupported configuration).
> --
> To unsubscribe from this list: send the line "unsubscribe linux-sh" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
--
Fabio Giovagnini
Aurion s.r.l.
CF e P.IVA 00885711200
Tel. +39.335.8350919
www.aurion-tech.com
account telefono VoIP skype (www.skype.com):
aurion.giovagnini
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] sh: rsk7203 CONFIG_MTD=n fix
2009-10-26 10:08 [PATCH] sh: rsk7203 CONFIG_MTD=n fix Magnus Damm
` (5 preceding siblings ...)
2009-10-26 13:49 ` Fabio Giovagnini
@ 2009-10-26 21:12 ` Fabio Giovagnini
2009-10-26 21:15 ` Paul Mundt
` (3 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: Fabio Giovagnini @ 2009-10-26 21:12 UTC (permalink / raw)
To: linux-sh
Is this the propèer repository where to clone kernel from?
git clone git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git
Thanks a lot
Alle 14:49, lunedì 26 ottobre 2009, Fabio Giovagnini ha scritto:
> I hacked the previuos MCP data toolchain and I got g++ runnung, so I was
> able to compile and run SDL based applications.
> Now I start from u-boot to manage the board from the reset. Later I'll
> approach the problem of user space applications.
> Coudesourgery toolchian is uClibc based or glibc based?
>
> Thanksa alot
>
> Alle 13:12, lunedì 26 ottobre 2009, Paul Mundt ha scritto:
> > On Mon, Oct 26, 2009 at 12:23:57PM +0100, Fabio Giovagnini wrote:
> > > OK. Thanks a lot.
> > > Did you build any application for rsk7203?
> > > I used MCP data environment, but it is without g++, so I cannot use
> > > libraries as SDL, qt embedded, or more.
> > > I think exculding all the g++ stuff is not strategic.
> >
> > Then talk to MPC about it. This is not an MPC support forum, and
> > obviously we do not recommend using antiquated toolchains.
> >
> > The CodeSourcery toolchain is the only one that is current and supported,
> > although the SH-FDPIC toolchain aimed at SH-2A is not yet publically
> > available. However you can of course take the source and attempt to
> > construct a FLAT toolchain from it in the interim (although this too
> > would result in a currently unsupported configuration).
> > --
> > To unsubscribe from this list: send the line "unsubscribe linux-sh" in
> > the body of a message to majordomo@vger.kernel.org
> > More majordomo info at http://vger.kernel.org/majordomo-info.html
--
Fabio Giovagnini
Aurion s.r.l.
CF e P.IVA 00885711200
Tel. +39.335.8350919
www.aurion-tech.com
account telefono VoIP skype (www.skype.com):
aurion.giovagnini
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] sh: rsk7203 CONFIG_MTD=n fix
2009-10-26 10:08 [PATCH] sh: rsk7203 CONFIG_MTD=n fix Magnus Damm
` (6 preceding siblings ...)
2009-10-26 21:12 ` Fabio Giovagnini
@ 2009-10-26 21:15 ` Paul Mundt
2009-10-26 21:34 ` Fabio Giovagnini
` (2 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: Paul Mundt @ 2009-10-26 21:15 UTC (permalink / raw)
To: linux-sh
On Mon, Oct 26, 2009 at 10:12:41PM +0100, Fabio Giovagnini wrote:
> Is this the prop?er repository where to clone kernel from?
> git clone git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git
>
Fabio, if you have specific questions, start a new thread, rather than
hijacking existing ones. Beyond that, all of these sorts of questions are
answered on the wiki at http://www.linux-sh.org.
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] sh: rsk7203 CONFIG_MTD=n fix
2009-10-26 10:08 [PATCH] sh: rsk7203 CONFIG_MTD=n fix Magnus Damm
` (7 preceding siblings ...)
2009-10-26 21:15 ` Paul Mundt
@ 2009-10-26 21:34 ` Fabio Giovagnini
2009-10-26 21:42 ` Paul Mundt
2009-10-26 21:47 ` Fabio Giovagnini
10 siblings, 0 replies; 12+ messages in thread
From: Fabio Giovagnini @ 2009-10-26 21:34 UTC (permalink / raw)
To: linux-sh
Sorry Lethal, for my improper use of the thread.
I aplogize to everyone for my mistake.
About http://www.linux-sh.org I have read more and more and it is not so
clear.
Maybe I'm not so smart, or I'have been out of main stream for a very long
time.
Excuse me again.
Alle 22:15, lunedì 26 ottobre 2009, Paul Mundt ha scritto:
> On Mon, Oct 26, 2009 at 10:12:41PM +0100, Fabio Giovagnini wrote:
> > Is this the prop?er repository where to clone kernel from?
> > git clone git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git
>
> Fabio, if you have specific questions, start a new thread, rather than
> hijacking existing ones. Beyond that, all of these sorts of questions are
> answered on the wiki at http://www.linux-sh.org.
> --
> To unsubscribe from this list: send the line "unsubscribe linux-sh" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
--
Fabio Giovagnini
Aurion s.r.l.
CF e P.IVA 00885711200
Tel. +39.335.8350919
www.aurion-tech.com
account telefono VoIP skype (www.skype.com):
aurion.giovagnini
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] sh: rsk7203 CONFIG_MTD=n fix
2009-10-26 10:08 [PATCH] sh: rsk7203 CONFIG_MTD=n fix Magnus Damm
` (8 preceding siblings ...)
2009-10-26 21:34 ` Fabio Giovagnini
@ 2009-10-26 21:42 ` Paul Mundt
2009-10-26 21:47 ` Fabio Giovagnini
10 siblings, 0 replies; 12+ messages in thread
From: Paul Mundt @ 2009-10-26 21:42 UTC (permalink / raw)
To: linux-sh
On Mon, Oct 26, 2009 at 10:34:29PM +0100, Fabio Giovagnini wrote:
> Sorry Lethal, for my improper use of the thread.
> I aplogize to everyone for my mistake.
> About http://www.linux-sh.org I have read more and more and it is not so
> clear.
> Maybe I'm not so smart, or I'have been out of main stream for a very long
> time.
> Excuse me again.
>
The relevant bits are here:
http://linux-sh.org/cgi-bin/moin.cgi/Getting_source
if you wish to pull from the SH staging tree, than the git url you
mentioned is the correct one. On the other hand, it can either be ahead
or behind whatever is in Linus's tree, so unless you are doing active
development, you can just as easily use that.
You will also find a link to documentation on using git from that page.
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] sh: rsk7203 CONFIG_MTD=n fix
2009-10-26 10:08 [PATCH] sh: rsk7203 CONFIG_MTD=n fix Magnus Damm
` (9 preceding siblings ...)
2009-10-26 21:42 ` Paul Mundt
@ 2009-10-26 21:47 ` Fabio Giovagnini
10 siblings, 0 replies; 12+ messages in thread
From: Fabio Giovagnini @ 2009-10-26 21:47 UTC (permalink / raw)
To: linux-sh
Thanks very much.
I'll try to disturb as few as possible.
Regards
Alle 22:42, lunedì 26 ottobre 2009, Paul Mundt ha scritto:
> On Mon, Oct 26, 2009 at 10:34:29PM +0100, Fabio Giovagnini wrote:
> > Sorry Lethal, for my improper use of the thread.
> > I aplogize to everyone for my mistake.
> > About http://www.linux-sh.org I have read more and more and it is not so
> > clear.
> > Maybe I'm not so smart, or I'have been out of main stream for a very long
> > time.
> > Excuse me again.
>
> The relevant bits are here:
>
> http://linux-sh.org/cgi-bin/moin.cgi/Getting_source
>
> if you wish to pull from the SH staging tree, than the git url you
> mentioned is the correct one. On the other hand, it can either be ahead
> or behind whatever is in Linus's tree, so unless you are doing active
> development, you can just as easily use that.
>
> You will also find a link to documentation on using git from that page.
> --
> To unsubscribe from this list: send the line "unsubscribe linux-sh" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
--
Fabio Giovagnini
Aurion s.r.l.
CF e P.IVA 00885711200
Tel. +39.335.8350919
www.aurion-tech.com
account telefono VoIP skype (www.skype.com):
aurion.giovagnini
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2009-10-26 21:47 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-10-26 10:08 [PATCH] sh: rsk7203 CONFIG_MTD=n fix Magnus Damm
2009-10-26 10:23 ` Fabio Giovagnini
2009-10-26 10:56 ` Magnus Damm
2009-10-26 10:58 ` Paul Mundt
2009-10-26 11:23 ` Fabio Giovagnini
2009-10-26 12:12 ` Paul Mundt
2009-10-26 13:49 ` Fabio Giovagnini
2009-10-26 21:12 ` Fabio Giovagnini
2009-10-26 21:15 ` Paul Mundt
2009-10-26 21:34 ` Fabio Giovagnini
2009-10-26 21:42 ` Paul Mundt
2009-10-26 21:47 ` Fabio Giovagnini
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox