Browse Source

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>
tags/v0.4.0-rc1
Øyvind Harboe 14 years ago
parent
commit
1f357869c1
2 changed files with 8 additions and 8 deletions
  1. +4
    -4
      tcl/board/telo.cfg
  2. +4
    -4
      tcl/target/telo.cfg

+ 4
- 4
tcl/board/telo.cfg View File

@@ -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


+ 4
- 4
tcl/target/telo.cfg View File

@@ -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


Loading…
Cancel
Save