2021-07-02 06:01 AM
Hi,
I have done certain changes to support the display in the dts files.
I have modified dts files under kernel and u-boot.
I had also added certain changes in panel-simple.c file as well.
I gave a build and forgot to make some changes. So i changed those locally and gave :
bitbake st-image-weston
But this time around upon checking i found out that latest changes i made were not compiled and a new .o was not generated. How can i make sure , that local changes are compiled by yocto build system??
Solved! Go to Solution.
2021-07-05 04:47 AM
It looks like you are making changes to the temporary build directory.
You need to clone the u-boot and kernel source code, make changes, create patches and add them to the layer.
2021-07-03 12:53 AM
Hey!
From which folder did you change dts?
2021-07-05 04:20 AM
Hi @Mikalaj Karhin : I changed the driver file : drivers/gpu/drm/panel/panel-simple.c
2021-07-05 04:22 AM
Did you create a patch and add it to a build layer?
2021-07-05 04:43 AM
I directly modified the file under the kernel-source folder which was downloaded. It was a local change. I did not create patch and added it to yocto .
2021-07-05 04:47 AM
It looks like you are making changes to the temporary build directory.
You need to clone the u-boot and kernel source code, make changes, create patches and add them to the layer.
2021-07-09 10:14 PM
THanks @Mikalaj Karhin for the suggestion. Will take a look this might help.