From patchwork Wed Jun 1 14:39:40 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Carlos Santos X-Patchwork-Id: 628694 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3rKY1H0703z9t89 for ; Thu, 2 Jun 2016 00:40:18 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id EB43A89370; Wed, 1 Jun 2016 14:40:14 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id yYrBVwKwmskO; Wed, 1 Jun 2016 14:40:13 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id DD14B89239; Wed, 1 Jun 2016 14:40:12 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id 930791C0F1D for ; Wed, 1 Jun 2016 14:40:00 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 8E6EC25F3F for ; Wed, 1 Jun 2016 14:40:00 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Lms3FqJU29Xa for ; Wed, 1 Jun 2016 14:39:56 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail.datacom.ind.br (mx.datacom.ind.br [177.66.5.10]) by silver.osuosl.org (Postfix) with ESMTPS id 7BEB8246F7 for ; Wed, 1 Jun 2016 14:39:56 +0000 (UTC) Received: from mail.datacom.ind.br (localhost [127.0.0.1]) by mail.datacom.ind.br (Postfix) with ESMTPS id 5BCBF17CD172; Wed, 1 Jun 2016 11:38:34 -0300 (BRT) Received: from localhost (localhost [127.0.0.1]) by mail.datacom.ind.br (Postfix) with ESMTP id 476E517CD175; Wed, 1 Jun 2016 11:38:34 -0300 (BRT) Received: from mail.datacom.ind.br ([127.0.0.1]) by localhost (mail.datacom.ind.br [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id 7WDivWp5XdEc; Wed, 1 Jun 2016 11:38:34 -0300 (BRT) Received: from PEDELD048.datacom.net (pedeld048.datacom.net [10.0.120.36]) by mail.datacom.ind.br (Postfix) with ESMTPSA id 1863E17CD16F; Wed, 1 Jun 2016 11:38:34 -0300 (BRT) From: Carlos Santos To: buildroot@buildroot.org Date: Wed, 1 Jun 2016 11:39:40 -0300 Message-Id: <1464791982-10166-3-git-send-email-casantos@datacom.ind.br> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1464791982-10166-1-git-send-email-casantos@datacom.ind.br> References: <1462736800-9552-1-git-send-email-casantos@datacom.ind.br> <1464791982-10166-1-git-send-email-casantos@datacom.ind.br> Cc: thomas.petazzoni@free-electrons.com, yann.morin.1998@free.fr Subject: [Buildroot] [PATCH next 2/4] uboot-tools: improve the help text of existing options X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Improve the descriptions of the knobs to install mkimage, mkenvimage, dumpimage, fw_printenv and fw_setenv. Signed-off-by: Carlos Santos --- package/uboot-tools/Config.in | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/package/uboot-tools/Config.in b/package/uboot-tools/Config.in index aca310b..76983f4 100644 --- a/package/uboot-tools/Config.in +++ b/package/uboot-tools/Config.in @@ -10,6 +10,8 @@ if BR2_PACKAGE_UBOOT_TOOLS config BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE bool "mkimage" help + Install the mkimage tool on the target system + The mkimage tool from Das U-Boot bootloader, which allows generation of U-Boot images in various formats. @@ -41,6 +43,8 @@ endif config BR2_PACKAGE_UBOOT_TOOLS_MKENVIMAGE bool "mkenvimage" help + Install the mkenvimage tool on the target system + The mkenvimage tool from Das U-Boot bootloader, which allows generation of a valid binary environment image from a text file describing the key=value pairs of the environment. @@ -49,13 +53,17 @@ config BR2_PACKAGE_UBOOT_TOOLS_FWPRINTENV bool "fw_printenv" default y help - The fw_printenv / fw_setenv tools from Das U-Boot + Install the fw_printenv / fw_setenv tools on the target system + + The fw_printenv and fw_setenv tools from Das U-Boot bootloader, which allows access to the U-Boot environment from Linux. config BR2_PACKAGE_UBOOT_TOOLS_DUMPIMAGE bool "dumpimage" help + Install the dumpimage tool on the target system + The dumpimage tool from Das U-Boot bootloader, which allows extraction of data from U-Boot images.