All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/1] OpenRISC: Fix kernel build problem on OpenRISC
@ 2015-05-12 13:45 anees
  2015-05-12 20:07 ` Guenter Roeck
  0 siblings, 1 reply; 14+ messages in thread
From: anees @ 2015-05-12 13:45 UTC (permalink / raw)
  To: Jonas Bonn, linux; +Cc: linux-kernel, anees

Kernel build fails with error "target elf32-or32 not found"
This is due to the change in OpenRISC compiler prefix from "or12"
to "or1k". Add config options that set architecture output format
default to "or1k" but also allow user to select older prefix.

Tested with gcc version 4.9.1 uclibc

Signed-off-by: anees <rean12is@gmail.com>
---
 arch/openrisc/Kconfig              | 12 ++++++++++++
 arch/openrisc/kernel/vmlinux.lds.S |  6 +++---
 2 files changed, 15 insertions(+), 3 deletions(-)

diff --git a/arch/openrisc/Kconfig b/arch/openrisc/Kconfig
index e5a693b..c7fe7c8 100644
--- a/arch/openrisc/Kconfig
+++ b/arch/openrisc/Kconfig
@@ -75,6 +75,18 @@ config OPENRISC_BUILTIN_DTB
         string "Builtin DTB"
         default ""
 
+config OUTPUT_FORMAT_TYPE
+	string "Architecture output format type"
+	default "or1k"
+	help
+	  Write "or12" if building kernel against an older toolchain
+	  else leave the default (or1k)
+
+config OUTPUT_FORMAT
+	string
+	default "elf32-or1k" if   OUTPUT_FORMAT_TYPE = "or1k"
+	default "elf32-or12" if   OUTPUT_FORMAT_TYPE = "or12"
+
 menu "Class II Instructions"
 
 config OPENRISC_HAVE_INST_FF1
diff --git a/arch/openrisc/kernel/vmlinux.lds.S b/arch/openrisc/kernel/vmlinux.lds.S
index 2d69a85..5cd274c 100644
--- a/arch/openrisc/kernel/vmlinux.lds.S
+++ b/arch/openrisc/kernel/vmlinux.lds.S
@@ -23,14 +23,14 @@
  *		- recheck if all aligments are really needed
  */
 
-#  define LOAD_OFFSET  PAGE_OFFSET
-#  define LOAD_BASE    PAGE_OFFSET
+#define LOAD_OFFSET  PAGE_OFFSET
+#define LOAD_BASE    PAGE_OFFSET
 
 #include <asm/page.h>
 #include <asm/cache.h>
 #include <asm-generic/vmlinux.lds.h>
 
-OUTPUT_FORMAT("elf32-or32", "elf32-or32", "elf32-or32")
+OUTPUT_FORMAT(CONFIG_OUTPUT_FORMAT, CONFIG_OUTPUT_FORMAT, CONFIG_OUTPUT_FORMAT)
 jiffies = jiffies_64 + 4;
 
 SECTIONS
-- 
1.9.1


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

* Re: [PATCH 1/1] OpenRISC: Fix kernel build problem on OpenRISC
  2015-05-12 13:45 [PATCH 1/1] OpenRISC: Fix kernel build problem on OpenRISC anees
@ 2015-05-12 20:07 ` Guenter Roeck
  2015-05-13  9:58   ` Paul Bolle
  0 siblings, 1 reply; 14+ messages in thread
From: Guenter Roeck @ 2015-05-12 20:07 UTC (permalink / raw)
  To: anees; +Cc: Jonas Bonn, linux, linux-kernel

On Tue, May 12, 2015 at 03:45:21PM +0200, anees wrote:
> Kernel build fails with error "target elf32-or32 not found"
> This is due to the change in OpenRISC compiler prefix from "or12"
> to "or1k". Add config options that set architecture output format
> default to "or1k" but also allow user to select older prefix.
> 
> Tested with gcc version 4.9.1 uclibc
> 
> Signed-off-by: anees <rean12is@gmail.com>
> ---
>  arch/openrisc/Kconfig              | 12 ++++++++++++
>  arch/openrisc/kernel/vmlinux.lds.S |  6 +++---
>  2 files changed, 15 insertions(+), 3 deletions(-)
> 
> diff --git a/arch/openrisc/Kconfig b/arch/openrisc/Kconfig
> index e5a693b..c7fe7c8 100644
> --- a/arch/openrisc/Kconfig
> +++ b/arch/openrisc/Kconfig
> @@ -75,6 +75,18 @@ config OPENRISC_BUILTIN_DTB
>          string "Builtin DTB"
>          default ""
>  
> +config OUTPUT_FORMAT_TYPE
> +	string "Architecture output format type"
> +	default "or1k"
> +	help
> +	  Write "or12" if building kernel against an older toolchain
> +	  else leave the default (or1k)
> +
That means I'll have to use different toolchains for different kernel
versions, or hand-edit default configuration files to able to work
with the same toolchain. Both is, from a testing perspective,
quite annoying.

Maybe I should simply stop testing older kernels for openrisc
after this patch has been merged; that would be much easier.
Jonas, is that ok with you ?

Side note: I didn't drop it from Cc:, but the openrisc.net domain
name expired and appears to be for sale.

Guenter

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

* Re: [PATCH 1/1] OpenRISC: Fix kernel build problem on OpenRISC
  2015-05-12 20:07 ` Guenter Roeck
@ 2015-05-13  9:58   ` Paul Bolle
  2015-05-13 13:20     ` Guenter Roeck
  0 siblings, 1 reply; 14+ messages in thread
From: Paul Bolle @ 2015-05-13  9:58 UTC (permalink / raw)
  To: Guenter Roeck; +Cc: anees, Jonas Bonn, linux, linux-kernel

On Tue, 2015-05-12 at 13:07 -0700, Guenter Roeck wrote:
> On Tue, May 12, 2015 at 03:45:21PM +0200, anees wrote:
> > Kernel build fails with error "target elf32-or32 not found"
> > This is due to the change in OpenRISC compiler prefix from "or12"
> > to "or1k". Add config options that set architecture output format
> > default to "or1k" but also allow user to select older prefix.
> > 
> > Tested with gcc version 4.9.1 uclibc
> > 
> > Signed-off-by: anees <rean12is@gmail.com>
> > ---
> >  arch/openrisc/Kconfig              | 12 ++++++++++++
> >  arch/openrisc/kernel/vmlinux.lds.S |  6 +++---
> >  2 files changed, 15 insertions(+), 3 deletions(-)
> > 
> > diff --git a/arch/openrisc/Kconfig b/arch/openrisc/Kconfig
> > index e5a693b..c7fe7c8 100644
> > --- a/arch/openrisc/Kconfig
> > +++ b/arch/openrisc/Kconfig
> > @@ -75,6 +75,18 @@ config OPENRISC_BUILTIN_DTB
> >          string "Builtin DTB"
> >          default ""
> >  
> > +config OUTPUT_FORMAT_TYPE
> > +	string "Architecture output format type"
> > +	default "or1k"
> > +	help
> > +	  Write "or12" if building kernel against an older toolchain
> > +	  else leave the default (or1k)
> > +
> That means I'll have to use different toolchains for different kernel
> versions, or hand-edit default configuration files to able to work
> with the same toolchain. Both is, from a testing perspective,
> quite annoying.

Also quite annoying would be
    $ grep OUTPUT_FORMAT .config 
    CONFIG_OUTPUT_FORMAT_TYPE="typo"

(Note the missing CONFIG_OUTPUT_FORMAT= line.)

What might be less annoying would be something (completely untested)
like:
    choice
	prompt "Architecture output format type"
	default OUTPUT_FORMAT_OR1K
	help
	  Choose "or12" if building kernel against an older toolchain
	  else leave the default "or1k".

    config OUTPUT_FORMAT_OR1K
	bool "or1k"

    config OUTPUT_FORMAT_OR12
	bool "or12"

    enchoice

    config OUTPUT_FORMAT
	string
	default "elf32-or1k" if OUTPUT_FORMAT_OR1K
	default "elf32-or12" if OUTPUT_FORMAT_OR12

> Maybe I should simply stop testing older kernels for openrisc
> after this patch has been merged; that would be much easier.
> Jonas, is that ok with you ?

Would testing be easier if you'd be provided with two defconfig files?
Ie, one for "elf32-or1k" and "elf32-or12".

(Note that "elf32-or12" smells like a typo to me. Shouldn't that be
"elf32-or32"? If not, where does "elf32-or32" fir in this story?)

> Side note: I didn't drop it from Cc:, but the openrisc.net domain
> name expired and appears to be for sale.

That's ominous.

Thanks,


Paul Bolle


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

* Re: [PATCH 1/1] OpenRISC: Fix kernel build problem on OpenRISC
  2015-05-13  9:58   ` Paul Bolle
@ 2015-05-13 13:20     ` Guenter Roeck
  2015-05-13 13:33       ` Paul Bolle
  0 siblings, 1 reply; 14+ messages in thread
From: Guenter Roeck @ 2015-05-13 13:20 UTC (permalink / raw)
  To: Paul Bolle; +Cc: anees, Jonas Bonn, linux, linux-kernel

On 05/13/2015 02:58 AM, Paul Bolle wrote:
> On Tue, 2015-05-12 at 13:07 -0700, Guenter Roeck wrote:
>> On Tue, May 12, 2015 at 03:45:21PM +0200, anees wrote:
>>> Kernel build fails with error "target elf32-or32 not found"
>>> This is due to the change in OpenRISC compiler prefix from "or12"
>>> to "or1k". Add config options that set architecture output format
>>> default to "or1k" but also allow user to select older prefix.
>>>
>>> Tested with gcc version 4.9.1 uclibc
>>>
>>> Signed-off-by: anees <rean12is@gmail.com>
>>> ---
>>>   arch/openrisc/Kconfig              | 12 ++++++++++++
>>>   arch/openrisc/kernel/vmlinux.lds.S |  6 +++---
>>>   2 files changed, 15 insertions(+), 3 deletions(-)
>>>
>>> diff --git a/arch/openrisc/Kconfig b/arch/openrisc/Kconfig
>>> index e5a693b..c7fe7c8 100644
>>> --- a/arch/openrisc/Kconfig
>>> +++ b/arch/openrisc/Kconfig
>>> @@ -75,6 +75,18 @@ config OPENRISC_BUILTIN_DTB
>>>           string "Builtin DTB"
>>>           default ""
>>>
>>> +config OUTPUT_FORMAT_TYPE
>>> +	string "Architecture output format type"
>>> +	default "or1k"
>>> +	help
>>> +	  Write "or12" if building kernel against an older toolchain
>>> +	  else leave the default (or1k)
>>> +
>> That means I'll have to use different toolchains for different kernel
>> versions, or hand-edit default configuration files to able to work
>> with the same toolchain. Both is, from a testing perspective,
>> quite annoying.
>
> Also quite annoying would be
>      $ grep OUTPUT_FORMAT .config
>      CONFIG_OUTPUT_FORMAT_TYPE="typo"
>
> (Note the missing CONFIG_OUTPUT_FORMAT= line.)
>
> What might be less annoying would be something (completely untested)
> like:
>      choice
> 	prompt "Architecture output format type"
> 	default OUTPUT_FORMAT_OR1K
> 	help
> 	  Choose "or12" if building kernel against an older toolchain
> 	  else leave the default "or1k".
>
>      config OUTPUT_FORMAT_OR1K
> 	bool "or1k"
>
>      config OUTPUT_FORMAT_OR12
> 	bool "or12"
>
>      enchoice
>
>      config OUTPUT_FORMAT
> 	string
> 	default "elf32-or1k" if OUTPUT_FORMAT_OR1K
> 	default "elf32-or12" if OUTPUT_FORMAT_OR12
>
>> Maybe I should simply stop testing older kernels for openrisc
>> after this patch has been merged; that would be much easier.
>> Jonas, is that ok with you ?
>
> Would testing be easier if you'd be provided with two defconfig files?
> Ie, one for "elf32-or1k" and "elf32-or12".
>

Just remembered ... or just apply https://lkml.org/lkml/2014/9/19/11 instead.

Guenter


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

* Re: [PATCH 1/1] OpenRISC: Fix kernel build problem on OpenRISC
  2015-05-13 13:20     ` Guenter Roeck
@ 2015-05-13 13:33       ` Paul Bolle
  2015-05-13 13:41         ` Jonas Bonn
  2015-05-13 13:45         ` Guenter Roeck
  0 siblings, 2 replies; 14+ messages in thread
From: Paul Bolle @ 2015-05-13 13:33 UTC (permalink / raw)
  To: Guenter Roeck; +Cc: anees, Jonas Bonn, linux, linux-kernel

On Wed, 2015-05-13 at 06:20 -0700, Guenter Roeck wrote:
> Just remembered ... or just apply https://lkml.org/lkml/2014/9/19/11 instead.

(That patch also suggests that "or12" in the patch we're discussing here
is a typo.)

This is problem is present now for none months, apparently. Your patch
was supposed to be applied already (see
https://lkml.org/lkml/2014/9/22/36 ), but clearly nothing happened.
openrisc.net is for sale.

What's going on here?

Thanks,


Paul Bolle


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

* Re: [PATCH 1/1] OpenRISC: Fix kernel build problem on OpenRISC
  2015-05-13 13:33       ` Paul Bolle
@ 2015-05-13 13:41         ` Jonas Bonn
  2015-05-13 14:28           ` Paul Bolle
                             ` (2 more replies)
  2015-05-13 13:45         ` Guenter Roeck
  1 sibling, 3 replies; 14+ messages in thread
From: Jonas Bonn @ 2015-05-13 13:41 UTC (permalink / raw)
  To: Paul Bolle, Guenter Roeck; +Cc: anees, linux-kernel

On 05/13/2015 03:33 PM, Paul Bolle wrote:
> On Wed, 2015-05-13 at 06:20 -0700, Guenter Roeck wrote:
>> Just remembered ... or just apply https://lkml.org/lkml/2014/9/19/11 instead.
> (That patch also suggests that "or12" in the patch we're discussing here
> is a typo.)
>
> This is problem is present now for none months, apparently. Your patch
> was supposed to be applied already (see
> https://lkml.org/lkml/2014/9/22/36 ), but clearly nothing happened.
> openrisc.net is for sale.
>
> What's going on here?

openrisc.net is no more.... long story, not worth regurgitating.

Guenter's patch is the one to apply.  You can put my Acked-by: Jonas 
Bonn <jonas@southpole.se> on it.  Unfortunately, I'm not currently in a 
position to do anything meaningful with it, so please send it upstream 
directly via Andrew Morton's collection of assorted patches.

/Jonas

>
> Thanks,
>
>
> Paul Bolle
>


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

* Re: [PATCH 1/1] OpenRISC: Fix kernel build problem on OpenRISC
  2015-05-13 13:33       ` Paul Bolle
  2015-05-13 13:41         ` Jonas Bonn
@ 2015-05-13 13:45         ` Guenter Roeck
  1 sibling, 0 replies; 14+ messages in thread
From: Guenter Roeck @ 2015-05-13 13:45 UTC (permalink / raw)
  To: Paul Bolle; +Cc: anees, Jonas Bonn, linux, linux-kernel

On 05/13/2015 06:33 AM, Paul Bolle wrote:
> On Wed, 2015-05-13 at 06:20 -0700, Guenter Roeck wrote:
>> Just remembered ... or just apply https://lkml.org/lkml/2014/9/19/11 instead.
>
> (That patch also suggests that "or12" in the patch we're discussing here
> is a typo.)
>
> This is problem is present now for none months, apparently. Your patch

The problem was already present when openrisc was introduced back in 2011;
see arch/openrisc/TODO.openrisc. I just tried to get it fixed to let me use
a more recent toolchain for my build tests.

> was supposed to be applied already (see
> https://lkml.org/lkml/2014/9/22/36 ), but clearly nothing happened.
> openrisc.net is for sale.
>
> What's going on here?
>

No idea :-(

Guenter


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

* Re: [PATCH 1/1] OpenRISC: Fix kernel build problem on OpenRISC
  2015-05-13 13:41         ` Jonas Bonn
@ 2015-05-13 14:28           ` Paul Bolle
  2015-05-13 14:44             ` Geert Uytterhoeven
  2015-05-13 16:57           ` Guenter Roeck
  2015-06-10 20:21           ` Guenter Roeck
  2 siblings, 1 reply; 14+ messages in thread
From: Paul Bolle @ 2015-05-13 14:28 UTC (permalink / raw)
  To: Jonas Bonn; +Cc: Guenter Roeck, anees, linux-kernel

On Wed, 2015-05-13 at 15:41 +0200, Jonas Bonn wrote:
> openrisc.net is no more.... long story, not worth regurgitating.

I see. What would you suggest as substitutes for:
    MAINTAINERS:W:    http://openrisc.net
    MAINTAINERS:L:    linux@lists.openrisc.net (moderated for non-subscribers)
    MAINTAINERS:T:    git git://openrisc.net/~jonas/linux
    arch/openrisc/README.openrisc:    website         http://openrisc.net
    arch/openrisc/README.openrisc:1)  The toolchain can be obtained from openrisc.net.  Instructions for building
    arch/openrisc/README.openrisc:http://openrisc.net/toolchain-build.html
    arch/openrisc/README.openrisc:    git clone git://openrisc.net/jonas/or1ksim-svn
    arch/openrisc/kernel/setup.c:     printk(KERN_INFO "OpenRISC Linux -- http://openrisc.net\n");

Thanks,


Paul Bolle


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

* Re: [PATCH 1/1] OpenRISC: Fix kernel build problem on OpenRISC
  2015-05-13 14:28           ` Paul Bolle
@ 2015-05-13 14:44             ` Geert Uytterhoeven
  2015-05-13 16:49               ` Guenter Roeck
  0 siblings, 1 reply; 14+ messages in thread
From: Geert Uytterhoeven @ 2015-05-13 14:44 UTC (permalink / raw)
  To: Paul Bolle
  Cc: Jonas Bonn, Guenter Roeck, anees, linux-kernel,
	Openrisc@lists.opencores.org

On Wed, May 13, 2015 at 4:28 PM, Paul Bolle <pebolle@tiscali.nl> wrote:
> On Wed, 2015-05-13 at 15:41 +0200, Jonas Bonn wrote:
>> openrisc.net is no more.... long story, not worth regurgitating.
>
> I see. What would you suggest as substitutes for:
>     MAINTAINERS:W:    http://openrisc.net
>     MAINTAINERS:L:    linux@lists.openrisc.net (moderated for non-subscribers)

openrisc@lists.opencores.org is still active.

>     MAINTAINERS:T:    git git://openrisc.net/~jonas/linux
>     arch/openrisc/README.openrisc:    website         http://openrisc.net
>     arch/openrisc/README.openrisc:1)  The toolchain can be obtained from openrisc.net.  Instructions for building
>     arch/openrisc/README.openrisc:http://openrisc.net/toolchain-build.html
>     arch/openrisc/README.openrisc:    git clone git://openrisc.net/jonas/or1ksim-svn
>     arch/openrisc/kernel/setup.c:     printk(KERN_INFO "OpenRISC Linux -- http://openrisc.net\n");

Gr{oetje,eeting}s,

                        Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

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

* Re: [PATCH 1/1] OpenRISC: Fix kernel build problem on OpenRISC
  2015-05-13 14:44             ` Geert Uytterhoeven
@ 2015-05-13 16:49               ` Guenter Roeck
  0 siblings, 0 replies; 14+ messages in thread
From: Guenter Roeck @ 2015-05-13 16:49 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Paul Bolle, Jonas Bonn, anees, linux-kernel,
	Openrisc@lists.opencores.org

On Wed, May 13, 2015 at 04:44:58PM +0200, Geert Uytterhoeven wrote:
> On Wed, May 13, 2015 at 4:28 PM, Paul Bolle <pebolle@tiscali.nl> wrote:
> > On Wed, 2015-05-13 at 15:41 +0200, Jonas Bonn wrote:
> >> openrisc.net is no more.... long story, not worth regurgitating.
> >
> > I see. What would you suggest as substitutes for:
> >     MAINTAINERS:W:    http://openrisc.net
> >     MAINTAINERS:L:    linux@lists.openrisc.net (moderated for non-subscribers)
> 
> openrisc@lists.opencores.org is still active.
> 
> >     MAINTAINERS:T:    git git://openrisc.net/~jonas/linux

Maybe replace it with https://github.com/openrisc/linux ?

Guenter

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

* Re: [PATCH 1/1] OpenRISC: Fix kernel build problem on OpenRISC
  2015-05-13 13:41         ` Jonas Bonn
  2015-05-13 14:28           ` Paul Bolle
@ 2015-05-13 16:57           ` Guenter Roeck
  2015-06-10 20:21           ` Guenter Roeck
  2 siblings, 0 replies; 14+ messages in thread
From: Guenter Roeck @ 2015-05-13 16:57 UTC (permalink / raw)
  To: Jonas Bonn; +Cc: Paul Bolle, anees, linux-kernel

On Wed, May 13, 2015 at 03:41:42PM +0200, Jonas Bonn wrote:
> On 05/13/2015 03:33 PM, Paul Bolle wrote:
> >On Wed, 2015-05-13 at 06:20 -0700, Guenter Roeck wrote:
> >>Just remembered ... or just apply https://lkml.org/lkml/2014/9/19/11 instead.
> >(That patch also suggests that "or12" in the patch we're discussing here
> >is a typo.)
> >
> >This is problem is present now for none months, apparently. Your patch
> >was supposed to be applied already (see
> >https://lkml.org/lkml/2014/9/22/36 ), but clearly nothing happened.
> >openrisc.net is for sale.
> >
> >What's going on here?
> 
> openrisc.net is no more.... long story, not worth regurgitating.
> 
> Guenter's patch is the one to apply.  You can put my Acked-by: Jonas Bonn
> <jonas@southpole.se> on it.  Unfortunately, I'm not currently in a position
> to do anything meaningful with it, so please send it upstream directly via
> Andrew Morton's collection of assorted patches.
> 

I resent my patch with your Acked-by: and copied Andrew.

Guenter

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

* Re: [PATCH 1/1] OpenRISC: Fix kernel build problem on OpenRISC
  2015-05-13 13:41         ` Jonas Bonn
  2015-05-13 14:28           ` Paul Bolle
  2015-05-13 16:57           ` Guenter Roeck
@ 2015-06-10 20:21           ` Guenter Roeck
  2015-06-11  9:52             ` Paul Bolle
  2 siblings, 1 reply; 14+ messages in thread
From: Guenter Roeck @ 2015-06-10 20:21 UTC (permalink / raw)
  To: Jonas Bonn, Paul Bolle; +Cc: anees, linux-kernel, Stefan Kristiansson

On 05/13/2015 06:41 AM, Jonas Bonn wrote:
> On 05/13/2015 03:33 PM, Paul Bolle wrote:
>> On Wed, 2015-05-13 at 06:20 -0700, Guenter Roeck wrote:
>>> Just remembered ... or just apply https://lkml.org/lkml/2014/9/19/11 instead.
>> (That patch also suggests that "or12" in the patch we're discussing here
>> is a typo.)
>>
>> This is problem is present now for none months, apparently. Your patch
>> was supposed to be applied already (see
>> https://lkml.org/lkml/2014/9/22/36 ), but clearly nothing happened.
>> openrisc.net is for sale.
>>
>> What's going on here?
>
> openrisc.net is no more.... long story, not worth regurgitating.
>
> Guenter's patch is the one to apply.  You can put my Acked-by: Jonas Bonn <jonas@southpole.se> on it.  Unfortunately, I'm not currently in a position to do anything meaningful with it, so please send it upstream directly via Andrew Morton's collection of assorted patches.
>

Jonas,

Looks like you are out for the time being, and we can not add Stefan
as maintainer (yet) because he doesn't have a signed key.

Wonder if I should step in as interim maintainer to handle urgent
requests like this one. Comments, thoughts, anyone ?

Guenter


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

* Re: [PATCH 1/1] OpenRISC: Fix kernel build problem on OpenRISC
  2015-06-10 20:21           ` Guenter Roeck
@ 2015-06-11  9:52             ` Paul Bolle
  2015-06-11 15:42               ` Guenter Roeck
  0 siblings, 1 reply; 14+ messages in thread
From: Paul Bolle @ 2015-06-11  9:52 UTC (permalink / raw)
  To: Guenter Roeck; +Cc: Jonas Bonn, anees, linux-kernel, Stefan Kristiansson

On Wed, 2015-06-10 at 13:21 -0700, Guenter Roeck wrote:
> Wonder if I should step in as interim maintainer to handle urgent
> requests like this one. Comments, thoughts, anyone ?

This is about a pretty major build issue, that's been known for ten
months now, isn't? If that's correct, this is not an urgent request, but
a chronic issue. So in that case anyone who cares about OpenRISC should
consider taking over. Because this looks like an orphaned architecture
to me.

Am I being too strict?


Paul Bolle


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

* Re: [PATCH 1/1] OpenRISC: Fix kernel build problem on OpenRISC
  2015-06-11  9:52             ` Paul Bolle
@ 2015-06-11 15:42               ` Guenter Roeck
  0 siblings, 0 replies; 14+ messages in thread
From: Guenter Roeck @ 2015-06-11 15:42 UTC (permalink / raw)
  To: Paul Bolle; +Cc: Jonas Bonn, anees, linux-kernel, Stefan Kristiansson

On 06/11/2015 02:52 AM, Paul Bolle wrote:
> On Wed, 2015-06-10 at 13:21 -0700, Guenter Roeck wrote:
>> Wonder if I should step in as interim maintainer to handle urgent
>> requests like this one. Comments, thoughts, anyone ?
>
> This is about a pretty major build issue, that's been known for ten
> months now, isn't? If that's correct, this is not an urgent request, but
> a chronic issue. So in that case anyone who cares about OpenRISC should
> consider taking over. Because this looks like an orphaned architecture
> to me.
>

Those using the architecture simply apply the patch, or a similar patch,
or use the tree Stefan maintains at github.

Sure, we can wait until Stefan gets a public key and we can add him
as maintainer. I guess the active users use Stefan's tree at github
anyway.

Guenter


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

end of thread, other threads:[~2015-06-11 15:42 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-05-12 13:45 [PATCH 1/1] OpenRISC: Fix kernel build problem on OpenRISC anees
2015-05-12 20:07 ` Guenter Roeck
2015-05-13  9:58   ` Paul Bolle
2015-05-13 13:20     ` Guenter Roeck
2015-05-13 13:33       ` Paul Bolle
2015-05-13 13:41         ` Jonas Bonn
2015-05-13 14:28           ` Paul Bolle
2015-05-13 14:44             ` Geert Uytterhoeven
2015-05-13 16:49               ` Guenter Roeck
2015-05-13 16:57           ` Guenter Roeck
2015-06-10 20:21           ` Guenter Roeck
2015-06-11  9:52             ` Paul Bolle
2015-06-11 15:42               ` Guenter Roeck
2015-05-13 13:45         ` Guenter Roeck

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.