Skip to content
Snippets Groups Projects
Commit 98b2c595 authored by Bob Mottram's avatar Bob Mottram
Browse files

Device tree blob creator

parent 03894def
No related branches found
No related tags found
No related merge requests found
......@@ -37,6 +37,12 @@ export TEXTDOMAINDIR="/usr/share/locale"
INSTALL_PACKAGES='apt-get -yq install'
convert_dts() {
dts="$1"
$INSTALL_PACKAGES device-tree-compiler
dtc -I dts -O dtb "${dts}.dts" > "${dts}.dtb"
}
enable_serial_console() {
# By default, spawn a console on the serial port
device="$1"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment