diff options
author | Andrew Bardsley <Andrew.Bardsley@arm.com> | 2015-11-22 05:10:21 -0500 |
---|---|---|
committer | Andrew Bardsley <Andrew.Bardsley@arm.com> | 2015-11-22 05:10:21 -0500 |
commit | 4375678a0d8429ee51882d328f851402b61d6ac5 (patch) | |
tree | cbe5b044d9c13dfd27b59edf6778c0b97ba73e33 /src/python/m5/params.py | |
parent | 4596a33e10ebbab83d757c5c6a9efe9c299a7499 (diff) | |
download | gem5-4375678a0d8429ee51882d328f851402b61d6ac5.tar.xz |
config: Added missing types to JSON/INI Python reader
Added the missing types EthernetAddr and Current to the JSON/INI file
reader example configs/example/read_config.py.
Also added __str__ to EthernetAddr to make values appear in the same form
in JSON an INI files.
Diffstat (limited to 'src/python/m5/params.py')
-rw-r--r-- | src/python/m5/params.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/python/m5/params.py b/src/python/m5/params.py index 846c5416e..f1eead80d 100644 --- a/src/python/m5/params.py +++ b/src/python/m5/params.py @@ -930,6 +930,9 @@ class EthernetAddr(ParamValue): from m5.internal.params import EthAddr return EthAddr(self.value) + def __str__(self): + return self.value + def ini_str(self): return self.value |