diff options
author | Joshua Watt <jpewhacker@gmail.com> | 2019-09-16 12:49:45 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-09-18 17:52:01 +0100 |
commit | 34923e4f772fc57c29421741d2f622eb4009961c (patch) | |
tree | 76bda7c11d1deb7eb10f71741417f8d2c28f96cd /meta/lib/oe | |
parent | f12e41c1bbff01009018786b9c46e90103a2c728 (diff) | |
download | poky-34923e4f772fc57c29421741d2f622eb4009961c.tar.gz |
Remove SSTATE_HASHEQUIV_SERVER
Removes all references to the SSTATE_HASHEQUIV_SERVER variable. This
variable is redundant now that BB_HASHSERVE is present.
(From OE-Core rev: 54b3adb6bc90a8e4b9e92952688772ee074d36e5)
Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oe')
-rw-r--r-- | meta/lib/oe/sstatesig.py | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/meta/lib/oe/sstatesig.py b/meta/lib/oe/sstatesig.py index b1ef5c039b..50d80bf51a 100644 --- a/meta/lib/oe/sstatesig.py +++ b/meta/lib/oe/sstatesig.py | |||
@@ -262,13 +262,9 @@ class SignatureGeneratorOEEquivHash(bb.siggen.SignatureGeneratorUniHashMixIn, Si | |||
262 | 262 | ||
263 | def init_rundepcheck(self, data): | 263 | def init_rundepcheck(self, data): |
264 | super().init_rundepcheck(data) | 264 | super().init_rundepcheck(data) |
265 | autostart = data.getVar('BB_HASHSERVE') | 265 | self.server = data.getVar('BB_HASHSERVE') |
266 | if autostart: | ||
267 | self.server = autostart | ||
268 | else: | ||
269 | self.server = data.getVar('SSTATE_HASHEQUIV_SERVER') | ||
270 | if not self.server: | 266 | if not self.server: |
271 | bb.fatal("OEEquivHash requires SSTATE_HASHEQUIV_SERVER or BB_HASHSERVE to be set") | 267 | bb.fatal("OEEquivHash requires BB_HASHSERVE to be set") |
272 | self.method = data.getVar('SSTATE_HASHEQUIV_METHOD') | 268 | self.method = data.getVar('SSTATE_HASHEQUIV_METHOD') |
273 | if not self.method: | 269 | if not self.method: |
274 | bb.fatal("OEEquivHash requires SSTATE_HASHEQUIV_METHOD to be set") | 270 | bb.fatal("OEEquivHash requires SSTATE_HASHEQUIV_METHOD to be set") |