From patchwork Thu Feb 7 07:50:57 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arnout Vandecappelle X-Patchwork-Id: 218852 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 7DE142C0087 for ; Thu, 7 Feb 2013 18:51:09 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 43812312F9; Thu, 7 Feb 2013 07:51:08 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22zERsLs2EVT; Thu, 7 Feb 2013 07:51:04 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 8AAF63130E; Thu, 7 Feb 2013 07:51:02 +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 818278F753 for ; Thu, 7 Feb 2013 07:51:08 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 2184B816C9 for ; Thu, 7 Feb 2013 07:51:01 +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 V8E4x4F9iunU for ; Thu, 7 Feb 2013 07:51:00 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from viper.mind.be (132.79-246-81.adsl-static.isp.belgacom.be [81.246.79.132]) by whitealder.osuosl.org (Postfix) with ESMTPS id 347C582549 for ; Thu, 7 Feb 2013 07:51:00 +0000 (UTC) Received: from [172.16.2.6] (helo=vandecaa-laptop) by viper.mind.be with esmtp (Exim 4.69) (envelope-from ) id 1U3MG4-0001Jw-AN; Thu, 07 Feb 2013 08:51:00 +0100 Received: from arnout by vandecaa-laptop with local (Exim 4.80) (envelope-from ) id 1U3MG2-0007Se-0i; Thu, 07 Feb 2013 08:50:58 +0100 From: "Arnout Vandecappelle (Essensium/Mind)" To: buildroot@busybox.net Date: Thu, 7 Feb 2013 08:50:57 +0100 Message-Id: <1360223457-28630-1-git-send-email-arnout@mind.be> X-Mailer: git-send-email 1.7.10.4 Subject: [Buildroot] [PATCH] Config.in: move BR2_DEFCONFIG to Build options menu. 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 From: "Arnout Vandecappelle (Essensium/Mind)" As suggested by gustavoz. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) --- Config.in | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/Config.in b/Config.in index 4929a80..a2c305f 100644 --- a/Config.in +++ b/Config.in @@ -22,18 +22,6 @@ config BR2_HOSTARCH_NEEDS_IA32_LIBS source "arch/Config.in" -config BR2_DEFCONFIG_FROM_ENV - string - option env="BR2_DEFCONFIG" - -config BR2_DEFCONFIG - string "Location to save buildroot config" - default BR2_DEFCONFIG_FROM_ENV if BR2_DEFCONFIG_FROM_ENV != "" - default "$(CONFIG_DIR)/defconfig" - help - When running 'make savedefconfig', the defconfig file will be saved - in this location. - menu "Build options" menu "Commands" @@ -107,6 +95,18 @@ config BR2_TAR_OPTIONS endmenu +config BR2_DEFCONFIG_FROM_ENV + string + option env="BR2_DEFCONFIG" + +config BR2_DEFCONFIG + string "Location to save buildroot config" + default BR2_DEFCONFIG_FROM_ENV if BR2_DEFCONFIG_FROM_ENV != "" + default "$(CONFIG_DIR)/defconfig" + help + When running 'make savedefconfig', the defconfig file will be saved + in this location. + config BR2_DL_DIR string "Download dir" default "$(TOPDIR)/dl"