summaryrefslogtreecommitdiffstats
path: root/src/build/debug
diff options
context:
space:
mode:
authorDan Crowell <dcrowell@us.ibm.com>2016-10-14 13:51:17 -0500
committerDaniel M. Crowell <dcrowell@us.ibm.com>2016-10-14 16:27:31 -0400
commit9ed2a129eaabcd46e0aad2fd30e424906fc24b28 (patch)
tree446978ec50c6712ed3bc4f54d52aa5cbc703430e /src/build/debug
parent1c6d0faa3691b9aa1a1c1bbdbbcbbb9761f71c73 (diff)
downloadtalos-hostboot-9ed2a129eaabcd46e0aad2fd30e424906fc24b28.tar.gz
talos-hostboot-9ed2a129eaabcd46e0aad2fd30e424906fc24b28.zip
Remove print statement when skipping hap handler
Change-Id: Iea7677aac045f1f73eedb93f4308444e63ce4bc3 Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/31262 Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com> Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/build/debug')
-rwxr-xr-xsrc/build/debug/simics-debug-framework.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/build/debug/simics-debug-framework.py b/src/build/debug/simics-debug-framework.py
index 4f647dd3e..72fbc0824 100755
--- a/src/build/debug/simics-debug-framework.py
+++ b/src/build/debug/simics-debug-framework.py
@@ -488,14 +488,14 @@ def magic_instruction_callback(user_arg, cpu, arg):
# Disable our handler if someone tells us to
if( os.environ.has_key('HB_DISABLE_MAGIC')
and (os.environ['HB_DISABLE_MAGIC'] == '1') ):
- print 'Skipping HB magic (disabled)', arg
+ #print 'Skipping HB magic (disabled)', arg
return;
# Disable our handler if we aren't inside HB part of IPL
# If HB is running then HRMOR==128MB (ignoring high bits)
# 0x40000000=1GB, 0x8000000=128MB
if( (getHRMOR() % 0x40000000) != 0x8000000 ):
- print 'Skipping HB magic (outside of HB)', arg
+ #print 'Skipping HB magic (outside of HB)', arg
return;
if arg == 7006: # MAGIC_SHUTDOWN
OpenPOWER on IntegriCloud