Would you mind creating a config script for OpenOCD head and submit for inclusion in the target config scripts library?
Some comments below: > # Reset the chip to get to a known state. > > monitor > monitor halt Add a reset init sequence and use "monitor reset init" > monitor mww 0xA0700000 0x00000001 All of these should go into the "reset init sequence". This cleans up the .gdbinit script and allows others to tap into the work you have put into reading the datasheets. > # Setup GDB FOR FASTER DOWNLOADS > set remote memory-write-packet-size 1024 > set remote memory-write-packet-size fixed This actually *slows down* transfer with the latest openocd version. The size of the packets are negotiated automatically so, just delete the two lines above and things will go faster. -- Øyvind Harboe http://www.zylin.com/zy1000.html ARM7 ARM9 ARM11 XScale Cortex JTAG debugger and flash programmer _______________________________________________ Openocd-development mailing list [email protected] https://lists.berlios.de/mailman/listinfo/openocd-development
