From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 0DD47C433EF for ; Wed, 2 Mar 2022 10:54:21 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id AF13383C97; Wed, 2 Mar 2022 11:53:35 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="RAEztuHU"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 2371283C74; Wed, 2 Mar 2022 11:53:20 +0100 (CET) Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 8B5A983C96 for ; Wed, 2 Mar 2022 11:52:49 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=pali@kernel.org Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 402A661746; Wed, 2 Mar 2022 10:52:49 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id E34B1C004E1; Wed, 2 Mar 2022 10:52:48 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1646218369; bh=+H0NC2o+xa5fdkyTHZBCbr++GPrnT/wh92yjqI8qiwI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=RAEztuHUQuQDVXiinTVO4OPVDhIj/kSKttzLM4FdF5ft0F4X9WqnTpP+BFesDPVb1 AVny9Qpm0b/2dvnUIl2xKMm066V32ATgZBbUrnENxIOuOmskXYi5kqTsnlYxvbURbq aQtLKA21BeDhYMHxDzOR2ZAKks0w9QQ8MTgXNgVk9lYB5xNCqjwbUGndOzGseIJIeH aQKYnFel+kPio0ABxSbm9D5vPBL1kqc6gzD1mVEDM8MHyQowc0/0D1HsFmXWINhHEY GaGl9XNLB4VSJoHHaSJ21t9Wo8+RygiCGqAJku3cX9mBOQiZb1zkw0q7M8c4ODNGz3 D9RFwKt6tM+EQ== Received: by pali.im (Postfix) id 9AB60677; Wed, 2 Mar 2022 11:52:48 +0100 (CET) From: =?UTF-8?q?Pali=20Roh=C3=A1r?= To: Stefan Roese , =?UTF-8?q?Marek=20Beh=C3=BAn?= , Tony Dinh Cc: u-boot@lists.denx.de Subject: [PATCH u-boot-marvell 07/10] tools: kwboot: Update usage Date: Wed, 2 Mar 2022 11:49:24 +0100 Message-Id: <20220302104927.18607-8-pali@kernel.org> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20220302104927.18607-1-pali@kernel.org> References: <20220302104927.18607-1-pali@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 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" X-Virus-Scanned: clamav-milter 0.103.5 at phobos.denx.de X-Virus-Status: Clean Add all supported Armada SoCs and document -b and -d options in usage. Signed-off-by: Pali Rohár --- tools/kwboot.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tools/kwboot.c b/tools/kwboot.c index 26cfe6dea6a7..11aca00bf1e6 100644 --- a/tools/kwboot.c +++ b/tools/kwboot.c @@ -1986,14 +1986,15 @@ static void kwboot_usage(FILE *stream, char *progname) { fprintf(stream, - "Usage: %s [OPTIONS] [-b | -D ] [-B ] \n", + "Usage: %s [OPTIONS] [-b | -D | -b | -d ] [-B ] [-t] \n", progname); fprintf(stream, "\n"); fprintf(stream, - " -b : boot with preamble (Kirkwood, Armada 370/XP)\n"); + " -b : boot with preamble (Kirkwood, Armada 370/XP/375/38x/39x)\n"); fprintf(stream, " -D : boot without preamble (Dove)\n"); - fprintf(stream, " -d: enter debug mode\n"); + fprintf(stream, " -b: enter xmodem boot mode\n"); + fprintf(stream, " -d: enter console debug mode\n"); fprintf(stream, " -a: use timings for Armada XP\n"); fprintf(stream, " -s : use specific response-timeout\n"); fprintf(stream, -- 2.20.1