mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-05-19 09:58:11 +02:00
Boolean option to enable/disable SIGIO handlers is set by the first of these found: - UseSIGIO option is set in xorg.conf ServerFlags - Default set at build time by ./configure --enable-use-sigio-by-default - Platform default value: Solaris = no, all others = yes This matches the current settings on all platforms except Solaris. This reverts Solaris (for now) to the settings used in Xorg 1.6, before SIGIO support for Solaris was added, due to some system level bugs that won't be resolved in time for Xorg 1.7 release, but allows us to enable when those are resolved (or when we need to test if they're resolved). See http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6879897 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> |
||
|---|---|---|
| .. | ||
| devel | ||
| man | ||
| sgml | ||
| Makefile.am | ||
| README.DRI | ||
| README.modes | ||
| README.rapidaccess | ||
The IBM Rapid Access keyboard have some extra buttons
on it to launch programs, control a cd-player and so on.
These buttons is not functional when the computer is turned
on but have to be activated by sending the codes 0xea 0x71
to it.
I've written the following hack to send codes to the keyboard:
--------------------------------------------------------------
/* gcc -O2 -s -Wall -osend_to_keyboard send_to_keyboard.c */
#include <stdlib.h>
#include <unistd.h>
#include <sys/io.h>
int main( int argc, char *argv[] )
{
int i;
ioperm( 0x60, 3, 1 );
for( i = 1; i < argc; i++ ) {
int x = strtol( argv[i], 0, 16 );
usleep( 300 );
outb( x, 0x60 );
}
return 0;
}
--------------------------------------------------------------
As root you can then call this program (in your boot scripts)
as "send_to_keyboard ea 71" to turn on the extra buttons.
It's not a good idea to run several instances of this program
at the same time. It is a hack but it works. If you try to
send other codes to the keyboard it probably will lock up.
For other codes see:
http://www.win.tue.nl/~aeb/linux/kbd/scancodes-2.html#ss2.22
--
Dennis Björklund <db@zigo.dhs.org>
$XFree86$