All of lore.kernel.org
 help / color / mirror / Atom feed
* Can not compile Ecovec board
@ 2011-08-26  1:07 Kuninori Morimoto
  2011-08-26  4:30 ` Nobuhiro Iwamatsu
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: Kuninori Morimoto @ 2011-08-26  1:07 UTC (permalink / raw)
  To: linux-sh


Hi Paul, Magnus, SH-ML members

I can not compile Ecovec board on latest linus/master branch
it say

-------------------------
  GEN     /opt/usr/src/WORK/morimoto/gitlinux/binary/ecovec/Makefile
  CHK     include/linux/version.h
  Using /opt/usr/src/WORK/morimoto/gitlinux/linux-2.6 as source for kernel
  CHK     include/generated/utsrelease.h
make[3]: `include/generated/machtypes.h' is up to date.
  CALL    /opt/usr/src/WORK/morimoto/gitlinux/linux-2.6/scripts/checksyscalls.sh
  CHK     include/generated/compile.h
  CC      arch/sh/kernel/idle.o
  CC      arch/sh/kernel/ptrace_32.o
  CC      arch/sh/kernel/return_address.o
/opt/usr/src/WORK/morimoto/gitlinux/linux-2.6/arch/sh/kernel/idle.c:25:15: error: static declaration of 'pm_idle' follows non-static declaration
/opt/usr/src/WORK/morimoto/gitlinux/linux-2.6/include/linux/pm.h:34:15: note: previous declaration of 'pm_idle' was here
make[3]: *** [arch/sh/kernel/idle.o] Error 1
make[3]: *** Waiting for unfinished jobs....
/opt/usr/src/WORK/morimoto/gitlinux/linux-2.6/arch/sh/kernel/ptrace_32.c:66:6: error: conflicting types for 'ptrace_triggered'
/opt/usr/src/WORK/morimoto/gitlinux/linux-2.6/arch/sh/include/asm/ptrace.h:126:13: note: previous declaration of 'ptrace_triggered' was here
make[3]: *** [arch/sh/kernel/ptrace_32.o] Error 1
make[2]: *** [arch/sh/kernel] Error 2
make[2]: *** Waiting for unfinished jobs....
make[2]: *** wait: No child processes.  Stop.
make[1]: *** [sub-make] Error 2
make: *** [all] Error 2
-------------------------

Best regards
---
Kuninori Morimoto

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

* Re: Can not compile Ecovec board
  2011-08-26  1:07 Can not compile Ecovec board Kuninori Morimoto
@ 2011-08-26  4:30 ` Nobuhiro Iwamatsu
  2011-08-26  4:51 ` Magnus Damm
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Nobuhiro Iwamatsu @ 2011-08-26  4:30 UTC (permalink / raw)
  To: linux-sh

This was already revised in linux-next tree.

Best regards,
  Nobuhiro

2011/8/26 Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>:
>
> Hi Paul, Magnus, SH-ML members
>
> I can not compile Ecovec board on latest linus/master branch
> it say
>
> -------------------------
>  GEN     /opt/usr/src/WORK/morimoto/gitlinux/binary/ecovec/Makefile
>  CHK     include/linux/version.h
>  Using /opt/usr/src/WORK/morimoto/gitlinux/linux-2.6 as source for kernel
>  CHK     include/generated/utsrelease.h
> make[3]: `include/generated/machtypes.h' is up to date.
>  CALL    /opt/usr/src/WORK/morimoto/gitlinux/linux-2.6/scripts/checksyscalls.sh
>  CHK     include/generated/compile.h
>  CC      arch/sh/kernel/idle.o
>  CC      arch/sh/kernel/ptrace_32.o
>  CC      arch/sh/kernel/return_address.o
> /opt/usr/src/WORK/morimoto/gitlinux/linux-2.6/arch/sh/kernel/idle.c:25:15: error: static declaration of 'pm_idle' follows non-static declaration
> /opt/usr/src/WORK/morimoto/gitlinux/linux-2.6/include/linux/pm.h:34:15: note: previous declaration of 'pm_idle' was here
> make[3]: *** [arch/sh/kernel/idle.o] Error 1
> make[3]: *** Waiting for unfinished jobs....
> /opt/usr/src/WORK/morimoto/gitlinux/linux-2.6/arch/sh/kernel/ptrace_32.c:66:6: error: conflicting types for 'ptrace_triggered'
> /opt/usr/src/WORK/morimoto/gitlinux/linux-2.6/arch/sh/include/asm/ptrace.h:126:13: note: previous declaration of 'ptrace_triggered' was here
> make[3]: *** [arch/sh/kernel/ptrace_32.o] Error 1
> make[2]: *** [arch/sh/kernel] Error 2
> make[2]: *** Waiting for unfinished jobs....
> make[2]: *** wait: No child processes.  Stop.
> make[1]: *** [sub-make] Error 2
> make: *** [all] Error 2
> -------------------------
>
> Best regards
> ---
> Kuninori Morimoto
> --
> 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
>



-- 
Nobuhiro Iwamatsu
   iwamatsu at {nigauri.org / debian.org}
   GPG ID: 40AD1FA6

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

* Re: Can not compile Ecovec board
  2011-08-26  1:07 Can not compile Ecovec board Kuninori Morimoto
  2011-08-26  4:30 ` Nobuhiro Iwamatsu
@ 2011-08-26  4:51 ` Magnus Damm
  2011-08-26  5:12 ` Kuninori Morimoto
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Magnus Damm @ 2011-08-26  4:51 UTC (permalink / raw)
  To: linux-sh

On Fri, Aug 26, 2011 at 1:30 PM, Nobuhiro Iwamatsu <iwamatsu@nigauri.org> wrote:
> This was already revised in linux-next tree.

That's great, but shouldn't build fixes be solved for the RC kernels
if possible?

People really need to learn how to separate build fixes from new
development, otherwise everything will turn to shit.

Thanks,

/ magnus

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

* Re: Can not compile Ecovec board
  2011-08-26  1:07 Can not compile Ecovec board Kuninori Morimoto
  2011-08-26  4:30 ` Nobuhiro Iwamatsu
  2011-08-26  4:51 ` Magnus Damm
@ 2011-08-26  5:12 ` Kuninori Morimoto
  2011-08-26  5:24 ` Kuninori Morimoto
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Kuninori Morimoto @ 2011-08-26  5:12 UTC (permalink / raw)
  To: linux-sh


Hi Magnus, Iwamatsu-san, and SH-ML

> > This was already revised in linux-next tree.
> 
> That's great, but shouldn't build fixes be solved for the RC kernels
> if possible?
> 
> People really need to learn how to separate build fixes from new
> development, otherwise everything will turn to shit.

Thank you for your help

I checked linux-next and solution patches.
It are in current paul/sh-latest branch I think.

If I hand merge it to linus/master branch, I could build.

Is this merge timing issue ?

Best regards
---
Kuninori Morimoto

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

* Re: Can not compile Ecovec board
  2011-08-26  1:07 Can not compile Ecovec board Kuninori Morimoto
                   ` (2 preceding siblings ...)
  2011-08-26  5:12 ` Kuninori Morimoto
@ 2011-08-26  5:24 ` Kuninori Morimoto
  2011-08-26  6:05 ` Nobuhiro Iwamatsu
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Kuninori Morimoto @ 2011-08-26  5:24 UTC (permalink / raw)
  To: linux-sh


Hi again

> I checked linux-next and solution patches.
> It are in current paul/sh-latest branch I think.
>
> If I hand merge it to linus/master branch, I could build.
> 
> Is this merge timing issue ?

paul/sh-fixes-for-linus was good branch for linus/master

Best regards
---
Kuninori Morimoto

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

* Re: Can not compile Ecovec board
  2011-08-26  1:07 Can not compile Ecovec board Kuninori Morimoto
                   ` (3 preceding siblings ...)
  2011-08-26  5:24 ` Kuninori Morimoto
@ 2011-08-26  6:05 ` Nobuhiro Iwamatsu
  2011-08-26  6:18 ` Nobuhiro Iwamatsu
  2011-08-26  8:14 ` Paul Mundt
  6 siblings, 0 replies; 8+ messages in thread
From: Nobuhiro Iwamatsu @ 2011-08-26  6:05 UTC (permalink / raw)
  To: linux-sh

2011/8/26 Magnus Damm <magnus.damm@gmail.com>:
> On Fri, Aug 26, 2011 at 1:30 PM, Nobuhiro Iwamatsu <iwamatsu@nigauri.org> wrote:
>> This was already revised in linux-next tree.
>
> That's great, but shouldn't build fixes be solved for the RC kernels
> if possible?
>
> People really need to learn how to separate build fixes from new
> development, otherwise everything will turn to shit.
>

The commitment to revise this problem seems to be taken in with
signed-off of Paul by repository of Paul.
I think that It will be up to Paul whether this is taken-in in rc3.
Paul, do you think about this?

Best regards,
  Nobuhiro

-- 
Nobuhiro Iwamatsu
   iwamatsu at {nigauri.org / debian.org}
   GPG ID: 40AD1FA6

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

* Re: Can not compile Ecovec board
  2011-08-26  1:07 Can not compile Ecovec board Kuninori Morimoto
                   ` (4 preceding siblings ...)
  2011-08-26  6:05 ` Nobuhiro Iwamatsu
@ 2011-08-26  6:18 ` Nobuhiro Iwamatsu
  2011-08-26  8:14 ` Paul Mundt
  6 siblings, 0 replies; 8+ messages in thread
From: Nobuhiro Iwamatsu @ 2011-08-26  6:18 UTC (permalink / raw)
  To: linux-sh

2011/8/26 Nobuhiro Iwamatsu <iwamatsu@nigauri.org>:
> 2011/8/26 Magnus Damm <magnus.damm@gmail.com>:
>> On Fri, Aug 26, 2011 at 1:30 PM, Nobuhiro Iwamatsu <iwamatsu@nigauri.org> wrote:
>>> This was already revised in linux-next tree.
>>
>> That's great, but shouldn't build fixes be solved for the RC kernels
>> if possible?
>>
>> People really need to learn how to separate build fixes from new
>> development, otherwise everything will turn to shit.
>>
>
> The commitment to revise this problem seems to be taken in with
> signed-off of Paul by repository of Paul.
> I think that It will be up to Paul whether this is taken-in in rc3.
> Paul, do you think about this?
>
Sorry, commit is not in Paul's repository.
This is in Paul Gortmaker's tree.

Nobuhiro
-- 
Nobuhiro Iwamatsu
   iwamatsu at {nigauri.org / debian.org}
   GPG ID: 40AD1FA6

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

* Re: Can not compile Ecovec board
  2011-08-26  1:07 Can not compile Ecovec board Kuninori Morimoto
                   ` (5 preceding siblings ...)
  2011-08-26  6:18 ` Nobuhiro Iwamatsu
@ 2011-08-26  8:14 ` Paul Mundt
  6 siblings, 0 replies; 8+ messages in thread
From: Paul Mundt @ 2011-08-26  8:14 UTC (permalink / raw)
  To: linux-sh

On Fri, Aug 26, 2011 at 03:18:26PM +0900, Nobuhiro Iwamatsu wrote:
> 2011/8/26 Nobuhiro Iwamatsu <iwamatsu@nigauri.org>:
> > 2011/8/26 Magnus Damm <magnus.damm@gmail.com>:
> >> On Fri, Aug 26, 2011 at 1:30 PM, Nobuhiro Iwamatsu <iwamatsu@nigauri.org> wrote:
> >>> This was already revised in linux-next tree.
> >>
> >> That's great, but shouldn't build fixes be solved for the RC kernels
> >> if possible?
> >>
> >> People really need to learn how to separate build fixes from new
> >> development, otherwise everything will turn to shit.
> >>
> >
> > The commitment to revise this problem seems to be taken in with
> > signed-off of Paul by repository of Paul.
> > I think that It will be up to Paul whether this is taken-in in rc3.
> > Paul, do you think about this?
> >
> Sorry, commit is not in Paul's repository.
> This is in Paul Gortmaker's tree.
> 
I've had the same fix in my tree for some time, so I'm not sure what
you're looking at. It'll be included with the next batch of updates for
the next -rc, as usual.

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

end of thread, other threads:[~2011-08-26  8:14 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-08-26  1:07 Can not compile Ecovec board Kuninori Morimoto
2011-08-26  4:30 ` Nobuhiro Iwamatsu
2011-08-26  4:51 ` Magnus Damm
2011-08-26  5:12 ` Kuninori Morimoto
2011-08-26  5:24 ` Kuninori Morimoto
2011-08-26  6:05 ` Nobuhiro Iwamatsu
2011-08-26  6:18 ` Nobuhiro Iwamatsu
2011-08-26  8:14 ` Paul Mundt

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.