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.
This commit is contained in:
Andrew Bardsley
2015-11-22 05:10:21 -05:00
parent 4596a33e10
commit 4375678a0d
2 changed files with 6 additions and 1 deletions

View File

@@ -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