X6833B: Handle moved blobs in update-sha1sums.py script

Change-Id: Iccab8c8620c7ff680768aac2d9cbf5b5067af8d7
Signed-off-by: dodyirawan85 <40514988+dodyirawan85@users.noreply.github.com>
This commit is contained in:
LuK1337 2018-01-09 00:59:02 +01:00 committed by dodyirawan85
parent e45ec37c4f
commit ba84c1e629

View file

@ -41,11 +41,12 @@ for index, line in enumerate(lines):
if needSHA1:
# Remove existing SHA1 hash
line = line.split('|')[0]
filePath = line.split(':')[1] if len(line.split(':')) == 2 else line
if line[0] == '-':
file = open('%s/%s' % (vendorPath, line[1:]), 'rb').read()
if filePath[0] == '-':
file = open('%s/%s' % (vendorPath, filePath[1:]), 'rb').read()
else:
file = open('%s/%s' % (vendorPath, line), 'rb').read()
file = open('%s/%s' % (vendorPath, filePath), 'rb').read()
hash = sha1(file).hexdigest()
lines[index] = '%s|%s\n' % (line, hash)