From patchwork Mon Mar 23 17:28:25 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Marcel Ziswiler X-Patchwork-Id: 453581 X-Patchwork-Delegate: twarren@nvidia.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 BB18014010F for ; Tue, 24 Mar 2015 04:59:16 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 3542AA7491; Mon, 23 Mar 2015 18:59:07 +0100 (CET) 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 gxvW73Mb2LrD; Mon, 23 Mar 2015 18:59:07 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 6CB60B37B3; Mon, 23 Mar 2015 18:58:48 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 90A3AA7425 for ; Mon, 23 Mar 2015 18:29:32 +0100 (CET) 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 uxtpbh8bWDk9 for ; Mon, 23 Mar 2015 18:29:32 +0100 (CET) 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 mout.perfora.net (mout.perfora.net [74.208.4.194]) by theia.denx.de (Postfix) with ESMTPS id 1C606A7428 for ; Mon, 23 Mar 2015 18:29:27 +0100 (CET) Received: from localhost.localdomain ([178.197.225.139]) by mrelay.perfora.net (mreueus001) with ESMTPSA (Nemesis) id 0Mfoag-1YoLDV0k2W-00NM1u; Mon, 23 Mar 2015 18:29:01 +0100 From: Marcel Ziswiler To: u-boot@lists.denx.de Date: Mon, 23 Mar 2015 18:28:25 +0100 Message-Id: <875da626e6adba50643916c4bde604a1a1ecc417.1427130862.git.marcel@ziswiler.com> X-Mailer: git-send-email 1.9.3 In-Reply-To: References: X-Provags-ID: V03:K0:F05pAApM+EugHjk0hudb2qmn/aSufx5Xh2nF9QI3SxwDB/7zMIr KWbxUwHrBbt5/mTbKIYjgxl4Bnw1tv6eudML17S9mn/IJuuSj96fFRuh2Z2y/P/cjrfm7hn xEd1QOBKF9biXxCK4f5qcE1YIIxRVZj+QAuIZ/jj7td1gXIenl+PKqjakLq1KOT+CzfcU1b Ez232ZgF9JgeVQ2jhrSmQ== X-UI-Out-Filterresults: notjunk:1; X-Mailman-Approved-At: Mon, 23 Mar 2015 18:58:36 +0100 Cc: Marek Vasut , Akshay Saraswat , Fabio Estevam , Tom Rini , Masahiro Yamada , Przemyslaw Marczak , Tom Warren , Hyungwon Hwang , Stephen Warren , Stefan Roese , Marcel Ziswiler Subject: [U-Boot] [PATCH 1/5] ARM: tegra: rename colibri_t20 configuration X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.15 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" In accordance with our other modules supported by U-Boot and as agreed for Apalis/Colibri T30 get rid of the carrier board in the configuration naming. --- board/toradex/colibri_t20_iris/Kconfig | 2 +- configs/{colibri_t20_iris_defconfig => colibri_t20_defconfig} | 0 include/configs/{colibri_t20_iris.h => colibri_t20.h} | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename configs/{colibri_t20_iris_defconfig => colibri_t20_defconfig} (100%) rename include/configs/{colibri_t20_iris.h => colibri_t20.h} (100%) diff --git a/board/toradex/colibri_t20_iris/Kconfig b/board/toradex/colibri_t20_iris/Kconfig index 4bf7278..cd308be 100644 --- a/board/toradex/colibri_t20_iris/Kconfig +++ b/board/toradex/colibri_t20_iris/Kconfig @@ -7,6 +7,6 @@ config SYS_VENDOR default "toradex" config SYS_CONFIG_NAME - default "colibri_t20_iris" + default "colibri_t20" endif diff --git a/configs/colibri_t20_iris_defconfig b/configs/colibri_t20_defconfig similarity index 100% rename from configs/colibri_t20_iris_defconfig rename to configs/colibri_t20_defconfig diff --git a/include/configs/colibri_t20_iris.h b/include/configs/colibri_t20.h similarity index 100% rename from include/configs/colibri_t20_iris.h rename to include/configs/colibri_t20.h