From patchwork Wed May 24 15:43:09 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Franklin S Cooper Jr X-Patchwork-Id: 766548 X-Patchwork-Delegate: trini@ti.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 3wXxwR0jQzz9sNY for ; Thu, 25 May 2017 02:01:43 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=ti.com header.i=@ti.com header.b="IfCvVZUc"; dkim-atps=neutral Received: by lists.denx.de (Postfix, from userid 105) id B699DC21F1D; Wed, 24 May 2017 15:50:11 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lists.denx.de X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=RCVD_IN_DNSWL_NONE, T_DKIM_INVALID autolearn=unavailable autolearn_force=no version=3.4.0 Received: from lists.denx.de (localhost [IPv6:::1]) by lists.denx.de (Postfix) with ESMTP id E4017C21E4A; Wed, 24 May 2017 15:45:34 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 6AE3FC21E52; Wed, 24 May 2017 15:44:12 +0000 (UTC) Received: from lelnx194.ext.ti.com (lelnx194.ext.ti.com [198.47.27.80]) by lists.denx.de (Postfix) with ESMTPS id 975DBC21E75 for ; Wed, 24 May 2017 15:44:07 +0000 (UTC) Received: from dflxv15.itg.ti.com ([128.247.5.124]) by lelnx194.ext.ti.com (8.15.1/8.15.1) with ESMTP id v4OFi6qW016599 for ; Wed, 24 May 2017 10:44:06 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ti.com; s=ti-com-17Q1; t=1495640646; bh=54KONMH0f5h+MfFzGoyOYKEXscs/6Na8bGERUApZqtQ=; h=From:To:CC:Subject:Date:In-Reply-To:References; b=IfCvVZUc/j/did4A6fDPqiUcHGijYXmsk5APUBNOofKBD9MmpLRjG4gQJKqtkYgIF oYt7eP4Ac79/pX4iLJTvtUVqJyEq1Y1PiXeGIlNF4nnvIU8wVQfK0M8n3znZDFF5ZH CNrhCW4hPZpiDDsWxGGmYXUtVZUmsOatx48YQt4Q= Received: from DLEE70.ent.ti.com (dlemailx.itg.ti.com [157.170.170.113]) by dflxv15.itg.ti.com (8.14.3/8.13.8) with ESMTP id v4OFi6m6017577 for ; Wed, 24 May 2017 10:44:06 -0500 Received: from dflp33.itg.ti.com (10.64.6.16) by DLEE70.ent.ti.com (157.170.170.113) with Microsoft SMTP Server id 14.3.294.0; Wed, 24 May 2017 10:44:05 -0500 Received: from dbdmail01.india.ti.com (dbdmail01.india.ti.com [172.24.162.206]) by dflp33.itg.ti.com (8.14.3/8.13.8) with ESMTP id v4OFi51Q015068; Wed, 24 May 2017 10:44:05 -0500 Received: from udb0273011.dhcp.ti.com (udb0273011.dhcp.ti.com [128.247.59.33]) by dbdmail01.india.ti.com (8.14.3/8.14.3/SuSE Linux 0.8) with ESMTP id v4OFhIJK020950; Wed, 24 May 2017 21:14:03 +0530 From: Franklin S Cooper Jr To: , Date: Wed, 24 May 2017 10:43:09 -0500 Message-ID: <20170524154310.10400-30-fcooper@ti.com> X-Mailer: git-send-email 2.10.0 In-Reply-To: <20170524154310.10400-1-fcooper@ti.com> References: <20170524154310.10400-1-fcooper@ti.com> MIME-Version: 1.0 Cc: Franklin S Cooper Jr Subject: [U-Boot] [PATCH v3 29/30] ARM: k2g: Add K2G ICE DTB to the list of possible DTBs X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.18 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" K2G ICE evm will have its own dtb. Therefore, add it to the list of dtbs located in the appended U-boot dtb FIT image. Therefore, when swapping out dtbs K2G ICE boards can grab the correct one. Signed-off-by: Franklin S Cooper Jr Reviewed-by: Tom Rini --- board/ti/ks2_evm/board_k2g.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/board/ti/ks2_evm/board_k2g.c b/board/ti/ks2_evm/board_k2g.c index 5f3fc76..bbd74ee 100644 --- a/board/ti/ks2_evm/board_k2g.c +++ b/board/ti/ks2_evm/board_k2g.c @@ -225,6 +225,8 @@ int board_fit_config_name_match(const char *name) return 0; else if (!strcmp(name, "keystone-k2g-evm") && board_ti_is("66AK2GGP")) return 0; + else if (!strcmp(name, "keystone-k2g-ice") && board_ti_is("66AK2GIC")) + return 0; else return -1; }