All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-oe][PATCH v2] package_manager.py: set dnf always debug verbosity
@ 2018-05-05 10:05 Paulo Neves
  2018-05-07 10:22 ` Alexander Kanavin
  0 siblings, 1 reply; 2+ messages in thread
From: Paulo Neves @ 2018-05-05 10:05 UTC (permalink / raw)
  To: openembedded-core

Removed an undocumented configuration
variable called ROOTFS_RPM_DEBUG. This configuration
toggled the verbosity of the dnf command. We now have
verbosity permanently turned on and instead of
directing this verbosity to bb.note we direct it
to bb.debug.

Having the verbosity enabled will allow to watch
the progress of the dnf package manager during the
do_rootfs task with the debug enabled in bitbake.

An example of the impact from enabling the
verbose output.

bitbake core-image-minimal
rm -rf tmp
bitbake core-image-minimal

Before patch 4m39,403s
After patch 4m42,441s

Signed-off-by: Paulo Neves <ptsneves@gmail.com>
---
 meta/lib/oe/package_manager.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/lib/oe/package_manager.py b/meta/lib/oe/package_manager.py
index 2d8aeba037..8b6cd2aee0 100644
--- a/meta/lib/oe/package_manager.py
+++ b/meta/lib/oe/package_manager.py
@@ -884,7 +884,7 @@ class RpmPM(PackageManager):
         os.environ['RPM_ETCCONFIGDIR'] = self.target_rootfs
 
         dnf_cmd = bb.utils.which(os.getenv('PATH'), "dnf")
-        standard_dnf_args = (["-v", "--rpmverbosity=debug"] if self.d.getVar('ROOTFS_RPM_DEBUG') else []) + ["-y",
+        standard_dnf_args = ["-v", "--rpmverbosity=debug", "-y",
                              "-c", oe.path.join(self.target_rootfs, "etc/dnf/dnf.conf"),
                              "--setopt=reposdir=%s" %(oe.path.join(self.target_rootfs, "etc/yum.repos.d")),
                              "--repofrompath=oe-repo,%s" % (self.rpm_repo_dir),
@@ -892,7 +892,7 @@ class RpmPM(PackageManager):
                              "--setopt=logdir=%s" % (self.d.getVar('T'))
                             ]
         cmd = [dnf_cmd] + standard_dnf_args + dnf_args
-        bb.note('Running %s' % ' '.join(cmd))
+        bb.debug(1, 'Running %s' % ' '.join(cmd))
         try:
             output = subprocess.check_output(cmd,stderr=subprocess.STDOUT).decode("utf-8")
             if print_output:
-- 
2.14.1



^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [meta-oe][PATCH v2] package_manager.py: set dnf always debug verbosity
  2018-05-05 10:05 [meta-oe][PATCH v2] package_manager.py: set dnf always debug verbosity Paulo Neves
@ 2018-05-07 10:22 ` Alexander Kanavin
  0 siblings, 0 replies; 2+ messages in thread
From: Alexander Kanavin @ 2018-05-07 10:22 UTC (permalink / raw)
  To: Paulo Neves, openembedded-core

On 05/05/2018 01:05 PM, Paulo Neves wrote:
> @@ -892,7 +892,7 @@ class RpmPM(PackageManager):
>                                "--setopt=logdir=%s" % (self.d.getVar('T'))
>                               ]
>           cmd = [dnf_cmd] + standard_dnf_args + dnf_args
> -        bb.note('Running %s' % ' '.join(cmd))
> +        bb.debug(1, 'Running %s' % ' '.join(cmd))

This should stay as bb.note. It only prints the command with arguments 
that is about to be executed.

>           try:
>               output = subprocess.check_output(cmd,stderr=subprocess.STDOUT).decode("utf-8")
>               if print_output:
> 

The actual output is logged just after these lines, so tweak it there 
please. Also, this should be a separate patch.

Alex


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-05-07 10:28 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-05-05 10:05 [meta-oe][PATCH v2] package_manager.py: set dnf always debug verbosity Paulo Neves
2018-05-07 10:22 ` Alexander Kanavin

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.