From: Spencer O. <nt...@us...> - 2009-12-17 12:42:42
|
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 3616b93eee128b0c12fa0d453fbe6ced998e482f (commit) from 960ad2f77631988bc8aef86255ea6f4007b34153 (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 3616b93eee128b0c12fa0d453fbe6ced998e482f Author: Spencer Oliver <nt...@us...> Date: Thu Dec 17 10:53:09 2009 +0000 target.cfg: update to use new flash configuration syntax Signed-off-by: Spencer Oliver <nt...@us...> diff --git a/tcl/target/aduc702x.cfg b/tcl/target/aduc702x.cfg index 58cc9b9..50b2a0d 100644 --- a/tcl/target/aduc702x.cfg +++ b/tcl/target/aduc702x.cfg @@ -36,7 +36,7 @@ $_TARGETNAME configure -work-area-phys 0x10000 -work-area-size 0x2000 ## flash configuration # only target number is needed set _FLASHNAME $_CHIPNAME.flash -flash bank $_FLASHNAME aduc702x 0 0 0 0 0 +flash bank $_FLASHNAME aduc702x 0 0 0 0 $_TARGETNAME ## If you use the watchdog, the following code makes sure that the board ## doesn't reboot when halted via JTAG. Yes, on the older generation diff --git a/tcl/target/faux.cfg b/tcl/target/faux.cfg index 6fe0cd7..b2bdb2b 100644 --- a/tcl/target/faux.cfg +++ b/tcl/target/faux.cfg @@ -27,4 +27,4 @@ target create $_TARGETNAME arm7tdmi -endian $_ENDIAN -chain-position $_TARGETNAM #dummy flash driver set _FLASHNAME $_CHIPNAME.flash -flash bank $_FLASHNAME faux 0x01000000 0x200000 2 2 0 +flash bank $_FLASHNAME faux 0x01000000 0x200000 2 2 $_TARGETNAME diff --git a/tcl/target/lpc2900.cfg b/tcl/target/lpc2900.cfg index 769d39d..b258086 100644 --- a/tcl/target/lpc2900.cfg +++ b/tcl/target/lpc2900.cfg @@ -63,4 +63,4 @@ arm7_9 dcc_downloads enable # Flash: flash bank lpc2900 0 0 0 0 <target#> <flash clock (CLK_SYS_FMC) in kHz> # Flash base address, total flash size, and number of sectors are all configured automatically. set _FLASHNAME $_CHIPNAME.flash -flash bank $_FLASHNAME lpc2900 0 0 0 0 $_TARGETNAME $FLASH_CLOCK +flash bank $_FLASHNAME lpc2900 0 0 0 0 $_TARGETNAME $FLASH_CLOCK diff --git a/tcl/target/mega128.cfg b/tcl/target/mega128.cfg index 2bc2294..2cf31d6 100644 --- a/tcl/target/mega128.cfg +++ b/tcl/target/mega128.cfg @@ -23,7 +23,7 @@ target create $_TARGETNAME avr -endian $_ENDIAN -chain-position $_TARGETNAME #$_TARGETNAME configure -work-area-phys 0x20000000 -work-area-size 16384 -work-area-backup 0 set _FLASHNAME $_CHIPNAME.flash -flash bank $_FLASHNAME avr 0 0 0 0 0 +flash bank $_FLASHNAME avr 0 0 0 0 $_TARGETNAME #to use it, script will be like: #init diff --git a/tcl/target/pic32mx.cfg b/tcl/target/pic32mx.cfg index a346c47..e0ebdc2 100644 --- a/tcl/target/pic32mx.cfg +++ b/tcl/target/pic32mx.cfg @@ -34,9 +34,9 @@ target create $_TARGETNAME mips_m4k -endian $_ENDIAN -chain-position $_TARGETNAM $_TARGETNAME configure -work-area-phys 0xa0000000 -work-area-size 16384 -work-area-backup 0 set _FLASHNAME $_CHIPNAME.flash -flash bank $_FLASHNAME pic32mx 0xbd000000 0 0 0 0 +flash bank $_FLASHNAME pic32mx 0xbd000000 0 0 0 $_TARGETNAME set _FLASHNAME $_CHIPNAME.flash -flash bank $_FLASHNAME pic32mx 0xbfc00000 0 0 0 0 +flash bank $_FLASHNAME pic32mx 0xbfc00000 0 0 0 $_TARGETNAME # For more information about the configuration files, take a look at: # openocd.texi diff --git a/tcl/target/sam7se512.cfg b/tcl/target/sam7se512.cfg index d255067..c48afef 100644 --- a/tcl/target/sam7se512.cfg +++ b/tcl/target/sam7se512.cfg @@ -36,5 +36,5 @@ $_TARGETNAME configure -work-area-phys 0x00200000 -work-area-size 0x4000 -work-a #flash bank <driver> <base_addr> <size> <chip_width> <bus_width> <target_number> [<target_name> <banks> <sectors_per_bank> <pages_per_sector> <page_size> <num_nvmbits> <ext_freq_khz>] set _FLASHNAME $_CHIPNAME.flash -flash bank $_FLASHNAME at91sam7 0 0 0 0 0 0 0 0 0 0 0 0 18432 +flash bank $_FLASHNAME at91sam7 0 0 0 0 $_TARGETNAME 0 0 0 0 0 0 0 18432 diff --git a/tcl/target/sam7x256.cfg b/tcl/target/sam7x256.cfg index 5bab642..19145e5 100644 --- a/tcl/target/sam7x256.cfg +++ b/tcl/target/sam7x256.cfg @@ -47,7 +47,7 @@ $_TARGETNAME configure -work-area-phys 0x00200000 -work-area-size 0x4000 -work-a #flash bank <driver> <base_addr> <size> <chip_width> <bus_width> <target_number> [<target_name> <banks> <sectors_per_bank> <pages_per_sector> <page_size> <num_nvmbits> <ext_freq_khz>] set _FLASHNAME $_CHIPNAME.flash -flash bank $_FLASHNAME at91sam7 0 0 0 0 0 0 0 0 0 0 0 0 18432 +flash bank $_FLASHNAME at91sam7 0 0 0 0 $_TARGETNAME 0 0 0 0 0 0 0 18432 # For more information about the configuration files, take a look at: # openocd.texi diff --git a/tcl/target/str710.cfg b/tcl/target/str710.cfg index 395a26c..9da69ac 100644 --- a/tcl/target/str710.cfg +++ b/tcl/target/str710.cfg @@ -40,9 +40,9 @@ $_TARGETNAME configure -work-area-phys 0x2000C000 -work-area-size 0x4000 -work-a #flash bank str7x <base> <size> 0 0 <target#> <variant> set _FLASHNAME $_CHIPNAME.flash -flash bank $_FLASHNAME str7x 0x40000000 0x00040000 0 0 0 STR71x +flash bank $_FLASHNAME str7x 0x40000000 0x00040000 0 0 $_TARGETNAME STR71x set _FLASHNAME $_CHIPNAME.flash -flash bank $_FLASHNAME str7x 0x400C0000 0x00004000 0 0 0 STR71x +flash bank $_FLASHNAME str7x 0x400C0000 0x00004000 0 0 $_TARGETNAME STR71x # For more information about the configuration files, take a look at: # openocd.texi diff --git a/tcl/target/str730.cfg b/tcl/target/str730.cfg index 6432d15..381fa5f 100644 --- a/tcl/target/str730.cfg +++ b/tcl/target/str730.cfg @@ -43,5 +43,5 @@ $_TARGETNAME configure -work-area-phys 0x40000000 -work-area-size 0x4000 -work-a #flash bank <driver> <base> <size> <chip_width> <bus_width> set _FLASHNAME $_CHIPNAME.flash -flash bank $_FLASHNAME str7x 0x20000000 0x00040000 0 0 0 STR3x +flash bank $_FLASHNAME str7x 0x20000000 0x00040000 0 0 $_TARGETNAME STR3x diff --git a/tcl/target/str750.cfg b/tcl/target/str750.cfg index 496c4e3..5df968b 100644 --- a/tcl/target/str750.cfg +++ b/tcl/target/str750.cfg @@ -46,7 +46,7 @@ $_TARGETNAME configure -work-area-phys 0x40000000 -work-area-size 0x4000 -work-a #flash bank <driver> <base> <size> <chip_width> <bus_width> set _FLASHNAME $_CHIPNAME.flash -flash bank $_FLASHNAME str7x 0x20000000 0x00040000 0 0 0 STR75x +flash bank $_FLASHNAME str7x 0x20000000 0x00040000 0 0 $_TARGETNAME STR75x set _FLASHNAME $_CHIPNAME.flash -flash bank $_FLASHNAME str7x 0x200C0000 0x00004000 0 0 0 STR75x +flash bank $_FLASHNAME str7x 0x200C0000 0x00004000 0 0 $_TARGETNAME STR75x diff --git a/tcl/target/str912.cfg b/tcl/target/str912.cfg index d844584..2defe9f 100644 --- a/tcl/target/str912.cfg +++ b/tcl/target/str912.cfg @@ -64,9 +64,9 @@ $_TARGETNAME configure -work-area-phys 0x50000000 -work-area-size 16384 -work-ar #flash bank str9x <base> <size> 0 0 <target#> <variant> set _FLASHNAME $_CHIPNAME.flash -flash bank $_FLASHNAME str9x 0x00000000 0x00080000 0 0 0 +flash bank $_FLASHNAME str9x 0x00000000 0x00080000 0 0 $_TARGETNAME set _FLASHNAME $_CHIPNAME.flash -flash bank $_FLASHNAME str9x 0x00080000 0x00008000 0 0 0 +flash bank $_FLASHNAME str9x 0x00080000 0x00008000 0 0 $_TARGETNAME # For more information about the configuration files, take a look at: # openocd.texi ----------------------------------------------------------------------- Summary of changes: tcl/target/aduc702x.cfg | 2 +- tcl/target/faux.cfg | 2 +- tcl/target/lpc2900.cfg | 2 +- tcl/target/mega128.cfg | 2 +- tcl/target/pic32mx.cfg | 4 ++-- tcl/target/sam7se512.cfg | 2 +- tcl/target/sam7x256.cfg | 2 +- tcl/target/str710.cfg | 4 ++-- tcl/target/str730.cfg | 2 +- tcl/target/str750.cfg | 4 ++-- tcl/target/str912.cfg | 4 ++-- 11 files changed, 15 insertions(+), 15 deletions(-) hooks/post-receive -- Main OpenOCD repository |