I've added the following small routine to the openocd.cfg:
proc run {file} {
puts "loading $file into location 0x00400000 and executing..."
soft_reset_halt
load_image $file 0x00400000
reg pc 0x00400000
resume
}
It isn't much but will save you some typing.
-Mar.