I modify the device tree i typically change the dts file.i want to make dtb file from the dts file.but it is showing me some error when i try to bitbake it.
IDE=at91-sama5d27_som1_ek
SRC=$IDE.dts
TMP=$IDE.tmp.dts
DST=$IDE.dtb
cpp -nostdinc -I include -undef -x assembler-with-cpp $SRC > $TMP
It gives me following error
error: no include path in which to search for dt-bindings/mfd/atmel-flexcom.h
#include <dt-bindings/mfd/atmel-flexcom.h>
error: no include path in which to search for dt-bindings/gpio/gpio.h
#include <dt-bindings/gpio/gpio.h>
but both file are present and also path is correct.
how can i convert dts file to dtb file?