blob: ee50daf959193e0469b3ec25b0342d0279685724 (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
Post-installation instructions for X.Org on OpenBSD/sparc
---------------------------------------------------------
1. Seting up X on sparc is easy:
Typical Xorg use on Sun sparc-based machines requires no configuration
file.
However, multi-headed configurations will require a configuration file.
Create /etc/X11/xorg.conf, with these two sections for each framebuffer:
Section "Device"
Identifier "Wsdisplay0"
Driver "wsfb"
Option "device" "/dev/ttyC0"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Wsdisplay0"
EndSection
This example is for the first screen. For the others, increment the
"Wsdisplay" and "Screen" numbers, and change the device to /dev/ttyD0
for the second display, /dev/ttyE0 for the third, and so on.
Then, you'll need to create a ServerLayout section describing all the
displays and their location relative to the first, as in:
Section "ServerLayout"
Identifier "wsfb"
Screen 0 "Screen0"
Screen 1 "Screen1" RightOf "Screen0"
EndSection
See xorg.conf(5) for more options.
2. Start either xdm(1) or startx(1).
a. Start xdm(1), the X display manager by activating the xdm_flags option
in /etc/rc.conf(8) or /etc/rc.conf.local(8). It is necessary to disable
/dev/console in /etc/ttys, change the 'status' of /dev/console to 'off'.
b. Start startx(1) from a console shell. It is the X script that starts
the X server and a few X applications, including a window manager.
problem_blurb
$OpenBSD: README.sparc,v 1.3 2009/05/20 18:26:35 miod Exp $
|