xenocara/distrib/notes/README.sparc

52 lines
1.5 KiB
Plaintext
Raw Normal View History

2006-11-27 04:25:45 -07:00
Post-installation instructions for X.Org on OpenBSD/sparc
---------------------------------------------------------
2008-08-31 01:33:29 -06:00
1. Seting up X on sparc is easy:
2006-11-27 04:25:45 -07:00
2009-05-20 12:26:32 -06:00
Typical Xorg use on Sun sparc-based machines requires no configuration
file.
2006-11-27 04:25:45 -07:00
2009-05-20 12:26:32 -06:00
However, multi-headed configurations will require a configuration file.
Create /etc/X11/xorg.conf, with these two sections for each framebuffer:
2006-11-27 04:25:45 -07:00
Section "Device"
2009-05-20 12:26:32 -06:00
Identifier "Wsdisplay0"
Driver "wsfb"
Option "device" "/dev/ttyC0"
2006-11-27 04:25:45 -07:00
EndSection
Section "Screen"
2009-05-20 12:26:32 -06:00
Identifier "Screen0"
Device "Wsdisplay0"
2006-11-27 04:25:45 -07:00
EndSection
2009-05-20 12:26:32 -06:00
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:
2006-11-27 04:25:45 -07:00
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.local(8). It is necessary to disable
/dev/console in /etc/ttys, change the 'status' of /dev/console
to 'off'.
2006-11-27 04:25:45 -07:00
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.4 2014/07/30 20:06:30 matthieu Exp $