summaryrefslogtreecommitdiffstats
path: root/scripts/yocto-kernel
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2016-03-31 12:46:38 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-03-31 23:01:38 +0100
commit51217057d12e375bada074daf6ab6c6112320c3e (patch)
tree50388ae282c0660076ea8a3cb50e3f61d2741c7b /scripts/yocto-kernel
parent31681346a70d03e94ba35344ce12205b5269f451 (diff)
downloadpoky-51217057d12e375bada074daf6ab6c6112320c3e.tar.gz
scripts, lib: Don't limit traceback lengths to arbitrary values
There appears to have been a lot of copy and pasting of the code which prints tracebacks upon failure and limits the stack trace to 5 entries. This obscures the real error and is very confusing to the user it look me an age to work out why some tracebacks weren't useful. This patch removes the limit, making tracebacks much more useful for debugging. [YOCTO #9230] (From meta-yocto rev: 2f00b2605353b9757a40636870ad20ee70bcab9d) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/yocto-kernel')
-rwxr-xr-xscripts/yocto-kernel2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/yocto-kernel b/scripts/yocto-kernel
index c9b2821e00..daaad07520 100755
--- a/scripts/yocto-kernel
+++ b/scripts/yocto-kernel
@@ -395,5 +395,5 @@ if __name__ == "__main__":
395 except Exception: 395 except Exception:
396 ret = 1 396 ret = 1
397 import traceback 397 import traceback
398 traceback.print_exc(5) 398 traceback.print_exc()
399 sys.exit(ret) 399 sys.exit(ret)