summaryrefslogtreecommitdiffstats
path: root/isys/isys.py
blob: ba347c43722ca35cd999213088569e785131d7ab (plain)
1
2
3
4
5
6
7
8
9
10
import _isys

def mount(device, location, fstype = "ext2"):
    return _isys.mount(fstype, device, location)

def umount(what):
    return _isys.umount(what)

def smpAvailable():
    return _isys.smpavailable()