aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeoff Levand <geoffrey.levand@am.sony.com>2006-12-04 19:11:38 -0500
committerPaul Mackerras <paulus@samba.org>2006-12-04 19:28:17 -0500
commit8a8944aab2e4b02550c29c45a0383dd4096dd989 (patch)
tree823ae476cd33a927ac1c78b026f2110c3a5ee787
parentb9272dfdfe6b13120144eabf79d562d9a29ad5ce (diff)
[POWERPC] ps3: add a default zImage target
Add a powerpc make target that can be loaded by the ps3 bootloader (kboot) and set this as the default image to build for that platform. Until the compressed zImage wrapper is made, this arranges for a stripped vmlinux image to be built. Signed-off-by: Geoff Levand <geoffrey.levand@am.sony.com> Signed-off-by: Paul Mackerras <paulus@samba.org>
-rw-r--r--arch/powerpc/boot/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/arch/powerpc/boot/Makefile b/arch/powerpc/boot/Makefile
index 4a831ae95a9..343dbcfdf08 100644
--- a/arch/powerpc/boot/Makefile
+++ b/arch/powerpc/boot/Makefile
@@ -149,13 +149,16 @@ $(obj)/zImage.miboot: vmlinux $(wrapperbits)
149$(obj)/zImage.initrd.miboot: vmlinux $(wrapperbits) 149$(obj)/zImage.initrd.miboot: vmlinux $(wrapperbits)
150 $(call cmd,wrap_initrd,miboot) 150 $(call cmd,wrap_initrd,miboot)
151 151
152$(obj)/zImage.ps3: vmlinux
153 $(STRIP) -s -R .comment $< -o $@
154
152$(obj)/uImage: vmlinux $(wrapperbits) 155$(obj)/uImage: vmlinux $(wrapperbits)
153 $(call cmd,wrap,uboot) 156 $(call cmd,wrap,uboot)
154 157
155image-$(CONFIG_PPC_PSERIES) += zImage.pseries 158image-$(CONFIG_PPC_PSERIES) += zImage.pseries
156image-$(CONFIG_PPC_MAPLE) += zImage.pseries 159image-$(CONFIG_PPC_MAPLE) += zImage.pseries
157image-$(CONFIG_PPC_IBM_CELL_BLADE) += zImage.pseries 160image-$(CONFIG_PPC_IBM_CELL_BLADE) += zImage.pseries
158image-$(CONFIG_PPC_PS3) += zImage.pseries 161image-$(CONFIG_PPC_PS3) += zImage.ps3
159image-$(CONFIG_PPC_CHRP) += zImage.chrp 162image-$(CONFIG_PPC_CHRP) += zImage.chrp
160image-$(CONFIG_PPC_EFIKA) += zImage.chrp 163image-$(CONFIG_PPC_EFIKA) += zImage.chrp
161image-$(CONFIG_PPC_PMAC) += zImage.pmac 164image-$(CONFIG_PPC_PMAC) += zImage.pmac