forked from openatv/enigma2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBoxBrandingTest.py
20 lines (20 loc) · 1.13 KB
/
BoxBrandingTest.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import boxbranding
print "getMachineBuild=%s<" %boxbranding.getMachineBuild()
print "getMachineProcModel=%s<" %boxbranding.getMachineProcModel()
print "getMachineBrand=%s<" %boxbranding.getMachineBrand()
print "getMachineName=%s<" %boxbranding.getMachineName()
print "getMachineMtdKernel=%s<" %boxbranding.getMachineMtdKernel()
print "getMachineKernelFile=%s<" %boxbranding.getMachineKernelFile()
print "getMachineMtdRoot=%s<" %boxbranding.getMachineMtdRoot()
print "getMachineRootFile=%s<" %boxbranding.getMachineRootFile()
print "getMachineMKUBIFS=%s<" %boxbranding.getMachineMKUBIFS()
print "getMachineUBINIZE=%s<" %boxbranding.getMachineUBINIZE()
print "getBoxType=%s<" %boxbranding.getBoxType()
print "getBrandOEM=%s<" %boxbranding.getBrandOEM()
print "getOEVersion=%s<" %boxbranding.getOEVersion()
print "getDriverDate=%s<" %boxbranding.getDriverDate()
print "getImageVersion=%s<" %boxbranding.getImageVersion()
print "getImageBuild=%s<" %boxbranding.getImageBuild()
print "getImageDistro=%s<" %boxbranding.getImageDistro()
print "getImageFolder=%s<" %boxbranding.getImageFolder()
print "getImageFileSystem=%s<" %boxbranding.getImageFileSystem()