summaryrefslogtreecommitdiffstats
path: root/scripts/yocto-bsp
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-bsp
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-bsp')
-rwxr-xr-xscripts/yocto-bsp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/yocto-bsp b/scripts/yocto-bsp
index 2d9453fbe8..82a050ebdc 100755
--- a/scripts/yocto-bsp
+++ b/scripts/yocto-bsp
@@ -151,6 +151,6 @@ if __name__ == "__main__":
151 except Exception: 151 except Exception:
152 ret = 1 152 ret = 1
153 import traceback 153 import traceback
154 traceback.print_exc(5) 154 traceback.print_exc()
155 sys.exit(ret) 155 sys.exit(ret)
156 156