From patchwork Mon Jan 30 02:12:05 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 92791 Delivered-To: patch@linaro.org Received: by 10.140.20.99 with SMTP id 90csp1238829qgi; Sun, 29 Jan 2017 18:13:15 -0800 (PST) X-Received: by 10.28.61.136 with SMTP id k130mr11157834wma.128.1485742395714; Sun, 29 Jan 2017 18:13:15 -0800 (PST) Return-Path: Received: from theia.denx.de (theia.denx.de. [85.214.87.163]) by mx.google.com with ESMTP id f69si11472063wmg.129.2017.01.29.18.13.15; Sun, 29 Jan 2017 18:13:15 -0800 (PST) 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 D18634AAD2; Mon, 30 Jan 2017 03:13:13 +0100 (CET) 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 llrrSw8LUX2P; Mon, 30 Jan 2017 03:13:13 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 27CCA4A99B; Mon, 30 Jan 2017 03:13:13 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 35D874A997 for ; Mon, 30 Jan 2017 03:13:07 +0100 (CET) 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 Uef0XNXmk2B2 for ; Mon, 30 Jan 2017 03:13:07 +0100 (CET) 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-10.nifty.com (conuserg-10.nifty.com [210.131.2.77]) by theia.denx.de (Postfix) with ESMTPS id 317AC4A99B for ; Mon, 30 Jan 2017 03:13:01 +0100 (CET) Received: from pug.jp.socionext.com (p14092-ipngnfx01kyoto.kyoto.ocn.ne.jp [153.142.97.92]) (authenticated) by conuserg-10.nifty.com with ESMTP id v0U2CAlq012402; Mon, 30 Jan 2017 11:12:10 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-10.nifty.com v0U2CAlq012402 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1485742331; bh=F2ifBXZGojOulPrCjJV2+E7HJrZpa8aPPL/6IkndQNA=; h=From:To:Cc:Subject:Date:From; b=ZL/0r0GRECNkQbxEM3MB3EYY741/qP5JH7faXf6kgcJQ989jar6JZrPGUFl9O9LBI W8OOxfYzhBcSden5ntnL3pEfwgV4Kj0POuVwoMh4eFuoDvePBr52gryy+xXH1o/irC OYBIWUeqwxx/YCycuHRK7NaPXPz0N5HuC6CFujc3XfDqPRoeqd9fBFJm4xbQl7E6o0 PqrXsOBiz8OXwc8VZx/cKVy4nrIPAHq3E/S/m1zcFNCQ6XznuUsCne615q4tgWVLo8 +dkJ6xXJQXYJeHge0Askfcff9IFQtGG2Vs/zX305Jz6GGSKIXNTm4PdTeAe8UrFS0B nT0Q4O1MUHADA== X-Nifty-SrcIP: [153.142.97.92] From: Masahiro Yamada To: u-boot@lists.denx.de Date: Mon, 30 Jan 2017 11:12:05 +0900 Message-Id: <1485742328-32398-1-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 2.7.4 Cc: Tom Rini Subject: [U-Boot] [PATCH v2 0/3] cmd: add "config" command, rework "license" command 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" Changes in v2: - Fix a typo in git-log. bin2header -> bin2c Masahiro Yamada (3): scripts: import bin2c.c from Linux 4.10-rc6 cmd: add a new command "config" to show .config contents cmd: rework "license" command Kconfig | 2 ++ Makefile | 14 ++++++++------ cmd/.gitignore | 6 ++++++ cmd/Kconfig | 13 +++++++++++++ cmd/Makefile | 37 +++++++++++++++++++++++++++++++++++++ cmd/config.c | 44 ++++++++++++++++++++++++++++++++++++++++++++ cmd/license.c | 31 ++++++++++++++++++------------- include/.gitignore | 1 - scripts/.gitignore | 1 + scripts/Kconfig | 2 ++ scripts/Makefile | 4 ++++ scripts/bin2c.c | 36 ++++++++++++++++++++++++++++++++++++ tools/Makefile | 11 +---------- tools/bin2header.c | 41 ----------------------------------------- 14 files changed, 172 insertions(+), 71 deletions(-) create mode 100644 cmd/.gitignore create mode 100644 cmd/config.c create mode 100644 scripts/Kconfig create mode 100644 scripts/bin2c.c delete mode 100644 tools/bin2header.c -- 2.7.4 _______________________________________________ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot