summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/cooker.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2025-07-18 14:31:24 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-07-21 17:49:04 +0100
commitcdb6e3e5c5724098ba072af91f9dff283a13ef72 (patch)
tree2eaf9df12963bbf890dd9425f4f856b650454265 /bitbake/lib/bb/cooker.py
parent49d0abc5c80d6ed49eb1ba019cc95d44bf0f5029 (diff)
downloadpoky-cdb6e3e5c5724098ba072af91f9dff283a13ef72.tar.gz
bitbake: utils: Split profile reports into separate files
Use a more logical name for the profile reports and put each report into a separate file since people struggle to discover them currently. (Bitbake rev: a8145c84e0899285a5e6a809f1515118b002b106) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/cooker.py')
-rw-r--r--bitbake/lib/bb/cooker.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
index fe33a4f34c..0ad79bd53e 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/lib/bb/cooker.py
@@ -2241,9 +2241,9 @@ class CookerParser(object):
2241 profiles.append(logfile) 2241 profiles.append(logfile)
2242 2242
2243 if profiles: 2243 if profiles:
2244 pout = "profile-parse.log.processed" 2244 fn_out = "profile-parse.log.report"
2245 bb.utils.process_profilelog(profiles, pout = pout) 2245 bb.utils.process_profilelog(profiles, fn_out=fn_out)
2246 print("Processed parsing statistics saved to %s" % (pout)) 2246 print("Processed parsing statistics saved to %s" % (fn_out))
2247 2247
2248 def final_cleanup(self): 2248 def final_cleanup(self):
2249 if self.syncthread: 2249 if self.syncthread: