Lines Matching refs:options
55 def config_filesystem(system, options = None):
58 @param options: An optional argument which contains an Options.py options
73 fsdir = joinpath(m5.options.outdir, 'fs')
83 if hasattr(options, 'cpu_clock'):
84 cpu_clock = toFrequency(options.cpu_clock) / mega
87 if hasattr(options, 'l2_size'):
88 l2_size = toMemorySize(options.l2_size) / kibi
138 if options and hasattr(options, 'chroot'):
139 chroot = os.path.expanduser(options.chroot)
145 nodebasedir = joinpath(m5.options.outdir, 'fs', 'sys', 'devices',
158 cpudir = joinpath(m5.options.outdir, 'fs', 'sys', 'devices', 'system',
176 fsdir = joinpath(m5.options.outdir, 'fs')
202 host_paths = ["%s/fs/proc" % m5.options.outdir]),
204 host_paths = ["%s/fs/sys" % m5.options.outdir]),
206 host_paths = ["%s/fs/tmp" % m5.options.outdir]),