Reputation: 37
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
Reputation: 6327
BBMASK
is what you're looking for:
BBMASK += "/layer/my_packagegroup_%.bbappend"
Upvotes: 3