mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
dtc: add page (#13844)
* dtc: Add initial support Add an initial example for a common way to use dtc, the Device Tree Compiler which can create and decompile device trees for embedded Linux systems. * Fix Syntax error * More syntax fixes * More formatting * Yet more syntax fixes * Update pages/common/dtc.md Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> * Update pages/common/dtc.md Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> * Update pages/common/dtc.md Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> --------- Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
This commit is contained in:
parent
5e1a84fca7
commit
4e6d16b694
1 changed files with 8 additions and 0 deletions
8
pages/common/dtc.md
Normal file
8
pages/common/dtc.md
Normal file
|
@ -0,0 +1,8 @@
|
|||
# dtc
|
||||
|
||||
> The Device Tree Compiler, a tool for recompiling device trees between formats.
|
||||
> More information: <https://github.com/dgibson/dtc>.
|
||||
|
||||
- Decompile a `.dtb` file into a readable `.dts` file:
|
||||
|
||||
`dtc -I dtb -O dts -o {{path/to/output_file.dts}} {{path/to/input_file.dtb}}`
|
Loading…
Add table
Reference in a new issue