From: Øyvind H. <go...@us...> - 2010-04-15 19:12:40
|
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 d31bbc33fab65a27edfd142202b90011bd471406 (commit) from decad308655edf61094d5d552ab93f9fb2a6d535 (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 d31bbc33fab65a27edfd142202b90011bd471406 Author: Antonio Borneo <bor...@gm...> Date: Thu Apr 15 17:11:01 2010 +0800 TCL SCRIPTS: fix command name Some tcl script has underline between the words "flash bank" resulting in 'invalid command name "flash_bank"'. Signed-off-by: Antonio Borneo <bor...@gm...> diff --git a/tcl/board/at91rm9200-dk.cfg b/tcl/board/at91rm9200-dk.cfg index af6e3df..402ed05 100644 --- a/tcl/board/at91rm9200-dk.cfg +++ b/tcl/board/at91rm9200-dk.cfg @@ -10,7 +10,7 @@ $_TARGETNAME configure -event reset-init { at91rm9200_dk_init } #flash bank <name> <driver> <base> <size> <chip_width> <bus_width> <target> set _FLASHNAME $_CHIPNAME.flash -flash_bank $_FLASHNAME cfi 0x10000000 0x00200000 2 2 $_TARGETNAME +flash bank $_FLASHNAME cfi 0x10000000 0x00200000 2 2 $_TARGETNAME proc at91rm9200_dk_init { } { diff --git a/tcl/board/imx27ads.cfg b/tcl/board/imx27ads.cfg index 927647a..e705b1e 100644 --- a/tcl/board/imx27ads.cfg +++ b/tcl/board/imx27ads.cfg @@ -6,7 +6,7 @@ $_TARGETNAME configure -event reset-init { imx27ads_init } # The IMX27 ADS board has a NOR flash on CS0 set _FLASHNAME $_CHIPNAME.flash -flash_bank $_FLASHNAME cfi 0xc0000000 0x00200000 2 2 $_TARGETNAME +flash bank $_FLASHNAME cfi 0xc0000000 0x00200000 2 2 $_TARGETNAME proc imx27ads_init { } { # This setup puts RAM at 0xA0000000 diff --git a/tcl/board/logicpd_imx27.cfg b/tcl/board/logicpd_imx27.cfg index 02afc77..da0b462 100644 --- a/tcl/board/logicpd_imx27.cfg +++ b/tcl/board/logicpd_imx27.cfg @@ -3,7 +3,7 @@ source [find target/imx27.cfg] # The Logic PD board has a NOR flash on CS0 set _FLASHNAME $_CHIPNAME.flash -flash_bank $_FLASHNAME cfi 0xc0000000 0x00200000 2 2 $_TARGETNAME +flash bank $_FLASHNAME cfi 0xc0000000 0x00200000 2 2 $_TARGETNAME # # FIX ME, Add support to ----------------------------------------------------------------------- Summary of changes: tcl/board/at91rm9200-dk.cfg | 2 +- tcl/board/imx27ads.cfg | 2 +- tcl/board/logicpd_imx27.cfg | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) hooks/post-receive -- Main OpenOCD repository |