diff options
author | Scott Wood <scottwood@freescale.com> | 2007-04-16 19:25:55 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-04-24 07:31:56 -0400 |
commit | 5cc5133a29fab993f0b40c03e975bc5458ece507 (patch) | |
tree | 0e616003083b72aeee05dc26a16c33ec776b32d1 /arch/powerpc/boot/Makefile | |
parent | 9b1c59e256e91aaf2a6543b32afc3658d8f96d4b (diff) |
[POWERPC] bootwrapper: cuboot for 83xx
This adds cuboot support for MPC83xx platforms.
A device tree used with this must have linux,stdout-path in /chosen and
linux,network-index in any network device nodes that need mac addresses
assigned.
Signed-off-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 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/powerpc/boot/Makefile b/arch/powerpc/boot/Makefile index d602b7c8ff88..3e172ff4fabb 100644 --- a/arch/powerpc/boot/Makefile +++ b/arch/powerpc/boot/Makefile | |||
@@ -43,7 +43,7 @@ $(addprefix $(obj)/,$(zlib) main.o): $(addprefix $(obj)/,$(zliblinuxheader)) \ | |||
43 | src-wlib := string.S crt0.S stdio.c main.c flatdevtree.c flatdevtree_misc.c \ | 43 | src-wlib := string.S crt0.S stdio.c main.c flatdevtree.c flatdevtree_misc.c \ |
44 | ns16550.c serial.c simple_alloc.c div64.S util.S \ | 44 | ns16550.c serial.c simple_alloc.c div64.S util.S \ |
45 | gunzip_util.c elf_util.c $(zlib) devtree.c | 45 | gunzip_util.c elf_util.c $(zlib) devtree.c |
46 | src-plat := of.c | 46 | src-plat := of.c cuboot-83xx.c |
47 | src-boot := $(src-wlib) $(src-plat) empty.c | 47 | src-boot := $(src-wlib) $(src-plat) empty.c |
48 | 48 | ||
49 | src-boot := $(addprefix $(obj)/, $(src-boot)) | 49 | src-boot := $(addprefix $(obj)/, $(src-boot)) |
@@ -162,6 +162,7 @@ $(obj)/zImage.initrd.ps3: vmlinux | |||
162 | $(obj)/uImage: vmlinux $(wrapperbits) | 162 | $(obj)/uImage: vmlinux $(wrapperbits) |
163 | $(call if_changed,wrap,uboot) | 163 | $(call if_changed,wrap,uboot) |
164 | 164 | ||
165 | cuboot-plat-$(CONFIG_83xx) += 83xx | ||
165 | cuboot-plat-y += unknown-platform | 166 | cuboot-plat-y += unknown-platform |
166 | 167 | ||
167 | dts = $(if $(shell echo $(CONFIG_) | grep '^/'),\ | 168 | dts = $(if $(shell echo $(CONFIG_) | grep '^/'),\ |