[oe-commits] [openembedded-core] 03/27: parselogs: Whitelist GPT warnings as the device is fully functional

git at git.openembedded.org git at git.openembedded.org
Wed Dec 7 10:38:30 UTC 2016


rpurdie pushed a commit to branch master
in repository openembedded-core.

commit 5cc5cdc788308a79f8f0706e6d794c602ef427ed
Author: Jair Gonzalez <jair.de.jesus.gonzalez.plascencia at linux.intel.com>
AuthorDate: Wed Nov 30 14:43:02 2016 -0600

    parselogs: Whitelist GPT warnings as the device is fully functional
    
    The warning occurs when the GPT image is not the same size than the
    media into which it's being flashed, causing the backup GPT table
    not being at the end of the disk. However, this is expected as the
    image is created before having the information about the destination
    media. The error is harmless, so it will be whitelisted.
    
    Fixes [YOCTO 10481].
    
    Signed-off-by: Jair Gonzalez <jair.de.jesus.gonzalez.plascencia at linux.intel.com>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 meta/lib/oeqa/runtime/parselogs.py | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/meta/lib/oeqa/runtime/parselogs.py b/meta/lib/oeqa/runtime/parselogs.py
index 8610863..aa5008b 100644
--- a/meta/lib/oeqa/runtime/parselogs.py
+++ b/meta/lib/oeqa/runtime/parselogs.py
@@ -43,6 +43,7 @@ common_errors = [
     "controller can't do DEVSLP, turning off",
     "stmmac_dvr_probe: warning: cannot get CSR clock",
     "error: couldn\'t mount because of unsupported optional features",
+    "GPT: Use GNU Parted to correct GPT errors",
     ]
 
 video_related = [
@@ -70,7 +71,7 @@ qemux86_common = [
     'tsc: HPET/PMTIMER calibration failed',
 ] + common_errors
 
-ignore_errors = { 
+ignore_errors = {
     'default' : common_errors,
     'qemux86' : [
         'Failed to access perfctr msr (MSR',
@@ -202,7 +203,7 @@ class ParseLogsTest(oeRuntimeTest):
         hwi += "*******************************\n"
         return hwi
 
-    #go through the log locations provided and if it's a folder create a list with all the .log files in it, if it's a file just add 
+    #go through the log locations provided and if it's a folder create a list with all the .log files in it, if it's a file just add
     #it to that list
     def getLogList(self, log_locations):
         logs = []

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list