Re: [U-Boot] PATCH: Add "time" command

2011-10-30 Thread Mike Frysinger
On Sunday 30 October 2011 11:55:15 Wolfgang Denk wrote: > Mike Frysinger wrote: > > > Add 'time ' which executes with and shows the > > > execution time in seconds. Requires get_timer(). > > > > NAK: we already have common/cmd_time.c and CONFIG_CMD_TIME > > But common/cmd_time.c is unportable

Re: [U-Boot] PATCH: Add "time" command

2011-10-30 Thread Wolfgang Denk
Dear Mike Frysinger, In message <201110301113.25446.vap...@gentoo.org> you wrote: > > > Add 'time ' which executes with and shows the > > execution time in seconds. Requires get_timer(). > > NAK: we already have common/cmd_time.c and CONFIG_CMD_TIME But common/cmd_time.c is unportable and on

Re: [U-Boot] PATCH: Add "time" command

2011-10-30 Thread Mike Frysinger
On Saturday 29 October 2011 10:57:48 Peter Barada wrote: > Add 'time ' which executes with and shows the > execution time in seconds. Requires get_timer(). NAK: we already have common/cmd_time.c and CONFIG_CMD_TIME -mike signature.asc Description: This is a digitally signed message part. ___

[U-Boot] PATCH: Add "time" command

2011-10-29 Thread Peter Barada
>From f5e82d7f87033ccdc1ede30c0d24e880852f7790 Mon Sep 17 00:00:00 2001 From: Peter Barada Date: Sat, 29 Oct 2011 10:44:32 -0400 Subject: [PATCH] Add 'time' command to show execution of sub command. Add 'time ' which executes with and shows the execution time in seconds. Requires get_timer().