diff options
author | Brad Bishop <bradleyb@fuzziesquirrel.com> | 2018-10-20 21:40:37 -0400 |
---|---|---|
committer | Brad Bishop <bradleyb@fuzziesquirrel.com> | 2018-10-21 11:02:57 -0400 |
commit | 089ecdc6cef61098264a49c32d3baa50b2577b30 (patch) | |
tree | 812e4c2b8255fc33bda47afcf0b3a3f5740013dd /meta-phosphor/recipes-phosphor/fans/phosphor-fan.bb | |
parent | 3748b12a4e16e5533f683a875131eda5cd12897b (diff) | |
download | talos-openbmc-089ecdc6cef61098264a49c32d3baa50b2577b30.tar.gz talos-openbmc-089ecdc6cef61098264a49c32d3baa50b2577b30.zip |
meta-phosphor: temp remove PV for git recipes
In the five step sequence of transitioning an unversioned recipe to
a versioned one, PV cannot be explicitly set to 1.0+git${SRCPV} set
until the last step.
With PV set, _both_ the unversioned recipe and the versioned recipe
end up with PV = 1.0 and bitbake will continue to use the unversioned
file. This means that when the unversioned bbappends are removed in
step 4, the bbappend does not occur.
This commit can be reverted once the five step process is complete.
For reference, the five step process is:
1.
Create a temporary recipe symlink:
foo.bb -> foo_git.bb
This results in two available PVs for foo: "1.0" (the bitbake default
for unversioned recipes) and "git".
Further, set the preferred version for foo to "1.0" in the distro
configuration otherwise bitbake will choose PV = "git" and existing
(unversioned) bbappends will not apply and the build will break.
2.
Create a temporary bbappend symlink:
foo.bbappend -> foo_%.bbappend
This allows the manual override of the preferred version introduced in
step 1 to be removed from the distro configuration.
3.
Remove the preferred version override introduced in step 1 from the
distro configuration. At this point the versioned recipe is now being
used.
4.
Remove the unversioned bbappends.
5.
Remove the unversioned recipe.
(From meta-phosphor rev: 883e0238adc8543b28cce8a5d283d2092026da54)
Change-Id: I3c5248a41b064462d5a34a7bc6e5438acc107a32
Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
Diffstat (limited to 'meta-phosphor/recipes-phosphor/fans/phosphor-fan.bb')
-rw-r--r-- | meta-phosphor/recipes-phosphor/fans/phosphor-fan.bb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/meta-phosphor/recipes-phosphor/fans/phosphor-fan.bb b/meta-phosphor/recipes-phosphor/fans/phosphor-fan.bb index f9bb489b0..9e4db307a 100644 --- a/meta-phosphor/recipes-phosphor/fans/phosphor-fan.bb +++ b/meta-phosphor/recipes-phosphor/fans/phosphor-fan.bb @@ -2,7 +2,6 @@ SUMMARY = "Phosphor Fan" DESCRIPTION = "Phosphor fan provides a set of fan monitoring and \ control applications." PR = "r1" -PV = "1.0+git${SRCPV}" require ${PN}.inc |