diff options
author | Tomasz Dziendzielski <tomasz.dziendzielski@gmail.com> | 2021-03-05 12:44:24 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-03-11 14:04:45 +0000 |
commit | 5386b3db50d99965f15013c8831999f63dce8fbe (patch) | |
tree | 14161469e96307bdfa72fbbf77c0949624745f28 /bitbake/lib/bb/cache.py | |
parent | d3a0f074bcfcc5d158709906c37af76110418f0d (diff) | |
download | poky-5386b3db50d99965f15013c8831999f63dce8fbe.tar.gz |
bitbake: runqueue: Print pseudo.log if fakeroot task failed
Currently if pseudo fails we can only see the path to pseudo.log. If we
have no access to server and can only rely on bitbake log then debugging
becomes impossible. This printing needs to be added in runqueue level,
not inside task execution, because in some cases task fails with pseudo
abort really early and we don't even see any log.
In this change I'm adding pseudo log printing in every fakeroot task
failure that logged `mismatch`, `error` or `fatal` to logfile, because
we have no other way to communicate with pseudo if it failed or not.
Only lines from last pseudo server execution will be printed.
(Bitbake rev: e7c664a947903ed7b868abef62af2ff5f8ef0dc6)
Signed-off-by: Tomasz Dziendzielski <tomasz.dziendzielski@gmail.com>
Signed-off-by: Jan Brzezanski <jan.brzezanski@gmail.com>
Signed-off-by: Adrian Walag
Signed-off-by: Paulo Neves <ptsneves@gmail.com>
Signed-off-by: Mikolaj Lasota <mikolaj.lasota@protonmail.com>
Signed-off-by: Wiktor Baura <wbaura@gmail.com>
Signed-off-by: Kamil Kwiek <kamil.kwiek@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/cache.py')
-rw-r--r-- | bitbake/lib/bb/cache.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bitbake/lib/bb/cache.py b/bitbake/lib/bb/cache.py index aea2b8bc11..27eb271798 100644 --- a/bitbake/lib/bb/cache.py +++ b/bitbake/lib/bb/cache.py | |||
@@ -126,6 +126,7 @@ class CoreRecipeInfo(RecipeInfoCommon): | |||
126 | self.inherits = self.getvar('__inherit_cache', metadata, expand=False) | 126 | self.inherits = self.getvar('__inherit_cache', metadata, expand=False) |
127 | self.fakerootenv = self.getvar('FAKEROOTENV', metadata) | 127 | self.fakerootenv = self.getvar('FAKEROOTENV', metadata) |
128 | self.fakerootdirs = self.getvar('FAKEROOTDIRS', metadata) | 128 | self.fakerootdirs = self.getvar('FAKEROOTDIRS', metadata) |
129 | self.fakerootlogs = self.getvar('FAKEROOTLOGS', metadata) | ||
129 | self.fakerootnoenv = self.getvar('FAKEROOTNOENV', metadata) | 130 | self.fakerootnoenv = self.getvar('FAKEROOTNOENV', metadata) |
130 | self.extradepsfunc = self.getvar('calculate_extra_depends', metadata) | 131 | self.extradepsfunc = self.getvar('calculate_extra_depends', metadata) |
131 | 132 | ||
@@ -163,6 +164,7 @@ class CoreRecipeInfo(RecipeInfoCommon): | |||
163 | cachedata.fakerootenv = {} | 164 | cachedata.fakerootenv = {} |
164 | cachedata.fakerootnoenv = {} | 165 | cachedata.fakerootnoenv = {} |
165 | cachedata.fakerootdirs = {} | 166 | cachedata.fakerootdirs = {} |
167 | cachedata.fakerootlogs = {} | ||
166 | cachedata.extradepsfunc = {} | 168 | cachedata.extradepsfunc = {} |
167 | 169 | ||
168 | def add_cacheData(self, cachedata, fn): | 170 | def add_cacheData(self, cachedata, fn): |
@@ -231,6 +233,7 @@ class CoreRecipeInfo(RecipeInfoCommon): | |||
231 | cachedata.fakerootenv[fn] = self.fakerootenv | 233 | cachedata.fakerootenv[fn] = self.fakerootenv |
232 | cachedata.fakerootnoenv[fn] = self.fakerootnoenv | 234 | cachedata.fakerootnoenv[fn] = self.fakerootnoenv |
233 | cachedata.fakerootdirs[fn] = self.fakerootdirs | 235 | cachedata.fakerootdirs[fn] = self.fakerootdirs |
236 | cachedata.fakerootlogs[fn] = self.fakerootlogs | ||
234 | cachedata.extradepsfunc[fn] = self.extradepsfunc | 237 | cachedata.extradepsfunc[fn] = self.extradepsfunc |
235 | 238 | ||
236 | def virtualfn2realfn(virtualfn): | 239 | def virtualfn2realfn(virtualfn): |