diff mbox series

[auh,V2,11/12] upgrade-helper.py: add logging info about running bitbake-layers

Message ID 20260311064813.619683-11-Qi.Chen@windriver.com
State New
Headers show
Series [auh,V2,01/12] upgrade-helper.py: remove unused self.poky_git settings | expand

Commit Message

ChenQi March 11, 2026, 6:48 a.m. UTC
From: Chen Qi <Qi.Chen@windriver.com>

When layer mode is used, 'bitbake-layers show-recipes' will run.
This usually takes several minutes. If there's no output from
auh, what people see is that they invoke auh and it gives no output
for several minutes, making people wonder if things are stuck.

Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
---
 upgrade-helper.py | 1 +
 1 file changed, 1 insertion(+)
diff mbox series

Patch

diff --git a/upgrade-helper.py b/upgrade-helper.py
index 8589f8d..7edb6da 100755
--- a/upgrade-helper.py
+++ b/upgrade-helper.py
@@ -619,6 +619,7 @@  class UniverseUpdater(Updater):
 
         name = ''
 
+        I("Running bitbake-layers show-recipes ... (this may take several minutes)")
         output = subprocess.check_output('bitbake-layers show-recipes',
                 shell=True)
         for line in output.decode("utf-8") .split('\n'):