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 2B253ECAAD2 for ; Mon, 29 Aug 2022 15:36:42 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 15D6C8418B; Mon, 29 Aug 2022 17:36:40 +0200 (CEST) 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="k03yBPLM"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 901E88458A; Mon, 29 Aug 2022 17:36:38 +0200 (CEST) Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) (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 936F882A4B for ; Mon, 29 Aug 2022 17:36:36 +0200 (CEST) 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 ams.source.kernel.org (Postfix) with ESMTPS id 13031B80E1C; Mon, 29 Aug 2022 15:36:31 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id B3D20C433C1; Mon, 29 Aug 2022 15:36:29 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1661787389; bh=BtcQAIudP8LWbjSVRa8V5DFC8lZ5H+a+sr4YqzBS9Fk=; h=From:To:Cc:Subject:Date:From; b=k03yBPLMVNYRSmQpyGTOsjNsOkQLXaD8uP4zVXyk74X73kVG1Ymdd/FkR7pH2KauN O/fYovSro10BGUbvZTCYIhzxUQ22J5/C3GxCnTkRkZ7npwBZZfV6o8kcOji24xQnZ5 CMDJOnfa1GFHejM0i9xbxfOiqZQ7tRVXctHLFS/Jl3S2OGwz1M1Z46vOB0LpNro5zP kOZRkZ9yZ1N0zQJz4Uxujrgy4ahjoHmHta9ewRCFsJE8B5AJRA3wsmPc95ZjJJMbtZ 14nJjA4zLJ5tyM0pddP/yC5zQHJONbuBluXpnxinWD7qokBGG4Fg00/Mr2r1GaWS3J mnbGxC8vYf3pA== Received: by pali.im (Postfix) id 2D60A7DE; Mon, 29 Aug 2022 17:36:27 +0200 (CEST) From: =?UTF-8?q?Pali=20Roh=C3=A1r?= To: Heinrich Schuchardt , Bin Meng Cc: u-boot@lists.denx.de Subject: [PATCH] doc: cmd: loady: Document new configuration Date: Mon, 29 Aug 2022 17:36:23 +0200 Message-Id: <20220829153623.12890-1-pali@kernel.org> X-Mailer: git-send-email 2.20.1 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.6 at phobos.denx.de X-Virus-Status: Clean Signed-off-by: Pali Rohár --- doc/usage/cmd/loady.rst | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/doc/usage/cmd/loady.rst b/doc/usage/cmd/loady.rst index 2819cc72aef4..718af6e128d5 100644 --- a/doc/usage/cmd/loady.rst +++ b/doc/usage/cmd/loady.rst @@ -61,6 +61,13 @@ Configuration The command is only available if CONFIG_CMD_LOADB=y. +Initial timeout in seconds while waiting for transfer is configured by +config option CMD_LOADXY_TIMEOUT or by env variable $loadxy_timeout. +Setting it to 0 means infinite timeout. + +Transfer can be cancelled by pressing 3 times after two seconds +of inactivity on terminal. + Return value ------------ -- 2.20.1