diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2007-07-20 05:36:05 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2007-07-20 16:29:30 -0400 |
commit | 13d5fadf45d12786b90916e95e97f593e91aaf0a (patch) | |
tree | a13fff4a848757369470748bd2799584eddf785c /arch/arm/boot | |
parent | cdcb81f7d99f3d525003068b84445dd4acc63266 (diff) |
[ARM] Make 'i' and 'zi' targets work
The 'i' and 'zi' targets short-circuit the dependencies for
'install' and 'zinstall' targets; these are useful for
installing the kernel on platforms which have make but no
compiler installed.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/boot')
-rw-r--r-- | arch/arm/boot/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/arm/boot/Makefile b/arch/arm/boot/Makefile index ec9c400c7f82..25f12303b106 100644 --- a/arch/arm/boot/Makefile +++ b/arch/arm/boot/Makefile | |||
@@ -91,4 +91,12 @@ zinstall: $(obj)/zImage | |||
91 | $(CONFIG_SHELL) $(srctree)/$(src)/install.sh $(KERNELRELEASE) \ | 91 | $(CONFIG_SHELL) $(srctree)/$(src)/install.sh $(KERNELRELEASE) \ |
92 | $(obj)/zImage System.map "$(INSTALL_PATH)" | 92 | $(obj)/zImage System.map "$(INSTALL_PATH)" |
93 | 93 | ||
94 | zi: | ||
95 | $(CONFIG_SHELL) $(srctree)/$(src)/install.sh $(KERNELRELEASE) \ | ||
96 | $(obj)/zImage System.map "$(INSTALL_PATH)" | ||
97 | |||
98 | i: | ||
99 | $(CONFIG_SHELL) $(srctree)/$(src)/install.sh $(KERNELRELEASE) \ | ||
100 | $(obj)/Image System.map "$(INSTALL_PATH)" | ||
101 | |||
94 | subdir- := bootp compressed | 102 | subdir- := bootp compressed |