Hi @drewcovi,
I was curious about the device type you use(RPi, Beaglebone etc.).
Assuming you are using a RPi the steps to include the dtbo in your image would be the following:
-
Download an RPi image from the dashboard
-
Extract the image archive
-
Create a loop device from your image
sudo losetup -fP balena-name-image.img -
Mount the boot partition of your image
mkdir tmp-mount
sudo mount /dev/loop0p1 tmp-mount -
Copy the dtbo in the boot partition
cp hyperpixel4.dtbo tmp-mount/overlays -
Edit the
config.txtfile from thetmp-mount/folder as you wish -
Unmount the boot partition
sudo umount tmp-mount -
Remove the loop device partitions
sudo losetup -D
Now the extracted image contains your modifications on the boot partition. You can flash it.