diff options
author | Lucian Adrian Grijincu <lgrijincu@ixiacom.com> | 2009-07-23 00:13:37 +0000 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2009-08-20 10:12:33 +1000 |
commit | c79b29735d28d819380b584d6707b4110ee759f3 (patch) | |
tree | ec3d868f8aeb4d953f96d0a4aba502635b87efe3 | |
parent | f7d4f68d971b8234491b4a0be58aa6f659c1c194 (diff) | |
download | talos-op-linux-c79b29735d28d819380b584d6707b4110ee759f3.tar.gz talos-op-linux-c79b29735d28d819380b584d6707b4110ee759f3.zip |
powerpc: Update boot wrapper script with the new location of dtc
dtc was moved in 9fffb55f66127b52c937ede5196ebfa0c0d50bce from
arch/powerpc/boot/ to scripts/dtc/
This patch updates the wrapper script to point to the new location of dtc.
Signed-off-by: Lucian Adrian Grijincu <lgrijincu@ixiacom.com>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
-rwxr-xr-x | arch/powerpc/boot/wrapper | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/powerpc/boot/wrapper b/arch/powerpc/boot/wrapper index 4db487d1d2a8..ac9e9a58b2b0 100755 --- a/arch/powerpc/boot/wrapper +++ b/arch/powerpc/boot/wrapper @@ -46,6 +46,7 @@ CROSS= # directory for object and other files used by this script object=arch/powerpc/boot objbin=$object +dtc=scripts/dtc/dtc # directory for working files tmpdir=. @@ -124,7 +125,7 @@ if [ -n "$dts" ]; then if [ -z "$dtb" ]; then dtb="$platform.dtb" fi - $object/dtc -O dtb -o "$dtb" -b 0 "$dts" + $dtc -O dtb -o "$dtb" -b 0 "$dts" fi if [ -z "$kernel" ]; then |