]> git.sur5r.net Git - openocd/commitdiff
allow 'flash_banks' command to give GDB output
authorZachary T Welch <zw@superlucidity.net>
Mon, 7 Dec 2009 04:19:18 +0000 (20:19 -0800)
committerZachary T Welch <zw@superlucidity.net>
Mon, 7 Dec 2009 04:19:18 +0000 (20:19 -0800)
The 'flash banks' command produces a list that needs to be formatted
properly for GDB's 'mem info' to work properly.  The flash_banks TCL
wrapper provided this formatting, but wrappers no longer work for
second-level commands as they did in the past.  With this patch,
the 'flash_banks' command can be used with the new command syntax
and display the required information.

src/flash/startup.tcl

index fcebbe01a1abb1e7c6b9843a556d82e0b0a03abc..2c335d9f7b1e0a73dc915bb86873244f841c5448 100644 (file)
@@ -5,7 +5,7 @@
 proc flash_banks {} {
        set i 0
        set result ""
-       foreach {a} [ocd_flash_banks] {
+       foreach {a} [ocd_flash banks] {
                if {$i > 0} {
                        set result "$result\n"
                }