diff options
author | Øyvind Harboe <oyvind.harboe@zylin.com> | 2010-12-19 11:24:51 +0100 |
---|---|---|
committer | Øyvind Harboe <oyvind.harboe@zylin.com> | 2010-12-22 17:44:22 +0100 |
commit | e03f45f6996ca9b646c228cad8431dea73054818 (patch) | |
tree | 19eab3d6686b89b168915c8412ae3835b67d3612 /src/target | |
parent | 37f4978f95a989d6bfcaf9aff354ee23a0855b92 (diff) | |
download | openocd_libswd-e03f45f6996ca9b646c228cad8431dea73054818.tar.gz openocd_libswd-e03f45f6996ca9b646c228cad8431dea73054818.tar.bz2 openocd_libswd-e03f45f6996ca9b646c228cad8431dea73054818.tar.xz openocd_libswd-e03f45f6996ca9b646c228cad8431dea73054818.zip |
config: add init_targets proc that is executed just before init
this allows configuration scripts to export a init_targets proc
rather than setting up the target directly.
This allows for new conventions in how to set up target vs. board
script and how to transfer default settings between board and
target scripts.
Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
Diffstat (limited to 'src/target')
-rw-r--r-- | src/target/startup.tcl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/target/startup.tcl b/src/target/startup.tcl index d68417e8..425e1ecf 100644 --- a/src/target/startup.tcl +++ b/src/target/startup.tcl @@ -151,3 +151,11 @@ proc armv4_5 params { echo "DEPRECATED! use 'arm $params' not 'armv4_5 $params'" arm $params } + +# Target/chain configuration scripts can either execute commands directly +# or define a procedure which is executed once all configuration +# scripts have completed. +# +# By default(classic) the config scripts will set up the target configuration +proc init_targets {} { +} |