diff options
author | Andreas Sandberg <andreas@sandberg.pp.se> | 2013-09-30 09:45:43 +0200 |
---|---|---|
committer | Andreas Sandberg <andreas@sandberg.pp.se> | 2013-09-30 09:45:43 +0200 |
commit | f62119c77a28951a8d5be3ac55dfa9a62d790f94 (patch) | |
tree | 59ed83e08e53e0ef25d45aca0c48a49b4c5eb6e9 /configs | |
parent | 86bade714e86fa87f8a210cdf0ec799f965f90a4 (diff) | |
download | gem5-f62119c77a28951a8d5be3ac55dfa9a62d790f94.tar.xz |
config: Add a 'kvm' CPU alias
Add a CPU alias, 'kvm', for the first available KVM-accelerated CPU
model.
Diffstat (limited to 'configs')
-rw-r--r-- | configs/common/CpuConfig.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configs/common/CpuConfig.py b/configs/common/CpuConfig.py index 6b8a21500..e12b646d8 100644 --- a/configs/common/CpuConfig.py +++ b/configs/common/CpuConfig.py @@ -52,6 +52,7 @@ _cpu_aliases_all = [ ("atomic", "AtomicSimpleCPU"), ("inorder", "InOrderCPU"), ("detailed", "DerivO3CPU"), + ("kvm", ("ArmKvmCPU", "X86KvmCPU")), ] # Filtered list of aliases. Only aliases for existing CPUs exist in |