diff options
author | David Woodhouse <dwmw2@infradead.org> | 2007-12-03 13:56:58 +1100 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-12-06 14:44:30 +1100 |
commit | 773f76b1601d53dc8485675736b845cc3644921a (patch) | |
tree | 4305e6a8175b262612bf74cfc8f09f572046dbe2 /arch/powerpc/Makefile | |
parent | 5c539ee38263c12121d777c2e7119807742e9368 (diff) | |
download | linux-3.10-773f76b1601d53dc8485675736b845cc3644921a.tar.gz linux-3.10-773f76b1601d53dc8485675736b845cc3644921a.tar.bz2 linux-3.10-773f76b1601d53dc8485675736b845cc3644921a.zip |
[POWERPC] Implement 'make bootwrapper_install'
This adds a 'bootwrapper_install' make target for the powerpc
architecture, which installs the wrapper script, intermediate object
files and device-tree sources for later use.
This will then allow bootable zImages to be created other than in the
context of a kernel build.
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/Makefile')
-rw-r--r-- | arch/powerpc/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/powerpc/Makefile b/arch/powerpc/Makefile index bd87626c1f6..f70df9b64f8 100644 --- a/arch/powerpc/Makefile +++ b/arch/powerpc/Makefile @@ -167,6 +167,9 @@ boot := arch/$(ARCH)/boot $(BOOT_TARGETS): vmlinux $(Q)$(MAKE) ARCH=ppc64 $(build)=$(boot) $(patsubst %,$(boot)/%,$@) +bootwrapper_install: + $(Q)$(MAKE) ARCH=ppc64 $(build)=$(boot) $(patsubst %,$(boot)/%,$@) + define archhelp @echo '* zImage - Compressed kernel image (arch/$(ARCH)/boot/zImage.*)' @echo ' install - Install kernel using' |