From patchwork Mon Jul 25 13:06:06 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 72713 Delivered-To: patch@linaro.org Received: by 10.140.29.52 with SMTP id a49csp1136079qga; Mon, 25 Jul 2016 06:05:20 -0700 (PDT) X-Received: by 10.28.36.10 with SMTP id k10mr19229155wmk.33.1469451919964; Mon, 25 Jul 2016 06:05:19 -0700 (PDT) Return-Path: Received: from theia.denx.de (theia.denx.de. [85.214.87.163]) by mx.google.com with ESMTP id 192si24053444wmm.95.2016.07.25.06.05.19; Mon, 25 Jul 2016 06:05:19 -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 F1B2CA777B; Mon, 25 Jul 2016 15:05: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 bvDX9Lj9nadl; Mon, 25 Jul 2016 15:05:18 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 6C760A7767; Mon, 25 Jul 2016 15:05:18 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id B3BDDA7767 for ; Mon, 25 Jul 2016 15:05:16 +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 uI__33Lk4Zvq for ; Mon, 25 Jul 2016 15:05:16 +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-09.nifty.com (conuserg-09.nifty.com [210.131.2.76]) by theia.denx.de (Postfix) with ESMTPS id 061D2A76EF for ; Mon, 25 Jul 2016 15:05:13 +0200 (CEST) Received: from beagle.diag.org (p14092-ipngnfx01kyoto.kyoto.ocn.ne.jp [153.142.97.92]) (authenticated) by conuserg-09.nifty.com with ESMTP id u6PD4MWm012110; Mon, 25 Jul 2016 22:04:24 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-09.nifty.com u6PD4MWm012110 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1469451865; bh=85zhONHyqVCUK7yPYi/NGpDPtHlnxWtKbvtRyqIuzvg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=v51Z/lJQd4koSg8K7B7ZET/SQLhPKh/abtyGxhfidSn2YSsKsjr1FaWl8uUWtFklI ERz0Z71/ddQTHVz9dGEzKYqIydA0vQMl+gAineRA1IOljdITuR1epVFyFpwoPUSBL3 nylmoqX3maEm282T6STrxuxOig2pXaksDgvpHhKD6/Oa28l0kbeATQHP8H0zGp/d+m BDIwq8z0IXKnKU+/hzKzOyT8ToSEuHMQnHcAJXRhL5xTPF2xpxJytIERCH6vPrIZGW knUShwvN1On1qa0aopbofPxlBUBH5r5tIdzB/ebUWuXzPmsrrcj7oQJadDA57rFVDR DnD0rHLYmNZ8Q== X-Nifty-SrcIP: [153.142.97.92] From: Masahiro Yamada To: u-boot@lists.denx.de Date: Mon, 25 Jul 2016 22:06:06 +0900 Message-Id: <1469451968-26992-2-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1469451968-26992-1-git-send-email-yamada.masahiro@socionext.com> References: <1469451968-26992-1-git-send-email-yamada.masahiro@socionext.com> Cc: Michal Simek , Daniel Allred Subject: [U-Boot] [PATCH 1/3] cmd: bootz: make CMD_BOOTZ depend on CMD_BOOTM 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 "bootz" command is implemented in the "bootm", so the dependency should be reflected in Kconfig. Signed-off-by: Masahiro Yamada --- Kconfig | 1 + cmd/Kconfig | 1 + 2 files changed, 2 insertions(+) -- 1.9.1 _______________________________________________ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot diff --git a/Kconfig b/Kconfig index ef12f9f..0d6afd2 100644 --- a/Kconfig +++ b/Kconfig @@ -57,6 +57,7 @@ config DISTRO_DEFAULTS bool "Select defaults suitable for booting general purpose Linux distributions" default y if ARCH_SUNXI default n + select CMD_BOOTM select CMD_BOOTZ select CMD_DHCP select CMD_EXT2 diff --git a/cmd/Kconfig b/cmd/Kconfig index d69b817..171114d 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -162,6 +162,7 @@ config CMD_BOOTM config CMD_BOOTZ bool "bootz" + depends on CMD_BOOTM help Boot the Linux zImage