32a33,37
> import os
> import optparse
> import sys
> from os.path import join as joinpath
>
33a39,41
> from m5.defines import buildEnv
> from m5.objects import *
> from m5.util import addToPath, fatal
35,36c43,44
< if m5.build_env['FULL_SYSTEM']:
< m5.fatal("This script requires syscall emulation mode (*_SE).")
---
> if buildEnv['FULL_SYSTEM']:
> fatal("This script requires syscall emulation mode (*_SE).")
38,41c46,47
< from m5.objects import *
< import os, optparse, sys
< from os.path import join as joinpath
< m5.AddToPath('../common')
---
> addToPath('../common')
>
73c79
< if m5.build_env['TARGET_ISA'] != 'alpha':
---
> if buildEnv['TARGET_ISA'] != 'alpha':