diff options
author | Scott Wood <scottwood@freescale.com> | 2007-04-28 06:32:15 +1000 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-04-30 11:02:04 +1000 |
commit | d818d7ec8bb06c1bc10270962e28fb0cbd93b64a (patch) | |
tree | f4fbea5a7daca3940cc59ed6a10100bf1509c473 /arch/powerpc | |
parent | 9be4dcb606e647854760fafd0bb1cb3e1a804d16 (diff) | |
download | blackbird-op-linux-d818d7ec8bb06c1bc10270962e28fb0cbd93b64a.tar.gz blackbird-op-linux-d818d7ec8bb06c1bc10270962e28fb0cbd93b64a.zip |
[POWERPC] bootwrapper: CONFIG_ -> CONFIG_DEVICE_TREE
A usage of CONFIG_DEVICE_TREE got accidentally truncated; this
fix allows out-of-tree dts files to work.
Signed-off-by: Scott Wood <scottwood@freescale.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/boot/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/boot/Makefile b/arch/powerpc/boot/Makefile index 9d7b87778995..3716594ea33e 100644 --- a/arch/powerpc/boot/Makefile +++ b/arch/powerpc/boot/Makefile @@ -166,7 +166,7 @@ cuboot-plat-$(CONFIG_83xx) += 83xx cuboot-plat-$(CONFIG_85xx) += 85xx cuboot-plat-y += unknown-platform -dts = $(if $(shell echo $(CONFIG_) | grep '^/'),\ +dts = $(if $(shell echo $(CONFIG_DEVICE_TREE) | grep '^/'),\ ,$(srctree)/$(src)/dts/)$(CONFIG_DEVICE_TREE) $(obj)/cuImage: vmlinux $(wrapperbits) |