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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
|
import os
import string
import kudzu
import isys
import sys
def findCardInDB (needle, lines = None):
if not lines:
db = open ('/usr/X11R6/lib/X11/Cards')
lines = db.readlines ()
db.close ()
found = 0
card = {}
for line in lines:
line = string.strip (line)
if not line and found:
break
if line and line[0] == '#':
continue
if len (line) > 4 and line[0:4] == 'NAME':
haystack = line[5:]
if needle == haystack:
found = 1
continue
if found:
info = string.splitfields (line, ' ')
if card.has_key (info[0]):
card[info[0]] = card[info[0]] + (string.joinfields (info[1:], ' ') + '\n')
else:
card[info[0]] = string.joinfields (info[1:], ' ')
if card.has_key ("SEE"):
see = findCardInDB (card["SEE"], lines)
for key, item in see.items ():
card[key] = item
return card
def startX():
global serverPath
global mode
os.environ['DISPLAY'] = ':1'
serverPath = None
print "Probing for mouse type..."
mice = kudzu.probe (kudzu.CLASS_MOUSE,
kudzu.BUS_UNSPEC,
kudzu.PROBE_ONE);
if not mice:
raise XServerError, "Unable to find a mouse!"
device = None
mouseProtocol = None
(mouseDev, driver, descr) = mice[0]
if mouseDev == 'psaux':
mouseProtocol = "PS/2"
mouseEmulate = 0
else:
mouseProtocol = "Microsoft"
mouseEmulate = 1
cards = kudzu.probe (kudzu.CLASS_VIDEO,
kudzu.BUS_UNSPEC,
kudzu.PROBE_ALL);
if len (cards) > 1:
print "Warning: multiple video chips detected."
if not cards:
try:
f = open('/dev/fb0', 'r')
f.close()
serverPath = '/usr/X11R6/bin/XF86_FBDev'
except:
serverPath = '/usr/X11R6/bin/XF86_VGA16'
print "PCI probe for video cards failed. Falling back to", serverPath
else:
(device, driver, descr) = cards[0]
if len (driver) > 5 and driver[0:5] == "Card:":
card = findCardInDB (driver[5:])
if card.has_key ("SERVER"):
serverPath = '/usr/X11R6/bin/XF86_' + card["SERVER"]
else:
print ("CardDB missing SERVER for " + driver[5:] + ".\n"
"Falling back to VGA16")
serverPath = '/usr/X11R6/bin/XF86_VGA16'
else:
if len (driver) > 7 and driver[0:7] == "Server:":
serverPath = '/usr/X11R6/bin/XF86_' + driver[7:]
if not serverPath:
print "Unable to probe card. Falling back to VGA16"
serverPath = '/usr/X11R6/bin/XF86_VGA16'
isys.makeDevInode(mouseDev, "/tmp/" + mouseDev)
f = open ('/tmp/XF86Config', 'w')
settings = { "mouseDev" : '/tmp/' + mouseDev ,
"mouseProto" : mouseProtocol }
f.write ("""
Section "Files"
RgbPath "/usr/X11R6/lib/X11/rgb"
FontPath "/usr/X11R6/lib/X11/fonts/misc/"
FontPath "/usr/X11R6/lib/X11/fonts/Type1/"
FontPath "/usr/X11R6/lib/X11/fonts/Speedo/"
FontPath "/usr/X11R6/lib/X11/fonts/75dpi/"
FontPath "/usr/X11R6/lib/X11/fonts/100dpi/"
EndSection
Section "ServerFlags"
EndSection
Section "Keyboard"
Protocol "Standard"
AutoRepeat 500 5
LeftAlt Meta
RightAlt Meta
ScrollLock Compose
RightCtl Control
XkbKeymap "xfree86(us)"
XkbKeycodes "xfree86"
XkbTypes "default"
XkbCompat "default"
XkbSymbols "us(pc101)"
XkbGeometry "pc"
XkbRules "xfree86"
XkbModel "pc101"
XkbLayout "us"
EndSection
Section "Pointer"
Protocol "%(mouseProto)s"
Device "%(mouseDev)s"
Emulate3Buttons
Emulate3Timeout 50
EndSection
Section "Monitor"
Identifier "Monitor"
VendorName "Vendor"
ModelName "Model"
HorizSync 31.5 - 79.0
VertRefresh 40-150
# XXX fix me descr
Modeline "640x480" 25.175 640 664 760 800 480 491 493 525
# 640x480 @ 72 Hz, 36.5 kHz hsync
Modeline "640x480" 31.5 640 680 720 864 480 488 491 521
# 640x480 @ 75 Hz, 37.50 kHz hsync
ModeLine "640x480" 31.5 640 656 720 840 480 481 484 500 -HSync -VSync
EndSection
Section "Device"
Identifier "Device"
VendorName "Vendor"
BoardName "Board"
EndSection
Section "Screen"
Driver "vga16"
Device "Device"
Monitor "Monitor"
Subsection "Display"
Modes "640x480"
ViewPort 0 0
EndSubsection
EndSection
Section "Screen"
Driver "svga"
Device "Device"
Monitor "Monitor"
Subsection "Display"
Depth 8
Modes "640x480"
ViewPort 0 0
Virtual 640 480
EndSubsection
EndSection
Section "Screen"
Driver "accel"
Device "Device"
Monitor "Monitor"
Subsection "Display"
Depth 8
Modes "640x480"
ViewPort 0 0
Virtual 640 480
EndSubsection
EndSection
Section "Screen"
Driver "fbdev"
Device "Device"
Monitor "Monitor"
Subsection "Display"
Depth 16
Modes "default"
EndSubsection
EndSection
""" % settings)
f.close ()
server = os.fork()
if (not server):
print "starting", serverPath
os.execv(serverPath, [serverPath, ':1', '-xf86config',
'/tmp/XF86Config', 'vt5'])
child = os.fork()
if (child):
pid, status = os.waitpid(child, 0)
os.kill(server, 15)
sys.exit(status)
return ((mouseProtocol, mouseEmulate, mouseDev),)
|