# v3.0 #################################################################### # Start of path customization # fill following lines replacing <...> with the proper absolute path # ####################### Source path ################################ # TF-A source path directory / # OP-TEE source path directory / # U-Boot source path set substitute-path / / # can be retrieve from u-boot elf with the following readelf command: readelf --string-dump=.debug_str | sed -n '/\/\|\.c/{s/.*\] //p}' # Linux kernel source path set substitute-path / / # can be retrieve from vmlinux with the following readelf command: readelf --string-dump=.debug_str vmlinux | sed -n '/\/\|\.c/{s/.*\] //p}' #################################################################### ####################### Symbol path ################################ define symload_bl32 symbol-file end document symload_bl32 format: symbol-file end define symadd_bl32 add-symbol-file -s ro $arg0 end document symadd_bl32 format: add-symbol-file -s ro $arg0 end define symload_optee symbol-file end document symload_optee format: symbol-file end define symadd_optee add-symbol-file $arg0 end document symadd_optee format: add-symbol-file $arg0 end define symload_bl2 symbol-file end document symload_bl2 format: symbol-file end define symload_uboot symbol-file end document symload_uboot format: symbol-file end define symadd_uboot set $offset = ((gd_t *)$r9)->relocaddr add-symbol-file $offset end document symadd_uboot format: symbol-file $offset offset is given by command: set $offset = ((gd_t *)$r9)->relocaddr end define symload_vmlinux symbol-file end document symload_vmlinux format: symbol-file end #################################################################### # # End of path customization ####################################################################