mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-02 09:42:58 +00:00
14 lines
370 B
Plaintext
14 lines
370 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# 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}}`
|