Reputation: 51
I am trying to build a small linux image using the Yocto project.While i was searching the net, i found that i can remove some DISTRO FEATURES that i don't need for my image. How can i check which distro features i m using now ?
Upvotes: 1
Views: 2607
Reputation: 2300
You can use the following command:
bitbake -e | grep ^DISTRO_FEATURES=
To shrink Yocto image, you can base your work on poky-tiny
and look at Building a tiny system manual chapter.
Upvotes: 4