linux-tegra.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [flasher PATCH V2] Add a --post-flash-cmd command line argument
@ 2014-12-04 11:53 James Thomas
       [not found] ` <1417694039-13060-1-git-send-email-james.thomas-4yDnlxn2s6sWdaTGBSpHTA@public.gmane.org>
  0 siblings, 1 reply; 2+ messages in thread
From: James Thomas @ 2014-12-04 11:53 UTC (permalink / raw)
  To: linux-tegra-u79uwXL29TY76Z2rM5mHXA

This allows a user to specify the u-boot command to run after flashing
is complete (e.g 'ums 0 mmc 0'), defaults to 'reset' if not set

Signed-off-by: James Thomas <james.thomas-4yDnlxn2s6sWdaTGBSpHTA@public.gmane.org>
---
 tegra-uboot-flasher | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/tegra-uboot-flasher b/tegra-uboot-flasher
index b71f967..39a077a 100755
--- a/tegra-uboot-flasher
+++ b/tegra-uboot-flasher
@@ -218,7 +218,10 @@ def func_flash():
         bootcmd += 'echo >>> Flashing OK, rebooting... ; '
         # To update the bootloader, reset.
         # If wanting to run installer, set installer_args.configname in environment, 'run bootcmd'
-        bootcmd += 'reset'
+        if args.post_flash_cmd:
+            bootcmd += args.post_flash_cmd
+        else:
+            bootcmd += 'reset'
         print 'bootcmd:', bootcmd
         cmd = ['fdtput', '-p', '-t', 's', u_boot_dtb_runflash, '/config', 'bootcmd', bootcmd]
         run(workdir, cmd)
@@ -307,6 +310,8 @@ parser_flash.add_argument('--env', type=str, nargs=2, action='append',
     metavar=("VAR", "VALUE"),
     help='Set a U-Boot environment variable after flashing. This option ' +
         'may be given multiple times')
+parser_flash.add_argument('--post-flash-cmd', type=str,
+    help='The U-Boot command to run after flashing, defaults to \'reset\'')
 
 parser_exec = subparsers.add_parser('exec',
     help='Download and execute an unmodified bootloader binary, named ' +
-- 
1.9.3

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [flasher PATCH V2] Add a --post-flash-cmd command line argument
       [not found] ` <1417694039-13060-1-git-send-email-james.thomas-4yDnlxn2s6sWdaTGBSpHTA@public.gmane.org>
@ 2014-12-04 16:58   ` Stephen Warren
  0 siblings, 0 replies; 2+ messages in thread
From: Stephen Warren @ 2014-12-04 16:58 UTC (permalink / raw)
  To: James Thomas; +Cc: linux-tegra-u79uwXL29TY76Z2rM5mHXA

On 12/04/2014 04:53 AM, James Thomas wrote:
> This allows a user to specify the u-boot command to run after flashing
> is complete (e.g 'ums 0 mmc 0'), defaults to 'reset' if not set

I've applied this. Thanks.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2014-12-04 16:58 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-04 11:53 [flasher PATCH V2] Add a --post-flash-cmd command line argument James Thomas
     [not found] ` <1417694039-13060-1-git-send-email-james.thomas-4yDnlxn2s6sWdaTGBSpHTA@public.gmane.org>
2014-12-04 16:58   ` Stephen Warren

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).