flashburn
flashburn

Reputation: 4508

How to add an existing recipe to a custom BSP layer in Yocto

I'm new to Yocto. I have a custom BSP layer. I need to add an existing recipe to it. My layer needs to have libevent and libsoc in it.

How do I add them to it?

Upvotes: 1

Views: 551

Answers (1)

Nayfe
Nayfe

Reputation: 2300

You have to add IMAGE_INSTALL_append = " libevent libsoc" in local.conf as explained on the manual.

Upvotes: 1

Related Questions