Skip to content

Instantly share code, notes, and snippets.

@pingswept
Created July 19, 2012 17:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pingswept/3145453 to your computer and use it in GitHub Desktop.
Save pingswept/3145453 to your computer and use it in GitHub Desktop.
TCL script for burning Rascal serial flash
set at91bootstrap "resized-boot-at91sam9g20-ek-serialflash2sdram.bin"
set bin ".bin"
set ubootprefix "u-boot-rm00"
#set uboot "$ubootprefix[lindex $argv 0]$bin"
set tf 35; # stupid hack because argv only works from command line
set uboot "$ubootprefix$tf$bin"
set kernel "linux-2.6.36-rascal-2011-11-02.bin"
set sourcedir "C:/Users/brandon/Desktop/My Dropbox/Rascal/Software/useful-binaries/"
puts "### PATHS FOR NEXT BURN ###"
puts "$sourcedir$at91bootstrap"
puts "$sourcedir$uboot"
puts "$sourcedir$kernel"
puts "### BURNING ###"
SERIALFLASH::Init 0
send_file {SerialFlash AT25/AT26} "$sourcedir$at91bootstrap" 0x0 0
send_file {SerialFlash AT25/AT26} "$sourcedir$uboot" 0x10000 0
send_file {SerialFlash AT25/AT26} "$sourcedir$kernel" 0x100000 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment