I am trying to configure yocto linux kernel to enable some drivers using this SDK DOCUMENTATION FOR T1042D4RDB-64B.
Until now, What I did is these steps;
1) bitbake virtual/kernel -c cleansstate
2) bitbake virtual/kernel -c patch
4) bitbake virtual/kernel -c configure
5) bitbake virtual/kernel -c menuconfig ( Enabling the drivers I want to load )
6) bitbake virtual/kernel
and
I successfully added the drivers I want from .config file. They all compiled with .o files. But yocto is not compiling them as kernel object (.ko) file. I can only get 13 .ko file.
You can see what I mean in this image. Modules.builtin is saying "I compiled each kernel object file you want" but modules.order, which keeps the list of drivers loaded into kernel root file system is saying "I have copied only 13 drivers to kernel modules folder".
Any idea about this situation ? I want to load each .ko file also in deployed kernel root file system.