From: Øyvind H. <go...@us...> - 2009-11-10 13:12:25
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Main OpenOCD repository". The branch, master has been updated via 1f357869c19cccdb3259eae10c1124af5c9510ff (commit) from 2a4d3c03cd9f6ec1d761a6fb8795d6aac95e9fe3 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 1f357869c19cccdb3259eae10c1124af5c9510ff Author: Ãyvind Harboe <oyv...@zy...> Date: Tue Nov 10 13:09:15 2009 +0100 telo.cfg: fix search paths Add the missing "target/" prefix for scripts in the target folder. Signed-off-by: Ãyvind Harboe <oyv...@zy...> diff --git a/tcl/board/telo.cfg b/tcl/board/telo.cfg index 7d638d7..c4e5d67 100644 --- a/tcl/board/telo.cfg +++ b/tcl/board/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 diff --git a/tcl/target/telo.cfg b/tcl/target/telo.cfg index 7d638d7..c4e5d67 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 ----------------------------------------------------------------------- Summary of changes: tcl/board/telo.cfg | 8 ++++---- tcl/target/telo.cfg | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) hooks/post-receive -- Main OpenOCD repository |