mirror of
https://git.yoctoproject.org/poky
synced 2026-02-05 16:28:43 +01:00
In order to attempt to reduce image sizes by skipping recommended packages, a new mode was added to smart that only evaluates required packaged. (From OE-Core rev: 6fd8141bbdcd84c591149d84ad84effc2357de72) Signed-off-by: Mark Hatle <mark.hatle@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
25 lines
942 B
Diff
25 lines
942 B
Diff
Add a simple method to disable the install of recommended packages
|
|
|
|
Upstream-Status: Pending
|
|
|
|
Usage:
|
|
smart config --set ignore-all-recommends=1
|
|
|
|
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
|
|
|
|
Index: smart-1.4.1/smart/transaction.py
|
|
===================================================================
|
|
--- smart-1.4.1.orig/smart/transaction.py
|
|
+++ smart-1.4.1/smart/transaction.py
|
|
@@ -611,7 +611,9 @@ class Transaction(object):
|
|
for prv in req.providedby:
|
|
for prvpkg in prv.packages:
|
|
if not reqrequired:
|
|
- if pkgconf.testFlag("ignore-recommends", prvpkg):
|
|
+ if sysconf.get("ignore-all-recommends", 0) == 1:
|
|
+ continue
|
|
+ elif pkgconf.testFlag("ignore-recommends", prvpkg):
|
|
continue
|
|
if isinst(prvpkg):
|
|
found = True
|