cfg: add basic support of Freescale i.MX6 series targets
[openocd.git] / src / helper / startup.tcl
bloba7c0d5844f8523031e0c612d70c9c59ec990364d
1 # Defines basic Tcl procs that must exist for OpenOCD scripts to work.
3 # Embedded into OpenOCD executable
7 # We need to explicitly redirect this to the OpenOCD command
8 # as Tcl defines the exit proc
9 proc exit {} {
10 ocd_throw exit
13 # All commands are registered with an 'ocd_' prefix, while the "real"
14 # command is a wrapper that calls this function. Its primary purpose is
15 # to discard 'handler' command output,
16 proc ocd_bouncer {name args} {
17 set cmd [format "ocd_%s" $name]
18 set type [eval ocd_command type $cmd $args]
19 if {$type == "native"} {
20 return [eval $cmd $args]
21 } else {if {$type == "simple"} {
22 if {[catch {eval $cmd $args}] == 0} {
23 return ""
24 } else {
25 # 'classic' commands output error message as part of progress output
26 set errmsg ""
28 } else {if {$type == "group"} {
29 catch {eval ocd_usage $name $args}
30 set errmsg [format "%s: command requires more arguments" \
31 [concat $name " " $args]]
32 } else {
33 set errmsg [format "Unknown command type: %s" $type]
34 }}}
35 return -code error $errmsg
38 # Try flipping / and \ to find file if the filename does not
39 # match the precise spelling
40 proc find {filename} {
41 if {[catch {ocd_find $filename} t]==0} {
42 return $t
44 if {[catch {ocd_find [string map {\ /} $filename} t]==0} {
45 return $t
47 if {[catch {ocd_find [string map {/ \\} $filename} t]==0} {
48 return $t
50 # make sure error message matches original input string
51 return -code error "Can't find $filename"
53 add_usage_text find "<file>"
54 add_help_text find "print full path to file according to OpenOCD search rules"
56 # Find and run a script
57 proc script {filename} {
58 uplevel #0 [list source [find $filename]]
60 add_help_text script "filename of OpenOCD script (tcl) to run"
61 add_usage_text script "<file>"
63 #########