* Re: linux-next: Tree for May 2 (uml builds fail)
[not found] <20110502150150.d932642f.sfr@canb.auug.org.au>
@ 2011-05-02 15:19 ` Randy Dunlap
2011-05-02 16:04 ` Michal Marek
0 siblings, 1 reply; 5+ messages in thread
From: Randy Dunlap @ 2011-05-02 15:19 UTC (permalink / raw)
To: Stephen Rothwell, linux-kbuild; +Cc: linux-next, LKML, Michal Marek, sam
On Mon, 2 May 2011 15:01:50 +1000 Stephen Rothwell wrote:
> Hi all,
>
> Changes since 20110429:
uml builds on i386 or x86_64 fail with: (I'm using O=outputdir if it matters)
GEN /lnx/src/NEXT/linux-next-20110502/UM64/Makefile
scripts/kconfig/conf --silentoldconfig arch/um/Kconfig.x86
GEN /lnx/src/NEXT/linux-next-20110502/UM64/Makefile
/lnx/src/NEXT/linux-next-20110502/scripts/Makefile.asm-generic:9: /lnx/src/NEXT/linux-next-20110502/arch/um/include/asm/Kbuild: No such file or directory
make[2]: *** No rule to make target `/lnx/src/NEXT/linux-next-20110502/arch/um/include/asm/Kbuild'. Stop.
---
~Randy
*** Remember to use Documentation/SubmitChecklist when testing your code ***
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: linux-next: Tree for May 2 (uml builds fail)
2011-05-02 15:19 ` linux-next: Tree for May 2 (uml builds fail) Randy Dunlap
@ 2011-05-02 16:04 ` Michal Marek
2011-05-02 16:09 ` Randy Dunlap
2011-05-02 16:52 ` Sam Ravnborg
0 siblings, 2 replies; 5+ messages in thread
From: Michal Marek @ 2011-05-02 16:04 UTC (permalink / raw)
To: Randy Dunlap; +Cc: Stephen Rothwell, linux-kbuild, linux-next, LKML, sam
On Mon, May 02, 2011 at 08:19:48AM -0700, Randy Dunlap wrote:
> On Mon, 2 May 2011 15:01:50 +1000 Stephen Rothwell wrote:
>
> > Hi all,
> >
> > Changes since 20110429:
>
>
> uml builds on i386 or x86_64 fail with: (I'm using O=outputdir if it matters)
>
> GEN /lnx/src/NEXT/linux-next-20110502/UM64/Makefile
> scripts/kconfig/conf --silentoldconfig arch/um/Kconfig.x86
> GEN /lnx/src/NEXT/linux-next-20110502/UM64/Makefile
> /lnx/src/NEXT/linux-next-20110502/scripts/Makefile.asm-generic:9: /lnx/src/NEXT/linux-next-20110502/arch/um/include/asm/Kbuild: No such file or directory
> make[2]: *** No rule to make target `/lnx/src/NEXT/linux-next-20110502/arch/um/include/asm/Kbuild'. Stop.
This patch should fix it.
Michal
Subject: [PATCH] kbuild: Fix Makefile.asm-generic for um
Do nothing if arch/$(SRCARCH)/include/asm/Kbuild does not exist, which
is the case of um.
Reported-by: Randy Dunlap <rdunlap@xenotime.net>
Signed-off-by: Michal Marek <mmarek@suse.cz>
diff --git a/scripts/Makefile.asm-generic b/scripts/Makefile.asm-generic
index a687cb6..490122c 100644
--- a/scripts/Makefile.asm-generic
+++ b/scripts/Makefile.asm-generic
@@ -6,7 +6,7 @@
# a small wrapper file in $(obj) (arch/$(SRCARCH)/include/generated/asm)
kbuild-file := $(srctree)/arch/$(SRCARCH)/include/asm/Kbuild
-include $(kbuild-file)
+-include $(kbuild-file)
include scripts/Kbuild.include
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: linux-next: Tree for May 2 (uml builds fail)
2011-05-02 16:04 ` Michal Marek
@ 2011-05-02 16:09 ` Randy Dunlap
2011-05-02 16:52 ` Sam Ravnborg
1 sibling, 0 replies; 5+ messages in thread
From: Randy Dunlap @ 2011-05-02 16:09 UTC (permalink / raw)
To: Michal Marek; +Cc: Stephen Rothwell, linux-kbuild, linux-next, LKML, sam
On Mon, 2 May 2011 18:04:05 +0200 Michal Marek wrote:
> On Mon, May 02, 2011 at 08:19:48AM -0700, Randy Dunlap wrote:
> > On Mon, 2 May 2011 15:01:50 +1000 Stephen Rothwell wrote:
> >
> > > Hi all,
> > >
> > > Changes since 20110429:
> >
> >
> > uml builds on i386 or x86_64 fail with: (I'm using O=outputdir if it matters)
> >
> > GEN /lnx/src/NEXT/linux-next-20110502/UM64/Makefile
> > scripts/kconfig/conf --silentoldconfig arch/um/Kconfig.x86
> > GEN /lnx/src/NEXT/linux-next-20110502/UM64/Makefile
> > /lnx/src/NEXT/linux-next-20110502/scripts/Makefile.asm-generic:9: /lnx/src/NEXT/linux-next-20110502/arch/um/include/asm/Kbuild: No such file or directory
> > make[2]: *** No rule to make target `/lnx/src/NEXT/linux-next-20110502/arch/um/include/asm/Kbuild'. Stop.
>
> This patch should fix it.
Acked-by: Randy Dunlap <rdunlap@xenotime.net>
Thanks.
> Michal
>
> Subject: [PATCH] kbuild: Fix Makefile.asm-generic for um
>
> Do nothing if arch/$(SRCARCH)/include/asm/Kbuild does not exist, which
> is the case of um.
>
> Reported-by: Randy Dunlap <rdunlap@xenotime.net>
> Signed-off-by: Michal Marek <mmarek@suse.cz>
>
> diff --git a/scripts/Makefile.asm-generic b/scripts/Makefile.asm-generic
> index a687cb6..490122c 100644
> --- a/scripts/Makefile.asm-generic
> +++ b/scripts/Makefile.asm-generic
> @@ -6,7 +6,7 @@
> # a small wrapper file in $(obj) (arch/$(SRCARCH)/include/generated/asm)
>
> kbuild-file := $(srctree)/arch/$(SRCARCH)/include/asm/Kbuild
> -include $(kbuild-file)
> +-include $(kbuild-file)
>
> include scripts/Kbuild.include
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kbuild" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
---
~Randy
*** Remember to use Documentation/SubmitChecklist when testing your code ***
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: linux-next: Tree for May 2 (uml builds fail)
2011-05-02 16:04 ` Michal Marek
2011-05-02 16:09 ` Randy Dunlap
@ 2011-05-02 16:52 ` Sam Ravnborg
2011-05-02 20:33 ` Michal Marek
1 sibling, 1 reply; 5+ messages in thread
From: Sam Ravnborg @ 2011-05-02 16:52 UTC (permalink / raw)
To: Michal Marek
Cc: Randy Dunlap, Stephen Rothwell, linux-kbuild, linux-next, LKML
On Mon, May 02, 2011 at 06:04:05PM +0200, Michal Marek wrote:
> On Mon, May 02, 2011 at 08:19:48AM -0700, Randy Dunlap wrote:
> > On Mon, 2 May 2011 15:01:50 +1000 Stephen Rothwell wrote:
> >
> > > Hi all,
> > >
> > > Changes since 20110429:
> >
> >
> > uml builds on i386 or x86_64 fail with: (I'm using O=outputdir if it matters)
> >
> > GEN /lnx/src/NEXT/linux-next-20110502/UM64/Makefile
> > scripts/kconfig/conf --silentoldconfig arch/um/Kconfig.x86
> > GEN /lnx/src/NEXT/linux-next-20110502/UM64/Makefile
> > /lnx/src/NEXT/linux-next-20110502/scripts/Makefile.asm-generic:9: /lnx/src/NEXT/linux-next-20110502/arch/um/include/asm/Kbuild: No such file or directory
> > make[2]: *** No rule to make target `/lnx/src/NEXT/linux-next-20110502/arch/um/include/asm/Kbuild'. Stop.
>
> This patch should fix it.
>
> Michal
>
> Subject: [PATCH] kbuild: Fix Makefile.asm-generic for um
>
> Do nothing if arch/$(SRCARCH)/include/asm/Kbuild does not exist, which
> is the case of um.
>
> Reported-by: Randy Dunlap <rdunlap@xenotime.net>
> Signed-off-by: Michal Marek <mmarek@suse.cz>
Makes sense - sorry for not catchign the um case!
Acked-by: Sam Ravnborg <sam@ravnborg.org>
Sam
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: linux-next: Tree for May 2 (uml builds fail)
2011-05-02 16:52 ` Sam Ravnborg
@ 2011-05-02 20:33 ` Michal Marek
0 siblings, 0 replies; 5+ messages in thread
From: Michal Marek @ 2011-05-02 20:33 UTC (permalink / raw)
To: Sam Ravnborg
Cc: Randy Dunlap, Stephen Rothwell, linux-kbuild, linux-next, LKML
On 2.5.2011 18:52, Sam Ravnborg wrote:
> On Mon, May 02, 2011 at 06:04:05PM +0200, Michal Marek wrote:
>> On Mon, May 02, 2011 at 08:19:48AM -0700, Randy Dunlap wrote:
>>> On Mon, 2 May 2011 15:01:50 +1000 Stephen Rothwell wrote:
>>>
>>>> Hi all,
>>>>
>>>> Changes since 20110429:
>>>
>>>
>>> uml builds on i386 or x86_64 fail with: (I'm using O=outputdir if it matters)
>>>
>>> GEN /lnx/src/NEXT/linux-next-20110502/UM64/Makefile
>>> scripts/kconfig/conf --silentoldconfig arch/um/Kconfig.x86
>>> GEN /lnx/src/NEXT/linux-next-20110502/UM64/Makefile
>>> /lnx/src/NEXT/linux-next-20110502/scripts/Makefile.asm-generic:9: /lnx/src/NEXT/linux-next-20110502/arch/um/include/asm/Kbuild: No such file or directory
>>> make[2]: *** No rule to make target `/lnx/src/NEXT/linux-next-20110502/arch/um/include/asm/Kbuild'. Stop.
>>
>> This patch should fix it.
>>
>> Michal
>>
>> Subject: [PATCH] kbuild: Fix Makefile.asm-generic for um
>>
>> Do nothing if arch/$(SRCARCH)/include/asm/Kbuild does not exist, which
>> is the case of um.
>>
>> Reported-by: Randy Dunlap <rdunlap@xenotime.net>
>> Signed-off-by: Michal Marek <mmarek@suse.cz>
>
> Makes sense - sorry for not catchign the um case!
>
> Acked-by: Sam Ravnborg <sam@ravnborg.org>
Thanks, pushed to kbuild-2.6.git#kbuild.
Michal
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2011-05-02 20:33 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20110502150150.d932642f.sfr@canb.auug.org.au>
2011-05-02 15:19 ` linux-next: Tree for May 2 (uml builds fail) Randy Dunlap
2011-05-02 16:04 ` Michal Marek
2011-05-02 16:09 ` Randy Dunlap
2011-05-02 16:52 ` Sam Ravnborg
2011-05-02 20:33 ` Michal Marek
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox