From patchwork Mon Jul 25 10:15:23 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 72702 Delivered-To: patch@linaro.org Received: by 10.140.29.52 with SMTP id a49csp1064093qga; Mon, 25 Jul 2016 03:14:20 -0700 (PDT) X-Received: by 10.28.46.204 with SMTP id u195mr37881394wmu.57.1469441660880; Mon, 25 Jul 2016 03:14:20 -0700 (PDT) Return-Path: Received: from theia.denx.de (theia.denx.de. [85.214.87.163]) by mx.google.com with ESMTP id i130si23361775wme.120.2016.07.25.03.14.20; Mon, 25 Jul 2016 03:14:20 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of u-boot-bounces@lists.denx.de designates 85.214.87.163 as permitted sender) client-ip=85.214.87.163; Authentication-Results: mx.google.com; dkim=neutral (body hash did not verify) header.i=@nifty.com; spf=pass (google.com: best guess record for domain of u-boot-bounces@lists.denx.de designates 85.214.87.163 as permitted sender) smtp.mailfrom=u-boot-bounces@lists.denx.de Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 1F1E2A7783; Mon, 25 Jul 2016 12:14:18 +0200 (CEST) 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 vEN6oA6_4ESX; Mon, 25 Jul 2016 12:14:18 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id DA2EBA7784; Mon, 25 Jul 2016 12:14:16 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id DFF28A7734 for ; Mon, 25 Jul 2016 12:14:06 +0200 (CEST) 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 fl0MnUuF_z3m for ; Mon, 25 Jul 2016 12:14:06 +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 conuserg-11.nifty.com (conuserg-11.nifty.com [210.131.2.78]) by theia.denx.de (Postfix) with ESMTPS id 312ADA75F3 for ; Mon, 25 Jul 2016 12:14:01 +0200 (CEST) Received: from beagle.diag.org (p14092-ipngnfx01kyoto.kyoto.ocn.ne.jp [153.142.97.92]) (authenticated) by conuserg-11.nifty.com with ESMTP id u6PADhxE021296; Mon, 25 Jul 2016 19:13:45 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-11.nifty.com u6PADhxE021296 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1469441625; bh=kpATDKRqRC6C27Kir/Dhc74ou1HIXYkupVP/np+cko0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=RAYJvnPNzKg4I6uYoa78ZfiJ4vqAtR8IsSRdkTHnfZj60o8Ye3UEtuJOt34q8v73R vLcwapvw2Pl7IzXG3oVpmaWwykwozW+U+WJ9L6tpjQGwS3JgzmfDfxR2B/r0WJcpMQ BnVIGkrCZ39V/HYjl91wlptMSlL2/6sY0L220Cni/I3/8cTSuwWW8T95kQ6lgwCWWa AJRsHDMXNOeH8UpPJOOe9vA2Hht2lgo9mXrdozdezU+12zpnIHS+kKNBCG3fliPX0Q /G0TMSIN9IP3qdh4FLvgIZwMrVEWnvZKo8Pq4zQu0BaAogi3o5ujxH+srS9hnw7KEf zrdiuFoNJwfuA== X-Nifty-SrcIP: [153.142.97.92] From: Masahiro Yamada To: u-boot@lists.denx.de Date: Mon, 25 Jul 2016 19:15:23 +0900 Message-Id: <1469441729-5817-3-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1469441729-5817-1-git-send-email-yamada.masahiro@socionext.com> References: <1469441729-5817-1-git-send-email-yamada.masahiro@socionext.com> Cc: Tom Rini , Joe Hershberger Subject: [U-Boot] [PATCH v2 2/8] tools: moveconfig: do not check clean tree and compilers for -H option 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" The clean tree (make mrproper) and compilers are required when moving config options, but not needed when we only cleanup headers. Signed-off-by: Masahiro Yamada --- Changes in v2: None tools/moveconfig.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) -- 1.9.1 _______________________________________________ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot diff --git a/tools/moveconfig.py b/tools/moveconfig.py index b1190e2..05a581f 100755 --- a/tools/moveconfig.py +++ b/tools/moveconfig.py @@ -1042,11 +1042,9 @@ def main(): check_top_directory() - check_clean_directory() - - update_cross_compile(options.color) - if not options.cleanup_headers_only: + check_clean_directory() + update_cross_compile(options.color) move_config(configs, options) if configs: