diff options
Diffstat (limited to 'demos/ATSAMA5D2/RT-SAMA5D2-XPLAINED-HTTPS-SEC/imgs.gdb')
-rw-r--r-- | demos/ATSAMA5D2/RT-SAMA5D2-XPLAINED-HTTPS-SEC/imgs.gdb | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/demos/ATSAMA5D2/RT-SAMA5D2-XPLAINED-HTTPS-SEC/imgs.gdb b/demos/ATSAMA5D2/RT-SAMA5D2-XPLAINED-HTTPS-SEC/imgs.gdb deleted file mode 100644 index 1209a322d..000000000 --- a/demos/ATSAMA5D2/RT-SAMA5D2-XPLAINED-HTTPS-SEC/imgs.gdb +++ /dev/null @@ -1,37 +0,0 @@ -# -# Switch to secure image symbols, without touching anything else -# -define si - # Clear the symbol table - symbol-file - # Load the symbol table of the secure image - symbol-file ../RT-SAMA5D2-XPLAINED-HTTPS-SEC/build/ch.elf -end - -# -# Switch to non secure image symbols, without touching anything else -# -define nsi - # Clear the symbol table - symbol-file - # Load the symbol table of the non secure image - symbol-file ../RT-SAMA5D2-XPLAINED-HTTPS-NSEC/build/ch.elf -end - - -# -# Load non secure image into ddr -# -define lns - # Load the non secure image - set $oldpc=$pc - load ../RT-SAMA5D2-XPLAINED-HTTPS-NSEC/build/ch.elf - set $pc=$oldpc -end - -# -# Set pc to the address pc+4 -# -define spc - set $pc=$pc+4 -end |