2 * Copyright 1997,1998 by UCHIYAMA Yasushi
4 * Permission to use, copy, modify, distribute, and sell this software and its
5 * documentation for any purpose is hereby granted without fee, provided that
6 * the above copyright notice appear in all copies and that both that
7 * copyright notice and this permission notice appear in supporting
8 * documentation, and that the name of UCHIYAMA Yasushi not be used in
9 * advertising or publicity pertaining to distribution of the software without
10 * specific, written prior permission. UCHIYAMA Yasushi makes no representations
11 * about the suitability of this software for any purpose. It is provided
12 * "as is" without express or implied warranty.
14 * UCHIYAMA YASUSHI DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
15 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
16 * EVENT SHALL UCHIYAMA YASUSHI BE LIABLE FOR ANY SPECIAL, INDIRECT OR
17 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
18 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
19 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
20 * PERFORMANCE OF THIS SOFTWARE.
24 #ifdef HAVE_XORG_CONFIG_H
25 #include <xorg-config.h>
31 #include "scrnintstr.h"
37 #include "xf86_OSlib.h"
47 xf86ProcessArgument( int argc
,char **argv
, int i
)
61 if( serverGeneration
== 1 )
66 err
= get_privileged_ports( NULL
, &device
);
70 FatalError( "xf86KbdInit can't get_privileged_ports. (%s)\n" , strerror(errno
) );
72 mach_port_deallocate (mach_task_self (), device
);
74 if( ( fd
= open( "/dev/kbd" , O_RDONLY
|O_NONBLOCK
) ) < 0 )
76 fprintf( stderr
, "Cannot open keyboard (%s)\n",strerror(errno
) );
79 xf86Info
.consoleFd
= fd
;
87 close( xf86Info
.consoleFd
);