summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2012-11-23 20:19:56 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-11-24 15:12:27 +0000
commit0c46dad46b35b88a7138fff90e11344eba33e1a3 (patch)
tree59f59b82c2cdac02ba5d314b199efb37cefa4edc /scripts
parent14f7c9c9d87e1a9b0c20d78d528068fd9f1a27cf (diff)
downloadpoky-0c46dad46b35b88a7138fff90e11344eba33e1a3.tar.gz
scripts/cleanup-workdir: Adpat to new workdir layout
(From OE-Core rev: d967a498cb464c3858dc280db5e67b7e7b281b02) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/cleanup-workdir12
1 files changed, 10 insertions, 2 deletions
diff --git a/scripts/cleanup-workdir b/scripts/cleanup-workdir
index 9d161c24d1..b2408fcfc6 100755
--- a/scripts/cleanup-workdir
+++ b/scripts/cleanup-workdir
@@ -22,7 +22,7 @@ import re
22import subprocess 22import subprocess
23import shutil 23import shutil
24 24
25pkg_cur_dirs = [] 25pkg_cur_dirs = {}
26obsolete_dirs = [] 26obsolete_dirs = []
27parser = None 27parser = None
28 28
@@ -101,7 +101,7 @@ will be deleted. Be CAUTIOUS.""")
101 version = parse_version(elems[1]) 101 version = parse_version(elems[1])
102 else: 102 else:
103 version = parse_version(elems[2]) 103 version = parse_version(elems[2])
104 pkg_cur_dirs.append(elems[0] + '-' + version) 104 pkg_cur_dirs[elems[0]] = version
105 105
106 cmd = "bitbake -e" 106 cmd = "bitbake -e"
107 output = run_command(cmd) 107 output = run_command(cmd)
@@ -156,6 +156,14 @@ will be deleted. Be CAUTIOUS.""")
156 for pkgdir in sorted(pkgdirs): 156 for pkgdir in sorted(pkgdirs):
157 if pkgdir not in pkg_cur_dirs: 157 if pkgdir not in pkg_cur_dirs:
158 obsolete_dirs.append(os.path.join(pkgroot, pkgdir)) 158 obsolete_dirs.append(os.path.join(pkgroot, pkgdir))
159 else:
160 for verroot, verdirs, verfiles in os.walk(os.path.join(pkgroot, pkgdir)):
161 for f in verfiles:
162 obsolete_dirs.append(os.path.join(pkgroot, f))
163 for v in sorted(verdirs):
164 if v not in pkg_cur_dirs[pkgdir]:
165 obsolete_dirs.append(os.path.join(pkgroot, pkgdir, v))
166 break
159 167
160 # just process the top dir of every package under tmp/work/*/, 168 # just process the top dir of every package under tmp/work/*/,
161 # then jump out of the above os.walk() 169 # then jump out of the above os.walk()