Skip to content

Instantly share code, notes, and snippets.

@ciniml
Created October 21, 2020 11:14
Show Gist options
  • Save ciniml/df6865e820bded5ce42023ec4c52219c to your computer and use it in GitHub Desktop.
Save ciniml/df6865e820bded5ce42023ec4c52219c to your computer and use it in GitHub Desktop.
Device Tree Overlay Sample
/dts-v1/;
/ {
fragment@0 {
target-path = "/fpga-full";
__overlay__ {
firmware-name = "fpga.bin";
};
};
};
#!/bin/bash
if [ ! -e /config/device-tree/overlays/fpga ]; then mkdir /config/device-tree/overlays/fpga; fi
cp fpga.bin /lib/firmware
cp overlay.dtb /config/device-tree/overlays/fpga/dtbo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment