From patchwork Mon Sep 2 16:06:37 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Petazzoni X-Patchwork-Id: 271983 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id CAF322C009F for ; Tue, 3 Sep 2013 02:07:40 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 7001BE1B9; Mon, 2 Sep 2013 16:07:32 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Gn5iplMEgRCw; Mon, 2 Sep 2013 16:07:31 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 2AE48E1DE; Mon, 2 Sep 2013 16:07:27 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id DCB501BF9A3 for ; Mon, 2 Sep 2013 16:07:24 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id D77FA90CEC for ; Mon, 2 Sep 2013 16:07:24 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id M2eqH1NnFpbu for ; Mon, 2 Sep 2013 16:07:24 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail.free-electrons.com (top.free-electrons.com [176.31.233.9]) by whitealder.osuosl.org (Postfix) with ESMTP id 2BB5790C61 for ; Mon, 2 Sep 2013 16:07:24 +0000 (UTC) Received: by mail.free-electrons.com (Postfix, from userid 106) id 1985E85D; Mon, 2 Sep 2013 18:07:45 +0200 (CEST) Received: from localhost (col31-4-88-188-83-94.fbx.proxad.net [88.188.83.94]) by mail.free-electrons.com (Postfix) with ESMTPSA id 3F4EA60B for ; Mon, 2 Sep 2013 18:07:15 +0200 (CEST) From: Thomas Petazzoni To: buildroot@uclibc.org Date: Mon, 2 Sep 2013 18:06:37 +0200 Message-Id: <1378138000-12739-12-git-send-email-thomas.petazzoni@free-electrons.com> X-Mailer: git-send-email 1.8.1.2 In-Reply-To: <1378138000-12739-1-git-send-email-thomas.petazzoni@free-electrons.com> References: <1378138000-12739-1-git-send-email-thomas.petazzoni@free-electrons.com> Subject: [Buildroot] [PATCHv2 11/14] toolchain: move elf2flt option inclusion to toolchain-buildroot/Config.in X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net The only remaining thing in toolchain-buildroot/Config.in.2 is the inclusion of the elf2flt option. It doesn't really make sense to have a separate Config.in file for that, so let's move this to toolchain-buildroot/Config.in. Signed-off-by: Thomas Petazzoni --- toolchain/Config.in | 1 - toolchain/toolchain-buildroot/Config.in | 1 + toolchain/toolchain-buildroot/Config.in.2 | 9 --------- 3 files changed, 1 insertion(+), 10 deletions(-) delete mode 100644 toolchain/toolchain-buildroot/Config.in.2 diff --git a/toolchain/Config.in b/toolchain/Config.in index da9cd68..51c83d9 100644 --- a/toolchain/Config.in +++ b/toolchain/Config.in @@ -62,6 +62,5 @@ source "toolchain/toolchain-buildroot/Config.in" source "toolchain/toolchain-external/Config.in" source "toolchain/toolchain-crosstool-ng/Config.in" source "toolchain/toolchain-common.in" -source "toolchain/toolchain-buildroot/Config.in.2" endmenu diff --git a/toolchain/toolchain-buildroot/Config.in b/toolchain/toolchain-buildroot/Config.in index 060b494..0ebbd6c 100644 --- a/toolchain/toolchain-buildroot/Config.in +++ b/toolchain/toolchain-buildroot/Config.in @@ -68,4 +68,5 @@ source "package/uclibc/Config.in" source "package/binutils/Config.in.host" source "package/gcc/Config.in.host" +source "package/elf2flt/Config.in.host" endif diff --git a/toolchain/toolchain-buildroot/Config.in.2 b/toolchain/toolchain-buildroot/Config.in.2 deleted file mode 100644 index df26079..0000000 --- a/toolchain/toolchain-buildroot/Config.in.2 +++ /dev/null @@ -1,9 +0,0 @@ -# Buildroot backend specific options - -if BR2_TOOLCHAIN_BUILDROOT - -comment "Toolchain Options" - -source "package/elf2flt/Config.in.host" - -endif