mirror of
git://git.yoctoproject.org/poky
synced 2026-08-12 20:59:19 +00:00
lib/oe/package_manager: Use log-level warning instead of quiet
quiet means that no warnings are shown on the console and really is too quiet for our needs. This is more verbose but that is better than too little and does aid debugging things when they go wrong. (From OE-Core rev: 9de391260e4491a4852410adf1009a1fa0c72a5c) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
parent
00765258a2
commit
fbec9200fd
@ -616,7 +616,7 @@ class RpmPM(PackageManager):
|
||||
self.install_dir_path = os.path.join(self.target_rootfs, self.install_dir_name)
|
||||
self.rpm_cmd = bb.utils.which(os.getenv('PATH'), "rpm")
|
||||
self.smart_cmd = bb.utils.which(os.getenv('PATH'), "smart")
|
||||
self.smart_opt = "--quiet --data-dir=" + os.path.join(target_rootfs,
|
||||
self.smart_opt = "--log-level=warning --data-dir=" + os.path.join(target_rootfs,
|
||||
'var/lib/smart')
|
||||
self.scriptlet_wrapper = self.d.expand('${WORKDIR}/scriptlet_wrapper')
|
||||
self.solution_manifest = self.d.expand('${T}/saved/%s_solution' %
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user