tools

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
tools [2014/02/19 15:46] – [Compiling the kernel] admintools [2021/02/25 09:10] (current) – [Linker scripts] admin
Line 1: Line 1:
  
-[[http://vim.runpaint.org/toc/|vim recipes]]+ 
 + 
 +http://kaiwantech.wordpress.com/2013/12/28/linux-tools-for-the-serious-systems-programmer/
  
 ====== Linker scripts ====== ====== Linker scripts ======
Line 6: Line 8:
   * kernel:  arch/$(ARCH)/kernel/vmlinux.lds   * kernel:  arch/$(ARCH)/kernel/vmlinux.lds
   * userland, embedded in the toolchain, see strace ld --verbose   * userland, embedded in the toolchain, see strace ld --verbose
 +
  
 ====== Memory ====== ====== Memory ======
Line 11: Line 14:
 Duma Duma
  
 +https://github.com/pixelb/ps_mem/
 ====== Real-time ====== ====== Real-time ======
  
Line 17: Line 21:
 ====== Debugging ====== ====== Debugging ======
  
 +https://visualgdb.com/
 ===== OpenOCD ===== ===== OpenOCD =====
 http://elinux.org/BeagleBoardOpenOCD http://elinux.org/BeagleBoardOpenOCD
Line 60: Line 65:
 In Linux, ARM MPU counters profile information are normally accessed through the kernel via the OProfile tool or the Linux perf events framework. In Linux, ARM MPU counters profile information are normally accessed through the kernel via the OProfile tool or the Linux perf events framework.
  
 +===== latency plots =====
 +
 +https://www.osadl.org/Latency-plot-of-system-in-rack-b-slot.qa-latencyplot-rbs7.0.html
 ====== Static analysis ====== ====== Static analysis ======
  
 splint splint
  
 +Using clang: 
 +https://interrupt.memfault.com/blog/arm-cortexm-with-llvm-clang
 ====== Compiling the kernel ====== ====== Compiling the kernel ======
  
Line 73: Line 82:
   make mrproper      # remove all generated files   make mrproper      # remove all generated files
   make distclean     # also remove the editor backup and patch reject files   make distclean     # also remove the editor backup and patch reject files
 +   
 +  make oldcondif 
 +  make 
 +  make LOADADDR=0x80008000 uImage 
 +  make dtbs
 ====== Patches ====== ====== Patches ======
   * quilt, tools to manage a stack of patches   * quilt, tools to manage a stack of patches
   * git   * git
  • tools.1392824786.txt.gz
  • Last modified: 12 years ago
  • by admin