diff options
author | Scott Wood <scottwood@freescale.com> | 2007-08-20 13:40:02 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-08-22 01:37:09 -0400 |
commit | e5d8d54db25790524da34b0143f4e0176fb7677b (patch) | |
tree | 5424562c9dd166eadd10b58d38ea9b3ce1a68ae0 /arch/powerpc/boot/Makefile | |
parent | 0b195812dfbccc2ac33e17b35b899dd4fea7611f (diff) |
[POWERPC] bootwrapper: Add PowerQUICC II (82xx with CPM) cuboot support
This allows booting on legacy, non-device-tree aware versions of U-boot.
It also fixes up the hardware to match the PCI and chipselect information
in the device tree, as u-boot is inconsistent in setting these up
correctly (or at all).
Signed-off-by: Scott Wood <scottwood@freescale.com>
Acked-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/boot/Makefile')
-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 6b9af78b67d4..cd7c05769e41 100644 --- a/arch/powerpc/boot/Makefile +++ b/arch/powerpc/boot/Makefile | |||
@@ -48,7 +48,7 @@ src-wlib := string.S crt0.S stdio.c main.c flatdevtree.c flatdevtree_misc.c \ | |||
48 | cpm-serial.c | 48 | cpm-serial.c |
49 | src-plat := of.c cuboot-83xx.c cuboot-85xx.c holly.c \ | 49 | src-plat := of.c cuboot-83xx.c cuboot-85xx.c holly.c \ |
50 | cuboot-ebony.c treeboot-ebony.c prpmc2800.c \ | 50 | cuboot-ebony.c treeboot-ebony.c prpmc2800.c \ |
51 | ps3-head.S ps3-hvcall.S ps3.c treeboot-bamboo.c cuboot-8xx.c | 51 | ps3-head.S ps3-hvcall.S ps3.c treeboot-bamboo.c cuboot-8xx.c cuboot-pq2.c |
52 | src-boot := $(src-wlib) $(src-plat) empty.c | 52 | src-boot := $(src-wlib) $(src-plat) empty.c |
53 | 53 | ||
54 | src-boot := $(addprefix $(obj)/, $(src-boot)) | 54 | src-boot := $(addprefix $(obj)/, $(src-boot)) |
@@ -141,6 +141,7 @@ image-$(CONFIG_DEFAULT_UIMAGE) += uImage | |||
141 | 141 | ||
142 | ifneq ($(CONFIG_DEVICE_TREE),"") | 142 | ifneq ($(CONFIG_DEVICE_TREE),"") |
143 | image-$(CONFIG_PPC_8xx) += cuImage.8xx | 143 | image-$(CONFIG_PPC_8xx) += cuImage.8xx |
144 | image-$(CONFIG_8260) += cuImage.pq2 | ||
144 | image-$(CONFIG_PPC_83xx) += cuImage.83xx | 145 | image-$(CONFIG_PPC_83xx) += cuImage.83xx |
145 | image-$(CONFIG_PPC_85xx) += cuImage.85xx | 146 | image-$(CONFIG_PPC_85xx) += cuImage.85xx |
146 | image-$(CONFIG_EBONY) += treeImage.ebony cuImage.ebony | 147 | image-$(CONFIG_EBONY) += treeImage.ebony cuImage.ebony |