Murat
Murat

Reputation: 245

Yocto openssl package not installing binary files

I have IMAGE_INSTALL_append += " openssl" in my local.conf.

I am building rootfs by executing bitbake console-image.

But It does not copy openssl binaries to rootfs. As I see it has a subpackage called openssl-bin but don't know how to force installation of this package.

Yocto Version: thud

Thanks,

Upvotes: 3

Views: 4166

Answers (1)

danrodlor
danrodlor

Reputation: 1459

Adding openssl-bin to IMAGE_INSTALL_append doesn't work?

You can also write an openssl_%.bbappend with a do_install_append() function in order to "manually" select and install the binaries you need.

Upvotes: 6

Related Questions