gaston
gaston

Reputation: 51

SMALLEST YOCTO IMAGE DISTRO FEATURES

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

Answers (1)

Nayfe
Nayfe

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

Related Questions