nuttx/.gitignore
anjiahao adc5c8b5ac Debug:support python script auto debug nuttx kernel
This patch add an example and pyhton base modules:
1.add memdump.py is an example to analyze memory
usage by python script.
2.add The most basic data structure analysis, like list, etc.

future ideas:
Maybe we can add modules related to "sched, drivers, arch, fs.." to
automatically analyze scripts to debug some problems

References:
linux kernel (https://github.com/torvalds/linux/tree/master/scripts/gdb)
The official manual of gdb (https://sourceware.org/gdb/onlinedocs/gdb/Python-API.html)

Change-Id: Ib9025a0a141cb89f3813526f7c55dcb28de31ed9
Signed-off-by: anjiahao <anjiahao@xiaomi.com>
2023-06-25 18:17:30 +08:00

63 lines
587 B
Plaintext

*.a
*.adb
*.asm
*.bin
*.d
!*.d/
*.dSYM
*.elf
*.exe
*.gcno
*.gcda
*.hex
*.i
*.ihx
*.lib
*.lod
*.lst
*.map
*.o
*.obj
*.profraw
*.rel
*.src
*.srec
*.swp
*.sym
*.wsp
*.ddc
*.dds
*.su
*~
.depend
/.config
/.config.*
/.config-*
/.config\ *
/.cproject
/.gdbinit
/.project
/.version
/_SAVED_APPS_config
/cscope.*
/defconfig
/Make.defs
/nuttx
/nuttx-*
/nuttx.*
/staging
/tags
/TAGS
core
Make*.dep
uImage
/external
# $(TOPDIR)/Makefile.[unix|win]::$(CONTEXTDIRS_DEPS)
.context
.context\ *
# $(TOPDIR)/Makefile.[unix|win]::$(DIRLINKS_EXTERNAL_DIRS)
.dirlinks
.vscode
.DS_Store
tools/gdb/__pycache__