From patchwork Sun May 22 06:16:47 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 68318 Delivered-To: patch@linaro.org Received: by 10.140.92.199 with SMTP id b65csp641096qge; Sat, 21 May 2016 23:17:22 -0700 (PDT) X-Received: by 10.28.94.12 with SMTP id s12mr11374382wmb.54.1463897842330; Sat, 21 May 2016 23:17:22 -0700 (PDT) Return-Path: Received: from theia.denx.de (theia.denx.de. [85.214.87.163]) by mx.google.com with ESMTP id n5si36114408wjg.66.2016.05.21.23.17.21; Sat, 21 May 2016 23:17:22 -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 53AF74B98A; Sun, 22 May 2016 08:17:20 +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 FTTTFC6Zaajv; Sun, 22 May 2016 08:17:19 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 514704B698; Sun, 22 May 2016 08:17:19 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 3DA9C4B698 for ; Sun, 22 May 2016 08:17:15 +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 sd1xkNsIQsx3 for ; Sun, 22 May 2016 08:17:15 +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-07.nifty.com (conuserg-07.nifty.com [210.131.2.74]) by theia.denx.de (Postfix) with ESMTPS id 7A4A94B68A for ; Sun, 22 May 2016 08:17:09 +0200 (CEST) Received: from grover.sesame (FL1-119-242-215-193.osk.mesh.ad.jp [119.242.215.193]) (authenticated) by conuserg-07.nifty.com with ESMTP id u4M6GmkJ020059; Sun, 22 May 2016 15:16:52 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-07.nifty.com u4M6GmkJ020059 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1463897812; bh=caQg7l6MmS3otjIpzvIwXN4FFu+ixMvJNBOUU3UmbbU=; h=From:To:Cc:Subject:Date:From; b=yZqMiqojqtEge+MhUZKfCZI829+3k9f23jd3AovRQw9ullQYrurP/qIjr/udAsy10 6YqdNQiFdDBl23/tXDXKFdppAsdKWbuZBMVR2nGHdT5fnMOXpBqqZN3RLAxtjusQf6 Yr035G+3DPGqlWVfqRDEBk3VbB9fjgZ78U0aOHZYXebOOvMOozS+hZsKiDGCW+/Gsw A/MDWIX4B9OFHnt9EIiBqEjTqymzP0ZlrTcflzm1PoZr3dXwkKWRkZG6KmLrNk2Vsx 6vBfu3sZwny3eGELEsUibpuYBSmMsbHgoz/epldHe3LQbP0aFlnE8HcN0BSw8GhNoy v0d87mWNHFSZg== X-Nifty-SrcIP: [119.242.215.193] From: Masahiro Yamada To: u-boot@lists.denx.de Date: Sun, 22 May 2016 15:16:47 +0900 Message-Id: <1463897807-30383-1-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 1.9.1 Subject: [U-Boot] [PATCH] tools/genboardscfg.py: remove bogus import subprocess 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" Since f6c8f38ec601 ("tools/genboardscfg.py: improve performance more with Kconfiglib"), this tool does not use the subprocess module. Signed-off-by: Masahiro Yamada --- tools/genboardscfg.py | 1 - 1 file changed, 1 deletion(-) -- 1.9.1 _______________________________________________ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot diff --git a/tools/genboardscfg.py b/tools/genboardscfg.py index 23c956b..c2efad5 100755 --- a/tools/genboardscfg.py +++ b/tools/genboardscfg.py @@ -21,7 +21,6 @@ import glob import multiprocessing import optparse import os -import subprocess import sys import tempfile import time