diff options
author | David Gibson <david@gibson.dropbear.id.au> | 2007-04-30 20:20:20 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-05-02 06:04:31 -0400 |
commit | a6afacb6b8ba3d2eed6406a018e604d6f9c0f97d (patch) | |
tree | a51e62feed1fc59f9379deb4a2d87cea960cceeb /arch/powerpc/boot/Makefile | |
parent | 0cd74f398a1b86eab9d56224f3469235b2097e3c (diff) |
[POWERPC] Small cleanups to the cuboot bootwrapper code
This patch makes a few small cleanups to the cuboot code.
- It removes the double layered selection of images, via
cuboot-plat-y, instead having the cuboot platforms directly select a
suitable image-y (this changes the name of the final cuboot image from
plain cuImage to cuImage.<platform>).
- Factors out some code in the wrapper that's potentially
useful to platforms other than uboot.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Acked-by: Scott Wood <scottwood@freescale.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/boot/Makefile')
-rw-r--r-- | arch/powerpc/boot/Makefile | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/arch/powerpc/boot/Makefile b/arch/powerpc/boot/Makefile index 3716594ea33e..326ee92a2fc3 100644 --- a/arch/powerpc/boot/Makefile +++ b/arch/powerpc/boot/Makefile | |||
@@ -129,7 +129,9 @@ image-$(CONFIG_PPC_CELLEB) += zImage.pseries | |||
129 | image-$(CONFIG_PPC_CHRP) += zImage.chrp | 129 | image-$(CONFIG_PPC_CHRP) += zImage.chrp |
130 | image-$(CONFIG_PPC_EFIKA) += zImage.chrp | 130 | image-$(CONFIG_PPC_EFIKA) += zImage.chrp |
131 | image-$(CONFIG_PPC_PMAC) += zImage.pmac | 131 | image-$(CONFIG_PPC_PMAC) += zImage.pmac |
132 | image-$(CONFIG_DEFAULT_UIMAGE) += uImage cuImage | 132 | image-$(CONFIG_PPC_83xx) += cuImage.83xx |
133 | image-$(CONFIG_PPC_85xx) += cuImage.85xx | ||
134 | image-$(CONFIG_DEFAULT_UIMAGE) += uImage | ||
133 | 135 | ||
134 | # For 32-bit powermacs, build the COFF and miboot images | 136 | # For 32-bit powermacs, build the COFF and miboot images |
135 | # as well as the ELF images. | 137 | # as well as the ELF images. |
@@ -162,15 +164,11 @@ $(obj)/zImage.initrd.ps3: vmlinux | |||
162 | $(obj)/uImage: vmlinux $(wrapperbits) | 164 | $(obj)/uImage: vmlinux $(wrapperbits) |
163 | $(call if_changed,wrap,uboot) | 165 | $(call if_changed,wrap,uboot) |
164 | 166 | ||
165 | cuboot-plat-$(CONFIG_83xx) += 83xx | ||
166 | cuboot-plat-$(CONFIG_85xx) += 85xx | ||
167 | cuboot-plat-y += unknown-platform | ||
168 | |||
169 | dts = $(if $(shell echo $(CONFIG_DEVICE_TREE) | grep '^/'),\ | 167 | dts = $(if $(shell echo $(CONFIG_DEVICE_TREE) | grep '^/'),\ |
170 | ,$(srctree)/$(src)/dts/)$(CONFIG_DEVICE_TREE) | 168 | ,$(srctree)/$(src)/dts/)$(CONFIG_DEVICE_TREE) |
171 | 169 | ||
172 | $(obj)/cuImage: vmlinux $(wrapperbits) | 170 | $(obj)/cuImage.%: vmlinux $(wrapperbits) |
173 | $(call if_changed,wrap,cuboot-$(word 1,$(cuboot-plat-y)),$(dts)) | 171 | $(call if_changed,wrap,cuboot-$*,$(dts)) |
174 | 172 | ||
175 | $(obj)/zImage: $(addprefix $(obj)/, $(image-y)) | 173 | $(obj)/zImage: $(addprefix $(obj)/, $(image-y)) |
176 | @rm -f $@; ln $< $@ | 174 | @rm -f $@; ln $< $@ |
@@ -181,8 +179,7 @@ install: $(CONFIGURE) $(addprefix $(obj)/, $(image-y)) | |||
181 | sh -x $(srctree)/$(src)/install.sh "$(KERNELRELEASE)" vmlinux System.map "$(INSTALL_PATH)" $< | 179 | sh -x $(srctree)/$(src)/install.sh "$(KERNELRELEASE)" vmlinux System.map "$(INSTALL_PATH)" $< |
182 | 180 | ||
183 | # anything not in $(targets) | 181 | # anything not in $(targets) |
184 | clean-files += $(image-) $(initrd-) zImage zImage.initrd \ | 182 | clean-files += $(image-) $(initrd-) zImage zImage.initrd cuImage.* |
185 | cuImage.elf cuImage.bin.gz | ||
186 | 183 | ||
187 | # clean up files cached by wrapper | 184 | # clean up files cached by wrapper |
188 | clean-kernel := vmlinux.strip vmlinux.bin | 185 | clean-kernel := vmlinux.strip vmlinux.bin |