vladcocos
vladcocos

Reputation: 37

Yocto: method not to include a bbappend file

I have a bbappend file that I need to include on some target platforms and not include on others. I tried adding BBFILES_remove += ".../my_package_%.bbappend" to see if it doesn't include the file, but that doesn't work.

Is there any way to make this work?

Thanks.

Upvotes: 1

Views: 1076

Answers (1)

Oleksandr Kravchuk
Oleksandr Kravchuk

Reputation: 6327

BBMASK is what you're looking for:

BBMASK += "/layer/my_packagegroup_%.bbappend"

Upvotes: 3

Related Questions