diff options
author | Milton Miller <miltonm@bga.com> | 2007-03-19 21:58:04 +0100 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-03-21 12:35:40 +0100 |
commit | 65b580395d234350b53a03285b98c9a271eb5eb7 (patch) | |
tree | bff4162e4b391aa91d69a3dc141ac80a1300b678 | |
parent | [POWERPC] bootwrapper: Make setprop accept a const buffer. (diff) | |
download | linux-65b580395d234350b53a03285b98c9a271eb5eb7.tar.xz linux-65b580395d234350b53a03285b98c9a271eb5eb7.zip |
[POWERPC] boot: rebuild when wrapper changes
Since there is magic defined per platform in the wrapper script, the
zImage targets should depend on it.
Signed-off-by: Milton Miller <miltonm@bga.com>
Acked-by: David Gibson <david@gibson.dropbear.id.au>
Acked-by: Segher Boessenkool <segher@kernel.crashing.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
-rw-r--r-- | arch/powerpc/boot/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/powerpc/boot/Makefile b/arch/powerpc/boot/Makefile index b1fc029e5ea7..d777cf909b46 100644 --- a/arch/powerpc/boot/Makefile +++ b/arch/powerpc/boot/Makefile @@ -101,7 +101,8 @@ extra-y := $(obj)/wrapper.a $(obj-plat) $(obj)/empty.o \ $(obj)/zImage.lds $(obj)/zImage.coff.lds wrapper :=$(srctree)/$(src)/wrapper -wrapperbits := $(extra-y) $(addprefix $(obj)/,addnote hack-coff mktree) +wrapperbits := $(extra-y) $(addprefix $(obj)/,addnote hack-coff mktree) \ + $(wrapper) ############# # Bits for building various flavours of zImage |