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: 624901 X-Patchwork-Delegate: trini@ti.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 3rCBKf2XTxz9t3k for ; Sun, 22 May 2016 16:17:25 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=nifty.com header.i=@nifty.com header.b=yZqMiqoj; dkim-atps=neutral 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(-) 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