Add PROVIDES to all provider classes
When multiple recipes provide a package PREFERRED_PROVIDER
is used to pick one. However bitbake doesn't look at
RPROVIDES when it figures this out.
diff --git a/meta-phosphor/classes/obmc-phosphor-fan-mgmt.bbclass b/meta-phosphor/classes/obmc-phosphor-fan-mgmt.bbclass
index 973376d..2e64773 100644
--- a/meta-phosphor/classes/obmc-phosphor-fan-mgmt.bbclass
+++ b/meta-phosphor/classes/obmc-phosphor-fan-mgmt.bbclass
@@ -1,3 +1,4 @@
# Common code for recipes that implement Phosphor OpenBMC fan management.
RPROVIDES_${PN} += "virtual/obmc-phosphor-fan-mgmt"
+PROVIDES += "virtual/obmc-phosphor-fan-mgmt"