Linux Kernel
  • Cover
  • Introduction
    • Tools
    • Device Tree
  • Compilation
  • Build System
  • Kernel Trees
  • Samples
  • Debug
    • Printk
    • GDB
  • Kernel Message
  • Toolchain
Powered by GitBook
On this page
  1. Introduction

Device Tree

PreviousToolsNextCompilation

Last updated 7 years ago

A devicetree is a data structure for describing hardware

user@workstation:~/linux$ find -name *.dts
./arch/microblaze/boot/dts/system.dts
...
./arch/x86/platform/ce4100/falconfalls.dts
...
./arch/arm/boot/dts/armada-xp-matrix.dts
...
./arch/arm/boot/dts/omap4-sdp.dts
...
./drivers/of/unittest-data/testcases.dts
user@workstation:~/linux$ make  ARCH=x86
Homepage