diff options
author | David Gibson <david@gibson.dropbear.id.au> | 2007-12-17 23:07:20 -0500 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-12-20 00:18:00 -0500 |
commit | e2dc87a1dc7e2ece822eaf703d00f2ecb7c3bc70 (patch) | |
tree | b6cc04b765d379abf7fb363c8f11edaaba5952ee /arch/powerpc/boot/wrapper | |
parent | a4da2e3ec84cda635ac441efbe781a38d2ee41ee (diff) |
[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-x | arch/powerpc/boot/wrapper | 2 |
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 | |||
124 | if [ -z "$dtb" ]; then | 124 | if [ -z "$dtb" ]; then |
125 | dtb="$platform.dtb" | 125 | dtb="$platform.dtb" |
126 | fi | 126 | fi |
127 | dtc -O dtb -o "$dtb" -b 0 -V 16 "$dts" | 127 | $object/dtc -O dtb -o "$dtb" -b 0 "$dts" |
128 | fi | 128 | fi |
129 | 129 | ||
130 | if [ -z "$kernel" ]; then | 130 | if [ -z "$kernel" ]; then |