summaryrefslogtreecommitdiffstats
path: root/iutil.py
diff options
context:
space:
mode:
Diffstat (limited to 'iutil.py')
-rw-r--r--iutil.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/iutil.py b/iutil.py
index 872915dff..e2751307c 100644
--- a/iutil.py
+++ b/iutil.py
@@ -496,6 +496,25 @@ def copyDeviceNode(src, dest):
os.mknod(dest, mode | type, filestat.st_rdev)
+## Get the SPARC machine variety type.
+# @return The SPARC machine type, or 0 if not SPARC.
+def getSparcMachine():
+ if not isSPARC():
+ return 0
+
+ machine = None
+
+
+ f = open('/proc/cpuinfo', 'r')
+ lines = f.readlines()
+ f.close()
+ for line in lines:
+ if line.find('type') != -1:
+ machine = line.split(':')[1].strip()
+ return machine
+
+ return None
+
## Get the PPC machine variety type.
# @return The PPC machine type, or 0 if not PPC.
def getPPCMachine():