summaryrefslogtreecommitdiffstats
path: root/external/poky/bitbake/lib/bb/checksum.py
diff options
context:
space:
mode:
Diffstat (limited to 'external/poky/bitbake/lib/bb/checksum.py')
-rw-r--r--external/poky/bitbake/lib/bb/checksum.py18
1 files changed, 4 insertions, 14 deletions
diff --git a/external/poky/bitbake/lib/bb/checksum.py b/external/poky/bitbake/lib/bb/checksum.py
index 4e1598fe..1d50a264 100644
--- a/external/poky/bitbake/lib/bb/checksum.py
+++ b/external/poky/bitbake/lib/bb/checksum.py
@@ -2,24 +2,13 @@
#
# Copyright (C) 2012 Intel Corporation
#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License version 2 as
-# published by the Free Software Foundation.
+# SPDX-License-Identifier: GPL-2.0-only
#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License along
-# with this program; if not, write to the Free Software Foundation, Inc.,
-# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
import glob
import operator
import os
import stat
-import pickle
import bb.utils
import logging
from bb.cache import MultiProcessCache
@@ -84,7 +73,7 @@ class FileChecksumCache(MultiProcessCache):
else:
dest[0][h] = source[0][h]
- def get_checksums(self, filelist, pn):
+ def get_checksums(self, filelist, pn, localdirsexclude):
"""Get checksums for a list of files"""
def checksum_file(f):
@@ -100,7 +89,8 @@ class FileChecksumCache(MultiProcessCache):
if pth == "/":
bb.fatal("Refusing to checksum /")
dirchecksums = []
- for root, dirs, files in os.walk(pth):
+ for root, dirs, files in os.walk(pth, topdown=True):
+ [dirs.remove(d) for d in list(dirs) if d in localdirsexclude]
for name in files:
fullpth = os.path.join(root, name)
checksum = checksum_file(fullpth)