summaryrefslogtreecommitdiffstats
path: root/pcmcia.py
blob: 99d9b6bcc4820a13c0770b07669ea2828f7d7fa4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/usr/bin/python

import iutil, string, os

def hasPcmcia(test = 0):
    loc = "/sbin/probe"
    if not os.access(loc, os.X_OK):
	loc = "/usr/sbin/probe"

    try:
        result = iutil.execWithCapture(loc, [ loc ])
    except RuntimeError:
        return None

    if (string.find(result, "TCIC-2 probe: not found") != -1):
	return None

    return 1

def createPcmciaConfig(path, pcic, test = 0):
    f = open(path, "w")

    if (pcic):
	f.write("PCMCIA=yes\n")
	f.write("PCIC=%s\n" % (pcic,))
    else:
	f.write("PCMCIA=no\n")
	f.write("PCIC=\n")

    f.write("PCIC_OPTS=\n")
    f.write("CORE_OPTS=\n")

    f.close()