diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-09-08 11:24:00 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-09-09 12:12:23 +0100 |
commit | d3991342ede8d0db43879719c6e7b9464cd9a128 (patch) | |
tree | 3d7a1b879affefb9f82e2432a7dcfc69e9f4b232 /meta | |
parent | ab3f23970d436a28e4a87df2d21521156dbacbe5 (diff) | |
download | poky-d3991342ede8d0db43879719c6e7b9464cd9a128.tar.gz |
oeqa/runtime/smart: Prune feeds to save memory
Full package feed indexes overload a 256MB image so reduce the number of rpms
the feed. Filter to p* since we use the psplash packages and this leaves some
allarch and machine arch packages too.
[YOCTO #8771]
(From OE-Core rev: f352c3b71cbf50846c7de31046202296b38713cc)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/lib/oeqa/runtime/smart.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/lib/oeqa/runtime/smart.py b/meta/lib/oeqa/runtime/smart.py index c8ba433cdd..6cdb10d631 100644 --- a/meta/lib/oeqa/runtime/smart.py +++ b/meta/lib/oeqa/runtime/smart.py | |||
@@ -87,6 +87,10 @@ class SmartRepoTest(SmartTest): | |||
87 | lockfilename = oeRuntimeTest.tc.d.getVar('DEPLOY_DIR_RPM', True) + "/rpm.lock" | 87 | lockfilename = oeRuntimeTest.tc.d.getVar('DEPLOY_DIR_RPM', True) + "/rpm.lock" |
88 | lf = bb.utils.lockfile(lockfilename, False) | 88 | lf = bb.utils.lockfile(lockfilename, False) |
89 | oe.path.copyhardlinktree(rpm_dir, idx_path) | 89 | oe.path.copyhardlinktree(rpm_dir, idx_path) |
90 | # Full indexes overload a 256MB image so reduce the number of rpms | ||
91 | # in the feed. Filter to p* since we use the psplash packages and | ||
92 | # this leaves some allarch and machine arch packages too. | ||
93 | bb.utils.remove(idx_path + "*/[a-oq-z]*.rpm") | ||
90 | bb.utils.unlockfile(lf) | 94 | bb.utils.unlockfile(lf) |
91 | index_cmds.append("%s --dbpath %s --update -q %s" % (rpm_createrepo, db_path, idx_path)) | 95 | index_cmds.append("%s --dbpath %s --update -q %s" % (rpm_createrepo, db_path, idx_path)) |
92 | rpm_dirs_found = True | 96 | rpm_dirs_found = True |