diff options
author | Øyvind Harboe <oyvind.harboe@zylin.com> | 2009-11-10 13:09:15 +0100 |
---|---|---|
committer | Øyvind Harboe <oyvind.harboe@zylin.com> | 2009-11-10 13:11:17 +0100 |
commit | 1f357869c19cccdb3259eae10c1124af5c9510ff (patch) | |
tree | 65bd7d031b82efd1400e48f19af6c0e25559edd3 /tcl/target | |
parent | 2a4d3c03cd9f6ec1d761a6fb8795d6aac95e9fe3 (diff) | |
download | openocd+libswd-1f357869c19cccdb3259eae10c1124af5c9510ff.tar.gz openocd+libswd-1f357869c19cccdb3259eae10c1124af5c9510ff.tar.bz2 openocd+libswd-1f357869c19cccdb3259eae10c1124af5c9510ff.tar.xz openocd+libswd-1f357869c19cccdb3259eae10c1124af5c9510ff.zip |
telo.cfg: fix search paths
Add the missing "target/" prefix for scripts in the
target folder.
Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
Diffstat (limited to 'tcl/target')
-rw-r--r-- | tcl/target/telo.cfg | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tcl/target/telo.cfg b/tcl/target/telo.cfg index 7d638d7e..c4e5d67f 100644 --- a/tcl/target/telo.cfg +++ b/tcl/target/telo.cfg @@ -1,10 +1,10 @@ -source [find c100.cfg] +source [find target/c100.cfg] # basic register defintion for C100 -source [find c100regs.tcl] +source [find target/c100regs.tcl] # board-config info -source [find c100config.tcl] +source [find target/c100config.tcl] # C100 helper functions -source [find c100helper.tcl] +source [find target/c100helper.tcl] # Telo board & C100 support trst and srst |