52c52
< % DefinedBenchmarks)
---
> % DefinedBenchmarks)
54,55c54,57
< help="Specify the filename to dump a pcap capture of the ethernet"
< "traffic")
---
> help="Specify the filename to dump a pcap capture of the" \
> "ethernet traffic")
> parser.add_option("--checkpoint_dir", action="store", type="string",
> help="Place all checkpoints in this absolute directory")
126c128,132
< m5.checkpoint(root, "cpt.%d")
---
> if options.checkpoint_dir:
> m5.checkpoint(root, "/".join([options.checkpoint_dir, "cpt.%d"]))
> else:
> m5.checkpoint(root, "cpt.%d")
>