From f4291aac256622546a5a51dce109599007f5b3cb Mon Sep 17 00:00:00 2001 From: Ali Saidi Date: Fri, 30 Jan 2009 20:04:15 -0500 Subject: Errors: Print a URL with a hash of the format string to find more information about an error. --- configs/example/fs.py | 4 ++-- configs/example/se.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'configs/example') diff --git a/configs/example/fs.py b/configs/example/fs.py index 5b5d26c90..c155d0222 100644 --- a/configs/example/fs.py +++ b/configs/example/fs.py @@ -31,7 +31,7 @@ import optparse, os, sys import m5 if not m5.build_env['FULL_SYSTEM']: - m5.panic("This script requires full-system mode (*_FS).") + m5.fatal("This script requires full-system mode (*_FS).") from m5.objects import * m5.AddToPath('../common') @@ -105,7 +105,7 @@ elif m5.build_env['TARGET_ISA'] == "sparc": elif m5.build_env['TARGET_ISA'] == "x86": test_sys = makeLinuxX86System(test_mem_mode, bm[0]) else: - m5.panic("incapable of building non-alpha or non-sparc full system!") + m5.fatal("incapable of building non-alpha or non-sparc full system!") if options.kernel is not None: test_sys.kernel = binary(options.kernel) diff --git a/configs/example/se.py b/configs/example/se.py index a2172aeb5..1193da004 100644 --- a/configs/example/se.py +++ b/configs/example/se.py @@ -33,7 +33,7 @@ import m5 if m5.build_env['FULL_SYSTEM']: - m5.panic("This script requires syscall emulation mode (*_SE).") + m5.fatal("This script requires syscall emulation mode (*_SE).") from m5.objects import * import os, optparse, sys -- cgit v1.2.3