The task do_kernel_configme is defined in yocto base layers and added to by meta-raspberrypi. How do I override only the parts added by meta-raspberrypi using a bbappend file?
Current setup is something like:
meta-mylayer rpi-recipe.bbappend do_kernel_configme_prepend()
meta-raspberrypi rpi-recipe.bb do_kernel_configme_prepend()
<yocto base layers> some-recipe.bb do_kernel_configme()
When I run this, both additions are prepended which means the "mylayer" code is run first, then meta-raspberrypi, then base.
How do I completely override the meta-raspberrypi additions so only the "mylayer" code followed by base layer code is executed.
(The same question also applies to do_configure task.)