From 4375678a0d8429ee51882d328f851402b61d6ac5 Mon Sep 17 00:00:00 2001 From: Andrew Bardsley Date: Sun, 22 Nov 2015 05:10:21 -0500 Subject: 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. --- src/python/m5/params.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/python/m5/params.py') 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 -- cgit v1.2.3