From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mike Frysinger Date: Mon, 15 Jun 2009 13:37:19 -0400 Subject: [U-Boot] [PATCH 1/6] Blackfin: bump up default JTAG console timeout In-Reply-To: <1245087445-14960-1-git-send-email-vapier@gentoo.org> References: <1245087445-14960-1-git-send-email-vapier@gentoo.org> Message-ID: <1245087445-14960-2-git-send-email-vapier@gentoo.org> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de From: Vivi Li The debug tools that interface with the other side of the JTAG console got much slower when generalizing things, so bump up the default timeout value on the U-Boot side to cope. Hopefully at some point we can improve the debug tools to speed things back up. Signed-off-by: Vivi Li Signed-off-by: Mike Frysinger --- cpu/blackfin/jtag-console.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/cpu/blackfin/jtag-console.c b/cpu/blackfin/jtag-console.c index d58582f..c995d96 100644 --- a/cpu/blackfin/jtag-console.c +++ b/cpu/blackfin/jtag-console.c @@ -11,7 +11,7 @@ #include #ifndef CONFIG_JTAG_CONSOLE_TIMEOUT -# define CONFIG_JTAG_CONSOLE_TIMEOUT 100 +# define CONFIG_JTAG_CONSOLE_TIMEOUT 500 #endif /* The Blackfin tends to be much much faster than the JTAG hardware. */ -- 1.6.3.1