LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH] Fix for 2.6.6 Makefiles to get KBUILD_OUTPUT working
@ 2004-05-16 1:22 Mathieu Chouquet-Stringer
2004-05-16 20:33 ` Sam Ravnborg
0 siblings, 1 reply; 3+ messages in thread
From: Mathieu Chouquet-Stringer @ 2004-05-16 1:22 UTC (permalink / raw)
To: linux-kernel, rth, linux-alpha, ralf, linux-mips, akpm, bjornw,
dev-etrax
Hi,
if you use O=/someotherdir or KBUILD_OUTPUT=/someotherdir on the following
architectures: alpha, mips, sh and cris, the build process is probably
going to fail at one point or another, depending on the target you used,
because make can't find scripts/Makefile.build or scripts/Makefile.clean.
The following patch (which should apply cleanly to the latest 2.6.6 bk
tree) fixes this, I greped the whole tree and these four were the only
"offenders" I found.
PS: Andrew I mailed you because I couldn't find the maintainer for the sh
port and you're the last who touched arch/sh/Makefile
--- arch/alpha/Makefile.orig 2004-05-15 20:46:06.000000000 -0400
+++ arch/alpha/Makefile 2004-05-15 20:47:52.000000000 -0400
@@ -106,10 +106,10 @@ boot := arch/alpha/boot
all boot: $(boot)/vmlinux.gz
$(boot)/vmlinux.gz: vmlinux
- $(Q)$(MAKE) -f scripts/Makefile.build obj=$(boot) $@
+ $(Q)$(MAKE) $(build)=$(boot) $@
bootimage bootpfile bootpzfile: vmlinux
- $(Q)$(MAKE) -f scripts/Makefile.build obj=$(boot) $(boot)/$@
+ $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
prepare: include/asm-$(ARCH)/asm_offsets.h
@@ -121,7 +121,7 @@ include/asm-$(ARCH)/asm_offsets.h: arch/
$(call filechk,gen-asm-offsets)
archclean:
- $(Q)$(MAKE) -f scripts/Makefile.clean obj=$(boot)
+ $(Q)$(MAKE) $(clean)=$(boot)
CLEAN_FILES += include/asm-$(ARCH)/asm_offsets.h
--- arch/mips/Makefile.orig 2004-05-15 20:48:52.000000000 -0400
+++ arch/mips/Makefile 2004-05-15 20:49:58.000000000 -0400
@@ -686,7 +686,7 @@ vmlinux.64: vmlinux
--change-addresses=0xa800000080000000 $< $@
endif
-makeboot =$(Q)$(MAKE) -f scripts/Makefile.build obj=arch/mips/boot $(1)
+makeboot =$(Q)$(MAKE) $(build)=arch/mips/boot $(1)
ifdef CONFIG_SGI_IP27
all: vmlinux.64
@@ -708,9 +708,9 @@ CLEAN_FILES += vmlinux.ecoff \
vmlinux.rm200
archclean:
- @$(MAKE) -f scripts/Makefile.clean obj=arch/mips/boot
- @$(MAKE) -f scripts/Makefile.clean obj=arch/mips/baget
- @$(MAKE) -f scripts/Makefile.clean obj=arch/mips/lasat
+ @$(MAKE) $(clean)=arch/mips/boot
+ @$(MAKE) $(clean)=arch/mips/baget
+ @$(MAKE) $(clean)=arch/mips/lasat
# Generate <asm/offset.h
#
--- arch/sh/boot/Makefile.orig 2004-05-15 20:50:11.000000000 -0400
+++ arch/sh/boot/Makefile 2004-05-15 20:50:41.000000000 -0400
@@ -16,5 +16,5 @@ $(obj)/zImage: $(obj)/compressed/vmlinux
@echo 'Kernel: $@ is ready'
$(obj)/compressed/vmlinux: FORCE
- $(Q)$(MAKE) -f scripts/Makefile.build obj=$(obj)/compressed $@
+ $(Q)$(MAKE) $(build)=$(obj)/compressed $@
--- arch/cris/Makefile.orig 2004-05-15 20:59:49.000000000 -0400
+++ arch/cris/Makefile 2004-05-15 21:00:36.000000000 -0400
@@ -81,7 +81,7 @@ compressed: zImage
archmrproper:
archclean:
- $(Q)$(MAKE) -f scripts/Makefile.clean obj=arch/$(ARCH)/boot
+ $(Q)$(MAKE) $(clean)=arch/$(ARCH)/boot
rm -f timage vmlinux.bin cramfs.img
rm -rf $(LD_SCRIPT).tmp
--
Mathieu Chouquet-Stringer E-Mail: mchouque@online.fr
Never attribute to malice that which can be adequately
explained by stupidity.
-- Hanlon's Razor --
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] Fix for 2.6.6 Makefiles to get KBUILD_OUTPUT working
2004-05-16 1:22 [PATCH] Fix for 2.6.6 Makefiles to get KBUILD_OUTPUT working Mathieu Chouquet-Stringer
@ 2004-05-16 20:33 ` Sam Ravnborg
2004-05-17 15:23 ` Mathieu Chouquet-Stringer
0 siblings, 1 reply; 3+ messages in thread
From: Sam Ravnborg @ 2004-05-16 20:33 UTC (permalink / raw)
To: Mathieu Chouquet-Stringer, linux-kernel, rth, linux-alpha, ralf,
linux-mips, akpm, bjornw, dev-etrax, mikael.starvik
On Sat, May 15, 2004 at 09:22:45PM -0400, Mathieu Chouquet-Stringer wrote:
> Hi,
>
> if you use O=/someotherdir or KBUILD_OUTPUT=/someotherdir on the following
> architectures: alpha, mips, sh and cris, the build process is probably
> going to fail at one point or another, depending on the target you used,
> because make can't find scripts/Makefile.build or scripts/Makefile.clean.
>
> The following patch (which should apply cleanly to the latest 2.6.6 bk
> tree) fixes this, I greped the whole tree and these four were the only
> "offenders" I found.
Thanks, it has been on my todo for a while.
A few comments though.
> --- arch/mips/Makefile.orig 2004-05-15 20:48:52.000000000 -0400
> +++ arch/mips/Makefile 2004-05-15 20:49:58.000000000 -0400
>
> -makeboot =$(Q)$(MAKE) -f scripts/Makefile.build obj=arch/mips/boot $(1)
> +makeboot =$(Q)$(MAKE) $(build)=arch/mips/boot $(1)
Please get rid of makeboot. Use $(Q)$(MAKE) ... instead.
Hereby the '+' sign is no longer needed (used today where makeboot is used.
> archclean:
> - @$(MAKE) -f scripts/Makefile.clean obj=arch/mips/boot
> - @$(MAKE) -f scripts/Makefile.clean obj=arch/mips/baget
> - @$(MAKE) -f scripts/Makefile.clean obj=arch/mips/lasat
> + @$(MAKE) $(clean)=arch/mips/boot
> + @$(MAKE) $(clean)=arch/mips/baget
> + @$(MAKE) $(clean)=arch/mips/lasat
Please use $(Q)$(MAKE), so command is expanded with make V=1, and
to make it look like all other usages.
> --- arch/cris/Makefile.orig 2004-05-15 20:59:49.000000000 -0400
> +++ arch/cris/Makefile 2004-05-15 21:00:36.000000000 -0400
OK.
But this file in general looks strange. There seems to be no way
to descend into arch-v10?
Mikael - any pending patches for this file / architecture?
Mathieu, could you please update the patch and send onwards to Andrew.
Do not touch the cris Makefile more than you did, the maintainer needs
to clean it up.
Thanks,
Sam
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] Fix for 2.6.6 Makefiles to get KBUILD_OUTPUT working
2004-05-16 20:33 ` Sam Ravnborg
@ 2004-05-17 15:23 ` Mathieu Chouquet-Stringer
0 siblings, 0 replies; 3+ messages in thread
From: Mathieu Chouquet-Stringer @ 2004-05-17 15:23 UTC (permalink / raw)
To: linux-kernel, rth, linux-alpha, ralf, linux-mips, akpm, bjornw,
dev-etrax, mikael.starvik, sam
On Sun, May 16, 2004 at 10:33:22PM +0200, Sam Ravnborg wrote:
> > --- arch/mips/Makefile.orig 2004-05-15 20:48:52.000000000 -0400
> > +++ arch/mips/Makefile 2004-05-15 20:49:58.000000000 -0400
> >
> > -makeboot =$(Q)$(MAKE) -f scripts/Makefile.build obj=arch/mips/boot $(1)
> > +makeboot =$(Q)$(MAKE) $(build)=arch/mips/boot $(1)
>
> Please get rid of makeboot. Use $(Q)$(MAKE) ... instead.
> Hereby the '+' sign is no longer needed (used today where makeboot is used.
Ok, I applied the changes you requested, please check the diff for mips as
I had to modify some other lines too.
--- arch/alpha/Makefile.orig 2004-05-15 20:46:06.000000000 -0400
+++ arch/alpha/Makefile 2004-05-15 20:47:52.000000000 -0400
@@ -106,10 +106,10 @@ boot := arch/alpha/boot
all boot: $(boot)/vmlinux.gz
$(boot)/vmlinux.gz: vmlinux
- $(Q)$(MAKE) -f scripts/Makefile.build obj=$(boot) $@
+ $(Q)$(MAKE) $(build)=$(boot) $@
bootimage bootpfile bootpzfile: vmlinux
- $(Q)$(MAKE) -f scripts/Makefile.build obj=$(boot) $(boot)/$@
+ $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
prepare: include/asm-$(ARCH)/asm_offsets.h
@@ -121,8 +121,8 @@ include/asm-$(ARCH)/asm_offsets.h: arch/
$(call filechk,gen-asm-offsets)
archclean:
- $(Q)$(MAKE) -f scripts/Makefile.clean obj=$(boot)
+ $(Q)$(MAKE) $(clean)=$(boot)
CLEAN_FILES += include/asm-$(ARCH)/asm_offsets.h
--- arch/mips/Makefile.orig 2004-05-15 20:48:52.000000000 -0400
+++ arch/mips/Makefile 2004-05-17 11:11:57.000000000 -0400
@@ -686,8 +686,6 @@ vmlinux.64: vmlinux
--change-addresses=0xa800000080000000 $< $@
endif
-makeboot =$(Q)$(MAKE) -f scripts/Makefile.build obj=arch/mips/boot $(1)
-
ifdef CONFIG_SGI_IP27
all: vmlinux.64
endif
@@ -697,10 +695,10 @@ all: vmlinux.ecoff
endif
vmlinux.ecoff vmlinux.rm200: vmlinux
- +@$(call makeboot,$@)
+ $(Q)$(MAKE) $(build)=arch/mips/boot $@
vmlinux.srec: vmlinux
- +@$(call makeboot,$@)
+ $(Q)$(MAKE) $(build)=arch/mips/boot $@
CLEAN_FILES += vmlinux.ecoff \
vmlinux.srec \
@@ -708,10 +706,10 @@ CLEAN_FILES += vmlinux.ecoff \
vmlinux.rm200
archclean:
- @$(MAKE) -f scripts/Makefile.clean obj=arch/mips/boot
- @$(MAKE) -f scripts/Makefile.clean obj=arch/mips/baget
- @$(MAKE) -f scripts/Makefile.clean obj=arch/mips/lasat
+ $(Q)$(MAKE) $(clean)=arch/mips/boot
+ $(Q)$(MAKE) $(clean)=arch/mips/baget
+ $(Q)$(MAKE) $(clean)=arch/mips/lasat
# Generate <asm/offset.h
#
--- arch/sh/boot/Makefile.orig 2004-05-15 20:50:11.000000000 -0400
+++ arch/sh/boot/Makefile 2004-05-15 20:50:41.000000000 -0400
@@ -16,5 +16,5 @@ $(obj)/zImage: $(obj)/compressed/vmlinux
@echo 'Kernel: $@ is ready'
$(obj)/compressed/vmlinux: FORCE
- $(Q)$(MAKE) -f scripts/Makefile.build obj=$(obj)/compressed $@
+ $(Q)$(MAKE) $(build)=$(obj)/compressed $@
--- arch/cris/Makefile.orig 2004-05-15 20:59:49.000000000 -0400
+++ arch/cris/Makefile 2004-05-15 21:00:36.000000000 -0400
@@ -81,7 +81,7 @@ compressed: zImage
archmrproper:
archclean:
- $(Q)$(MAKE) -f scripts/Makefile.clean obj=arch/$(ARCH)/boot
+ $(Q)$(MAKE) $(clean)=arch/$(ARCH)/boot
rm -f timage vmlinux.bin cramfs.img
rm -rf $(LD_SCRIPT).tmp
--
Mathieu Chouquet-Stringer E-Mail: mchouque@online.fr
Never attribute to malice that which can be adequately
explained by stupidity.
-- Hanlon's Razor --
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2004-05-17 15:25 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-05-16 1:22 [PATCH] Fix for 2.6.6 Makefiles to get KBUILD_OUTPUT working Mathieu Chouquet-Stringer
2004-05-16 20:33 ` Sam Ravnborg
2004-05-17 15:23 ` Mathieu Chouquet-Stringer
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 NNTP newsgroup(s).