From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ixro-ex1.ixiacom.com (ixro-out-rtc.ixiacom.com [92.87.192.98]) by bilbo.ozlabs.org (Postfix) with ESMTP id 380FBB6F1F for ; Thu, 23 Jul 2009 20:26:00 +1000 (EST) Message-ID: <4A6837D1.3070604@ixiacom.com> Date: Thu, 23 Jul 2009 13:13:37 +0300 From: Lucian Adrian Grijincu MIME-Version: 1.0 To: linuxppc-dev@lists.ozlabs.org Subject: [PATCH] powerpc: update wrapper to point to the new location of dtc Content-Type: multipart/mixed; boundary="------------080300080406040103020208" List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , This is a multi-part message in MIME format. --------------080300080406040103020208 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit 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 --- arch/powerpc/boot/wrapper | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) --------------080300080406040103020208 Content-Type: text/x-patch; name="0001-powerpc-update-wrapper-to-point-to-the-new-location-.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename*0="0001-powerpc-update-wrapper-to-point-to-the-new-location-.pa"; filename*1="tch" diff --git a/arch/powerpc/boot/wrapper b/arch/powerpc/boot/wrapper index e964489..c907540 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 --------------080300080406040103020208--