From patchwork Tue Mar 13 13:23:04 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tuomas Tynkkynen X-Patchwork-Id: 885122 X-Patchwork-Delegate: trini@ti.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=lists.denx.de (client-ip=81.169.180.215; helo=lists.denx.de; envelope-from=u-boot-bounces@lists.denx.de; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=tuxera.com Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 400wXs4KzTz9sCS for ; Wed, 14 Mar 2018 00:23:40 +1100 (AEDT) Received: by lists.denx.de (Postfix, from userid 105) id BE9B0C21C93; Tue, 13 Mar 2018 13:23:32 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lists.denx.de X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=none autolearn=unavailable autolearn_force=no version=3.4.0 Received: from lists.denx.de (localhost [IPv6:::1]) by lists.denx.de (Postfix) with ESMTP id 3434DC21C4A; Tue, 13 Mar 2018 13:23:30 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 88CB3C21C4A; Tue, 13 Mar 2018 13:23:28 +0000 (UTC) Received: from mx2.mpynet.fi (mx2.mpynet.fi [82.197.21.85]) by lists.denx.de (Postfix) with ESMTPS id 30B90C21BE5 for ; Tue, 13 Mar 2018 13:23:28 +0000 (UTC) From: Tuomas Tynkkynen To: Date: Tue, 13 Mar 2018 15:23:04 +0200 Message-ID: <20180313132304.5952-1-tuomas@tuxera.com> X-Mailer: git-send-email 2.16.1 MIME-Version: 1.0 X-ClientProxiedBy: tuxera-exch.ad.tuxera.com (10.20.48.11) To tuxera-exch.ad.tuxera.com (10.20.48.11) Received-SPF: none Cc: Tom Rini Subject: [U-Boot] [PATCH] tools: Make kwboot build if HOST_TOOLS_ALL=y X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.18 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" The kwboot tool for Marvell devices isn't currently being built even if HOST_TOOLS_ALL is set. It doesn't appear to depend on any CONFIG_ options, so it seems appropriate to enable building it here. Signed-off-by: Tuomas Tynkkynen --- tools/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/Makefile b/tools/Makefile index f38f68ee47..1db235036c 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -7,6 +7,7 @@ # Enable all the config-independent tools ifneq ($(HOST_TOOLS_ALL),) +CONFIG_KIRKWOOD = y CONFIG_LCD_LOGO = y CONFIG_CMD_LOADS = y CONFIG_CMD_NET = y