From patchwork Fri Jun 6 18:36:50 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ash Charles X-Patchwork-Id: 356985 X-Patchwork-Delegate: trini@ti.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id D5F8E14008D for ; Sat, 7 Jun 2014 04:37:17 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 9B4D54A057; Fri, 6 Jun 2014 20:37:15 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 0QiyehHfaX9z; Fri, 6 Jun 2014 20:37:13 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 995534B5EB; Fri, 6 Jun 2014 20:37:12 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 8CF254B5EB for ; Fri, 6 Jun 2014 20:37:08 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id v3noABocsuYa for ; Fri, 6 Jun 2014 20:37:05 +0200 (CEST) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from mail-pd0-f176.google.com (mail-pd0-f176.google.com [209.85.192.176]) by theia.denx.de (Postfix) with ESMTPS id 461034A057 for ; Fri, 6 Jun 2014 20:37:01 +0200 (CEST) Received: by mail-pd0-f176.google.com with SMTP id p10so2758810pdj.21 for ; Fri, 06 Jun 2014 11:37:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=hfRaXXblFU1/TAKBlz84cjNWJ9Qj2xoBXcCCd4bAh+c=; b=0WIBi3Qpz0kbLQPdNr2OiB+wRUFxd9Ntxbu7KZAnRkj+7xTPzM3ebEKsTADk7UEHW7 UW9ES1il51FP1HU+KAEs4D6nLxl9gZPSLpVABii9939Rcj1ZYQBsGkXwI2CNaApl6Auq NWnsjgU1CniP586VfCMsov7PgvbSyozI9IkprKqtCoco8ufODD/BOUw2TE3TchnXlaIE 3b5iOeRp+kocTo0/Afe2+dLoLQc1ntnEB7iTy8jJi/Rikz82Pnirqq2jg7xryfHFla63 Yr1HPGJfKXwC6EfJTZZJTtrO8tS3pNmKVAZzprocYpa+u7aAvOqKGM/Ucu0TCqhlicmq sjOQ== X-Received: by 10.68.192.106 with SMTP id hf10mr4087086pbc.30.1402079820366; Fri, 06 Jun 2014 11:37:00 -0700 (PDT) Received: from gumstux.bchsia.telus.net (s206-116-3-18.bc.hsia.telus.net. [206.116.3.18]) by mx.google.com with ESMTPSA id or4sm38730928pbb.17.2014.06.06.11.36.59 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 06 Jun 2014 11:36:59 -0700 (PDT) From: Ash Charles To: u-boot@lists.denx.de Date: Fri, 6 Jun 2014 11:36:50 -0700 Message-Id: <1402079810-21118-1-git-send-email-ashcharles@gmail.com> X-Mailer: git-send-email 1.8.3.2 Cc: Ash Charles Subject: [U-Boot] [PATCH] omap4: duovero: Correct name of default device tree X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.11 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de Signed-off-by: Ash Charles --- include/configs/ti_omap4_common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/configs/ti_omap4_common.h b/include/configs/ti_omap4_common.h index 44b3718..30b02f6 100644 --- a/include/configs/ti_omap4_common.h +++ b/include/configs/ti_omap4_common.h @@ -126,7 +126,7 @@ "if test $board_name = panda-es; then " \ "setenv fdtfile omap4-panda-es.dtb; fi;" \ "if test $board_name = duovero; then " \ - "setenv fdtfile omap4-duovero.dtb; fi;" \ + "setenv fdtfile omap4-duovero-parlor.dtb; fi;" \ "if test $fdtfile = undefined; then " \ "echo WARNING: Could not determine device tree to use; fi; \0" \ "loadfdt=load mmc ${bootpart} ${fdtaddr} ${bootdir}/${fdtfile}\0" \