aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/boot/wrapper
diff options
context:
space:
mode:
authorDavid Gibson <david@gibson.dropbear.id.au>2007-12-18 15:07:20 +1100
committerPaul Mackerras <paulus@samba.org>2007-12-20 16:18:00 +1100
commite2dc87a1dc7e2ece822eaf703d00f2ecb7c3bc70 (patch)
treeb6cc04b765d379abf7fb363c8f11edaaba5952ee /arch/powerpc/boot/wrapper
parent[POWERPC] Merge dtc upstream source (diff)
downloadlinux-dev-e2dc87a1dc7e2ece822eaf703d00f2ecb7c3bc70.tar.xz
linux-dev-e2dc87a1dc7e2ece822eaf703d00f2ecb7c3bc70.zip
[POWERPC] Use embedded dtc in kernel builds
This patch alters the kernel makefiles to build dtc from the sources embedded in the previous patch. It also changes the arch/powerpc/boot/wrapper script to use the embedded dtc, rather than expecting a copy of dtc already installed on the system. Signed-off-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/boot/wrapper')
-rwxr-xr-xarch/powerpc/boot/wrapper2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/boot/wrapper b/arch/powerpc/boot/wrapper
index a591ced47875..f961cdeb97a2 100755
--- a/arch/powerpc/boot/wrapper
+++ b/arch/powerpc/boot/wrapper
@@ -124,7 +124,7 @@ if [ -n "$dts" ]; then
if [ -z "$dtb" ]; then
dtb="$platform.dtb"
fi
- dtc -O dtb -o "$dtb" -b 0 -V 16 "$dts"
+ $object/dtc -O dtb -o "$dtb" -b 0 "$dts"
fi
if [ -z "$kernel" ]; then