From e7b2958229c7e0d7e98e130764aa50d1ca9017d3 Mon Sep 17 00:00:00 2001 From: Antonio Borneo Date: Mon, 8 Nov 2010 17:23:49 +0800 Subject: TCL scripts: replace "puts" with "echo" Signed-off-by: Antonio Borneo --- tcl/board/at91eb40a.cfg | 2 +- tcl/board/dm355evm.cfg | 2 +- tcl/board/dm6446evm.cfg | 2 +- tcl/board/ethernut3.cfg | 10 +++++----- tcl/board/lubbock.cfg | 2 +- tcl/board/olimex_sam9_l9260.cfg | 8 ++++---- tcl/board/telo.cfg | 12 ++++++------ tcl/board/zy1000.cfg | 8 ++++---- 8 files changed, 23 insertions(+), 23 deletions(-) (limited to 'tcl/board') diff --git a/tcl/board/at91eb40a.cfg b/tcl/board/at91eb40a.cfg index 14f21a1a..dc5aacbf 100644 --- a/tcl/board/at91eb40a.cfg +++ b/tcl/board/at91eb40a.cfg @@ -53,7 +53,7 @@ flash bank $_FLASHNAME ecosflash 0x01000000 0x200000 2 2 $_TARGETNAME ecos/at91e $_TARGETNAME configure -work-area-phys 0x00030000 -work-area-size 0x10000 -work-area-backup 0 $_TARGETNAME configure -event reset-init { - puts "Running reset init script for AT91EB40A" + echo "Running reset init script for AT91EB40A" # Reset script for AT91EB40a reg cpsr 0x000000D3 mww 0xFFE00020 0x1 diff --git a/tcl/board/dm355evm.cfg b/tcl/board/dm355evm.cfg index 02c4c866..0c971e9a 100644 --- a/tcl/board/dm355evm.cfg +++ b/tcl/board/dm355evm.cfg @@ -18,7 +18,7 @@ $_TARGETNAME configure -event reset-init { dm355evm_init } proc dm355evm_init {} { global dm355 - puts "Initialize DM355 EVM board" + echo "Initialize DM355 EVM board" # CLKIN = 24 MHz ... can't talk quickly to ARM yet jtag_rclk 1500 diff --git a/tcl/board/dm6446evm.cfg b/tcl/board/dm6446evm.cfg index dcd1c4ef..0d2f6a4d 100644 --- a/tcl/board/dm6446evm.cfg +++ b/tcl/board/dm6446evm.cfg @@ -59,7 +59,7 @@ $_TARGETNAME configure -event reset-init { dm6446evm_init } # proc dm6446evm_init {} { - puts "Initialize DM6446 EVM board" + echo "Initialize DM6446 EVM board" # FIXME initialize everything: # - PLL1 diff --git a/tcl/board/ethernut3.cfg b/tcl/board/ethernut3.cfg index 34e9b72d..ad455273 100644 --- a/tcl/board/ethernut3.cfg +++ b/tcl/board/ethernut3.cfg @@ -77,10 +77,10 @@ proc board_remap {{VERBOSE 0}} { mww 0xffe00020 0x00000001 if {$VERBOSE != 0} { - puts "0x00000000 RAM" - puts "0x10000000 Flash" - puts "0x20000000 Ethernet" - puts "0x21000000 CPLD" - puts "0x22000000 Expansion" + echo "0x00000000 RAM" + echo "0x10000000 Flash" + echo "0x20000000 Ethernet" + echo "0x21000000 CPLD" + echo "0x22000000 Expansion" } } diff --git a/tcl/board/lubbock.cfg b/tcl/board/lubbock.cfg index b58ad5ad..298954cc 100644 --- a/tcl/board/lubbock.cfg +++ b/tcl/board/lubbock.cfg @@ -38,7 +38,7 @@ proc hexled {u32} { proc lubbock_init {target} { - puts "Initialize PXA255 Lubbock board" + echo "Initialize PXA255 Lubbock board" # (1) pinmux diff --git a/tcl/board/olimex_sam9_l9260.cfg b/tcl/board/olimex_sam9_l9260.cfg index 7c4b2ccb..5c16ed2f 100644 --- a/tcl/board/olimex_sam9_l9260.cfg +++ b/tcl/board/olimex_sam9_l9260.cfg @@ -35,7 +35,7 @@ $_TARGETNAME configure -event reset-init { ## # Clock configuration for 99.328 MHz main clock. ## - puts "Setting up clock" + echo "Setting up clock" mww 0xfffffc20 0x00004001 # CKGR_MOR : enable main oscillator, 512 slow clock startup sleep 20 # wait 20 ms (need 15.6 ms for startup) mww 0xfffffc30 0x00000001 # PMC_MCKR : switch to main oscillator (18.432 MHz) @@ -54,7 +54,7 @@ $_TARGETNAME configure -event reset-init { ## # SDRAM configuration for 2 x Samsung K4S561632J-UC75, 4M x 16Bit x 4 Banks. ## - puts "Configuring SDRAM" + echo "Configuring SDRAM" mww 0xfffff870 0xffff0000 # PIOC_ASR : select peripheral function for D15..D31 mww 0xfffff804 0xffff0000 # PIOC_PDR : disable PIO function for D15..D31 @@ -92,7 +92,7 @@ $_TARGETNAME configure -event reset-init { ## # NAND Flash Configuration for 1 x Samsung K9F4G08U0M, 512M x 8Bit. ## - puts "Configuring NAND flash" + echo "Configuring NAND flash" mww 0xfffffc10 0x00000010 ;# PMC_PCER : enable PIOC clock mww 0xfffff800 0x00006000 ;# PIOC_PER : enable PIO function for 13(RDY/~BSY) and 14(~CS) mww 0xfffff810 0x00004000 ;# PIOC_OER : enable output on 14 @@ -116,7 +116,7 @@ $_TARGETNAME configure -event reset-init { ## # Dataflash configuration for 1 x Atmel AT45DB161D, 16Mbit ## - puts "Setting up dataflash" + echo "Setting up dataflash" mww 0xfffff404 0x00000807 ;# PIOA_PDR : disable PIO function for 0(SPI0_MISO), 1(SPI0_MOSI), # 2(SPI0_SPCK), and 11(SPI0_NPCS1) mww 0xfffff470 0x00000007 ;# PIOA_ASR : select peripheral A function for 0, 1, and 2 diff --git a/tcl/board/telo.cfg b/tcl/board/telo.cfg index 1c0ad762..119373c6 100644 --- a/tcl/board/telo.cfg +++ b/tcl/board/telo.cfg @@ -31,24 +31,24 @@ $_TARGETNAME configure -event reset-init { setupTelo #turn up the JTAG speed adapter_khz 3000 - puts "JTAG speek now 3MHz" - puts "type helpC100 to get help on C100" + echo "JTAG speek now 3MHz" + echo "type helpC100 to get help on C100" } $_TARGETNAME configure -event reset-deassert-post { # Force target into ARM state. # soft_reset_halt # not implemented on ARM11 - puts "Detected SRSRT asserted on C100.CPU" + echo "Detected SRSRT asserted on C100.CPU" } $_TARGETNAME configure -event reset-assert-post { - puts "Assering reset" + echo "Assering reset" #sleep 10 } -proc power_restore {} { puts "Sensed power restore. No action." } -proc srst_deasserted {} { puts "Sensed nSRST deasserted. No action." } +proc power_restore {} { echo "Sensed power restore. No action." } +proc srst_deasserted {} { echo "Sensed nSRST deasserted. No action." } # boots from NOR on CS0: 8 MBytes CFI flash, 16-bit bus diff --git a/tcl/board/zy1000.cfg b/tcl/board/zy1000.cfg index d2561e9f..63334eeb 100644 --- a/tcl/board/zy1000.cfg +++ b/tcl/board/zy1000.cfg @@ -85,11 +85,11 @@ proc production_info {} { # Progress messages are output via puts proc production {firmwarefile serialnumber} { if {[string length $serialnumber]!=12} { - puts "Invalid serial number" + echo "Invalid serial number" return } - puts "Power cycling target" + echo "Power cycling target" power off sleep 3000 power on @@ -99,10 +99,10 @@ proc production {firmwarefile serialnumber} { verify_image $firmwarefile 0x1000000 bin # Big endian... weee!!!! - puts "Setting MAC number to $serialnumber" + echo "Setting MAC number to $serialnumber" flash fillw [expr 0x1030000-0x8] "0x[string range $serialnumber 2 3][string range $serialnumber 0 1]0000" 1 flash fillw [expr 0x1030000-0x4] "0x[string range $serialnumber 10 11][string range $serialnumber 8 9][string range $serialnumber 6 7][string range $serialnumber 4 5]" 1 - puts "Production successful" + echo "Production successful" } -- cgit v1.2.3