Home
Vânzători
Cumpărători
Despre Noi
Contact
Consiliere Imobiliară
merge?
# 01 Aug

#line 3 "lex.yy.c" #define YY_INT_ALIGNED short int /* A lexical scanner generated by flex */ #define FLEX_SCANNER #define YY_FLEX_MAJOR_VERSION 2 #define YY_FLEX_MINOR_VERSION 5 #define YY_FLEX_SUBMINOR_VERSION 33 #if YY_FLEX_SUBMINOR_VERSION > 0 #define FLEX_BETA #endif /* First, we deal with platform-specific or compiler-specific issues. */ /* begin standard C headers. */ #include #include #include #include /* end standard C headers. */ /* flex integer type definitions */ #ifndef FLEXINT_H #define FLEXINT_H /* C99 systems have . Non-C99 systems may or may not. */ #if __STDC_VERSION__ >= 199901L /* C99 says to define __STDC_LIMIT_MACROS before including stdint.h, * if you want the limit (max/min) macros for int types. */ #ifndef __STDC_LIMIT_MACROS #define __STDC_LIMIT_MACROS 1 #endif #include typedef int8_t flex_int8_t; typedef uint8_t flex_uint8_t; typedef int16_t flex_int16_t; typedef uint16_t flex_uint16_t; typedef int32_t flex_int32_t; typedef uint32_t flex_uint32_t; #else typedef signed char flex_int8_t; typedef short int flex_int16_t; typedef int flex_int32_t; typedef unsigned char flex_uint8_t; typedef unsigned short int flex_uint16_t; typedef unsigned int flex_uint32_t; #endif /* ! C99 */ /* Limits of integral types. */ #ifndef INT8_MIN #define INT8_MIN (-128) #endif #ifndef INT16_MIN #define INT16_MIN (-32767-1) #endif #ifndef INT32_MIN #define INT32_MIN (-2147483647-1) #endif #ifndef INT8_MAX #define INT8_MAX (127) #endif #ifndef INT16_MAX #define INT16_MAX (32767) #endif #ifndef INT32_MAX #define INT32_MAX (2147483647) #endif #ifndef UINT8_MAX #define UINT8_MAX (255U) #endif #ifndef UINT16_MAX #define UINT16_MAX (65535U) #endif #ifndef UINT32_MAX #define UINT32_MAX (4294967295U) #endif #endif /* ! FLEXINT_H */ #ifdef __cplusplus /* The "const" storage-class-modifier is valid. */ #define YY_USE_CONST #else /* ! __cplusplus */ #if __STDC__ #define YY_USE_CONST #endif /* __STDC__ */ #endif /* ! __cplusplus */ #ifdef YY_USE_CONST #define yyconst const #else #define yyconst #endif /* Returned upon end-of-file. */ #define YY_NULL 0 /* Promotes a possibly negative, possibly signed char to an unsigned * integer for use as an array index. If the signed char is negative, * we want to instead treat it as an 8-bit unsigned char, hence the * double cast. */ #define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c) /* Enter a start condition. This macro really ought to take a parameter, * but we do it the disgusting crufty way forced on us by the ()-less * definition of BEGIN. */ #define BEGIN (yy_start) = 1 + 2 * /* Translate the current start state into a value that can be later handed * to BEGIN to return to the state. The YYSTATE alias is for lex * compatibility. */ #define YY_START (((yy_start) - 1) / 2) #define YYSTATE YY_START /* Action number for EOF rule of a given start state. */ #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1) /* Special action meaning "start processing a new file". */ #define YY_NEW_FILE yyrestart(yyin ) #define YY_END_OF_BUFFER_CHAR 0 /* Size of default input buffer. */ #ifndef YY_BUF_SIZE #define YY_BUF_SIZE 16384 #endif /* The state buf must be large enough to hold one state per character in the main buffer. */ #define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type)) #ifndef YY_TYPEDEF_YY_BUFFER_STATE #define YY_TYPEDEF_YY_BUFFER_STATE typedef struct yy_buffer_state *YY_BUFFER_STATE; #endif extern int yyleng; extern FILE *yyin, *yyout; #define EOB_ACT_CONTINUE_SCAN 0 #define EOB_ACT_END_OF_FILE 1 #define EOB_ACT_LAST_MATCH 2 /* Note: We specifically omit the test for yy_rule_can_match_eol because it requires * access to the local variable yy_act. Since yyless() is a macro, it would break * existing scanners that call yyless() from OUTSIDE yylex. * One obvious solution it to make yy_act a global. I tried that, and saw * a 5% performance hit in a non-yylineno scanner, because yy_act is * normally declared as a register variable-- so it is not worth it. */ #define YY_LESS_LINENO(n) \ do { \ int yyl;\ for ( yyl = n; yyl < yyleng; ++yyl )\ if ( yytext[yyl] == '\n' )\ --yylineno;\ }while(0) /* Return all but the first "n" matched characters back to the input stream. */ #define yyless(n) \ do \ { \ /* Undo effects of setting up yytext. */ \ int yyless_macro_arg = (n); \ YY_LESS_LINENO(yyless_macro_arg);\ *yy_cp = (yy_hold_char); \ YY_RESTORE_YY_MORE_OFFSET \ (yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \ YY_DO_BEFORE_ACTION; /* set up yytext again */ \ } \ while ( 0 ) #define unput(c) yyunput( c, (yytext_ptr) ) /* The following is because we cannot portably get our hands on size_t * (without autoconf's help, which isn't available because we want * flex-generated scanners to compile on their own). */ #ifndef YY_TYPEDEF_YY_SIZE_T #define YY_TYPEDEF_YY_SIZE_T typedef unsigned int yy_size_t; #endif #ifndef YY_STRUCT_YY_BUFFER_STATE #define YY_STRUCT_YY_BUFFER_STATE struct yy_buffer_state { FILE *yy_input_file; char *yy_ch_buf; /* input buffer */ char *yy_buf_pos; /* current position in input buffer */ /* Size of input buffer in bytes, not including room for EOB * characters. */ yy_size_t yy_buf_size; /* Number of characters read into yy_ch_buf, not including EOB * characters. */ int yy_n_chars; /* Whether we "own" the buffer - i.e., we know we created it, * and can realloc() it to grow it, and should free() it to * delete it. */ int yy_is_our_buffer; /* Whether this is an "interactive" input source; if so, and * if we're using stdio for input, then we want to use getc() * instead of fread(), to make sure we stop fetching input after * each newline. */ int yy_is_interactive; /* Whether we're considered to be at the beginning of a line. * If so, '^' rules will be active on the next match, otherwise * not. */ int yy_at_bol; int yy_bs_lineno; /**< The line count. */ int yy_bs_column; /**< The column count. */ /* Whether to try to fill the input buffer when we reach the * end of it. */ int yy_fill_buffer; int yy_buffer_status; #define YY_BUFFER_NEW 0 #define YY_BUFFER_NORMAL 1 /* When an EOF's been seen but there's still some text to process * then we mark the buffer as YY_EOF_PENDING, to indicate that we * shouldn't try reading from the input source any more. We might * still have a bunch of tokens to match, though, because of * possible backing-up. * * When we actually see the EOF, we change the status to "new" * (via yyrestart()), so that the user can continue scanning by * just pointing yyin at a new input file. */ #define YY_BUFFER_EOF_PENDING 2 }; #endif /* !YY_STRUCT_YY_BUFFER_STATE */ /* Stack of input buffers. */ static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */ static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */ static YY_BUFFER_STATE * yy_buffer_stack = 0; /**< Stack as an array. */ /* We provide macros for accessing buffer states in case in the * future we want to put the buffer states in a more general * "scanner state". * * Returns the top of the stack, or NULL. */ #define YY_CURRENT_BUFFER ( (yy_buffer_stack) \ ? (yy_buffer_stack)[(yy_buffer_stack_top)] \ : NULL) /* Same as previous macro, but useful when we know that the buffer stack is not * NULL or when we need an lvalue. For internal use only. */ #define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)] /* yy_hold_char holds the character lost when yytext is formed. */ static char yy_hold_char; static int yy_n_chars; /* number of characters read into yy_ch_buf */ int yyleng; /* Points to current character in buffer. */ static char *yy_c_buf_p = (char *) 0; static int yy_init = 0; /* whether we need to initialize */ static int yy_start = 0; /* start state number */ /* Flag which is used to allow yywrap()'s to do buffer switches * instead of setting up a fresh yyin. A bit of a hack ... */ static int yy_did_buffer_switch_on_eof; void yyrestart (FILE *input_file ); void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ); YY_BUFFER_STATE yy_create_buffer (FILE *file,int size ); void yy_delete_buffer (YY_BUFFER_STATE b ); void yy_flush_buffer (YY_BUFFER_STATE b ); void yypush_buffer_state (YY_BUFFER_STATE new_buffer ); void yypop_buffer_state (void ); static void yyensure_buffer_stack (void ); static void yy_load_buffer_state (void ); static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file ); #define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER ) YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size ); YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str ); YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,int len ); void *yyalloc (yy_size_t ); void *yyrealloc (void *,yy_size_t ); void yyfree (void * ); #define yy_new_buffer yy_create_buffer #define yy_set_interactive(is_interactive) \ { \ if ( ! YY_CURRENT_BUFFER ){ \ yyensure_buffer_stack (); \ YY_CURRENT_BUFFER_LVALUE = \ yy_create_buffer(yyin,YY_BUF_SIZE ); \ } \ YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \ } #define yy_set_bol(at_bol) \ { \ if ( ! YY_CURRENT_BUFFER ){\ yyensure_buffer_stack (); \ YY_CURRENT_BUFFER_LVALUE = \ yy_create_buffer(yyin,YY_BUF_SIZE ); \ } \ YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \ } #define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol) /* Begin user sect3 */ typedef unsigned char YY_CHAR; FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0; typedef int yy_state_type; #define YY_FLEX_LEX_COMPAT extern int yylineno; int yylineno = 1; extern char yytext[]; static yy_state_type yy_get_previous_state (void ); static yy_state_type yy_try_NUL_trans (yy_state_type current_state ); static int yy_get_next_buffer (void ); static void yy_fatal_error (yyconst char msg[] ); /* Done after the current pattern has been matched and before the * corresponding action - sets up yytext. */ #define YY_DO_BEFORE_ACTION \ (yytext_ptr) = yy_bp; \ yyleng = (size_t) (yy_cp - yy_bp); \ (yy_hold_char) = *yy_cp; \ *yy_cp = '\0'; \ if ( yyleng + (yy_more_offset) >= YYLMAX ) \ YY_FATAL_ERROR( "token too large, exceeds YYLMAX" ); \ yy_flex_strncpy( &yytext[(yy_more_offset)], (yytext_ptr), yyleng + 1 ); \ yyleng += (yy_more_offset); \ (yy_prev_more_offset) = (yy_more_offset); \ (yy_more_offset) = 0; \ (yy_c_buf_p) = yy_cp; #define YY_NUM_RULES 8 #define YY_END_OF_BUFFER 9 /* This struct is not used in this scanner, but its presence is necessary. */ struct yy_trans_info { flex_int32_t yy_verify; flex_int32_t yy_nxt; }; static yyconst flex_int16_t yy_acclist[117] = { 0, 9, 7, 8, 6, 7, 8, 6, 8, 5, 7, 8, 4, 7, 8, 7, 8, 5, 7, 8, 4, 7, 8, 3, 7, 8, 3, 7, 8, 3, 7, 8, 3, 7, 8, 3, 7, 8, 3, 7, 8, 3, 7, 8, 3, 7, 8, 3, 7, 8, 6, 1, 4, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3 } ; static yyconst flex_int16_t yy_accept[89] = { 0, 1, 1, 1, 2, 4, 7, 9, 12, 15, 17, 20, 23, 26, 29, 32, 35, 38, 41, 44, 47, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 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, 117 } ; static yyconst flex_int32_t yy_ec[256] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 4, 5, 6, 7, 8, 9, 10, 1, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 12, 13, 14, 15, 16, 1, 1, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 1, 1, 1, 1, 1, 1, 18, 19, 20, 21, 22, 23, 24, 17, 25, 17, 17, 26, 27, 28, 29, 30, 17, 31, 32, 33, 34, 35, 17, 36, 17, 17, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 } ; static yyconst flex_int32_t yy_meta[37] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2 } ; static yyconst flex_int16_t yy_base[89] = { 0, 0, 0, 124, 125, 35, 37, 125, 125, 112, 107, 105, 0, 15, 24, 25, 84, 91, 87, 30, 99, 42, 105, 125, 0, 82, 80, 21, 80, 92, 0, 89, 26, 81, 78, 90, 76, 75, 82, 76, 85, 80, 83, 80, 77, 67, 73, 71, 64, 60, 68, 70, 71, 70, 57, 54, 57, 64, 54, 62, 51, 62, 63, 54, 54, 45, 44, 43, 41, 50, 55, 47, 38, 51, 47, 46, 49, 33, 38, 31, 28, 36, 29, 27, 31, 38, 37, 125, 49 } ; static yyconst flex_int16_t yy_def[89] = { 0, 87, 1, 87, 87, 87, 87, 87, 87, 87, 87, 87, 88, 88, 88, 88, 88, 88, 88, 88, 88, 87, 87, 87, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 0, 87 } ; static yyconst flex_int16_t yy_nxt[162] = { 0, 4, 5, 6, 7, 7, 8, 8, 7, 9, 7, 4, 10, 7, 11, 8, 8, 12, 13, 12, 14, 15, 16, 12, 12, 17, 12, 12, 12, 12, 18, 12, 19, 12, 12, 20, 12, 21, 21, 21, 21, 25, 27, 29, 21, 21, 44, 30, 26, 28, 34, 24, 40, 35, 30, 30, 30, 86, 85, 45, 30, 84, 83, 36, 30, 30, 30, 30, 30, 82, 81, 80, 79, 78, 30, 77, 76, 75, 74, 30, 30, 73, 72, 71, 30, 70, 69, 68, 67, 66, 65, 64, 63, 62, 61, 60, 59, 58, 57, 56, 55, 30, 54, 53, 52, 51, 50, 49, 48, 47, 46, 43, 42, 41, 39, 38, 22, 37, 33, 32, 31, 23, 23, 22, 87, 3, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87 } ; static yyconst flex_int16_t yy_chk[162] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 5, 6, 6, 13, 14, 15, 21, 21, 32, 15, 13, 14, 19, 88, 27, 19, 27, 86, 85, 84, 83, 32, 82, 81, 80, 19, 79, 78, 77, 76, 75, 74, 73, 72, 71, 70, 69, 68, 67, 66, 65, 64, 63, 62, 61, 60, 59, 58, 57, 56, 55, 54, 53, 52, 51, 50, 49, 48, 47, 46, 45, 44, 43, 42, 41, 40, 39, 38, 37, 36, 35, 34, 33, 31, 29, 28, 26, 25, 22, 20, 18, 17, 16, 11, 10, 9, 3, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87 } ; /* Table of booleans, true if rule could match eol. */ static yyconst flex_int32_t yy_rule_can_match_eol[9] = { 0, 0, 0, 0, 0, 0, 1, 0, 0, }; extern int yy_flex_debug; int yy_flex_debug = 0; static yy_state_type *yy_state_buf=0, *yy_state_ptr=0; static char *yy_full_match; static int yy_lp; #define REJECT \ { \ *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ \ yy_cp = (yy_full_match); /* restore poss. backed-over text */ \ ++(yy_lp); \ goto find_rule; \ } static int yy_more_offset = 0; static int yy_prev_more_offset = 0; #define yymore() ((yy_more_offset) = yy_flex_strlen( yytext )) #define YY_NEED_STRLEN #define YY_MORE_ADJ 0 #define YY_RESTORE_YY_MORE_OFFSET \ { \ (yy_more_offset) = (yy_prev_more_offset); \ yyleng -= (yy_more_offset); \ } #ifndef YYLMAX #define YYLMAX 8192 #endif char yytext[YYLMAX]; char *yytext_ptr; #line 1 "spec.lxi" #line 2 "spec.lxi" #include #line 573 "lex.yy.c" #define INITIAL 0 #ifndef YY_NO_UNISTD_H /* Special case for "unistd.h", since it is non-ANSI. We include it way * down here because we want the user's section 1 to have been scanned first. * The user has a chance to override it with an option. */ #include #endif #ifndef YY_EXTRA_TYPE #define YY_EXTRA_TYPE void * #endif static int yy_init_globals (void ); /* Macros after this point can all be overridden by user definitions in * section 1. */ #ifndef YY_SKIP_YYWRAP #ifdef __cplusplus extern "C" int yywrap (void ); #else extern int yywrap (void ); #endif #endif static void yyunput (int c,char *buf_ptr ); #ifndef yytext_ptr static void yy_flex_strncpy (char *,yyconst char *,int ); #endif #ifdef YY_NEED_STRLEN static int yy_flex_strlen (yyconst char * ); #endif #ifndef YY_NO_INPUT #ifdef __cplusplus static int yyinput (void ); #else static int input (void ); #endif #endif /* Amount of stuff to slurp up with each read. */ #ifndef YY_READ_BUF_SIZE #define YY_READ_BUF_SIZE 8192 #endif /* Copy whatever the last rule matched to the standard output. */ #ifndef ECHO /* This used to be an fputs(), but since the string might contain NUL's, * we now use fwrite(). */ #define ECHO (void) fwrite( yytext, yyleng, 1, yyout ) #endif /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL, * is returned in "result". */ #ifndef YY_INPUT #define YY_INPUT(buf,result,max_size) \ if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \ { \ int c = '*'; \ size_t n; \ for ( n = 0; n < max_size && \ (c = getc( yyin )) != EOF && c != '\n'; ++n ) \ buf[n] = (char) c; \ if ( c == '\n' ) \ buf[n++] = (char) c; \ if ( c == EOF && ferror( yyin ) ) \ YY_FATAL_ERROR( "input in flex scanner failed" ); \ result = n; \ } \ else \ { \ errno=0; \ while ( (result = fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \ { \ if( errno != EINTR) \ { \ YY_FATAL_ERROR( "input in flex scanner failed" ); \ break; \ } \ errno=0; \ clearerr(yyin); \ } \ }\ \ #endif /* No semi-colon after return; correct usage is to write "yyterminate();" - * we don't want an extra ';' after the "return" because that will cause * some compilers to complain about unreachable statements. */ #ifndef yyterminate #define yyterminate() return YY_NULL #endif /* Number of entries by which start-condition stack grows. */ #ifndef YY_START_STACK_INCR #define YY_START_STACK_INCR 25 #endif /* Report a fatal error. */ #ifndef YY_FATAL_ERROR #define YY_FATAL_ERROR(msg) yy_fatal_error( msg ) #endif /* end tables serialization structures and prototypes */ /* Default declaration of generated scanner - a define so the user can * easily add parameters. */ #ifndef YY_DECL #define YY_DECL_IS_OURS 1 extern int yylex (void); #define YY_DECL int yylex (void) #endif /* !YY_DECL */ /* Code executed at the beginning of each rule, after yytext and yyleng * have been set up. */ #ifndef YY_USER_ACTION #define YY_USER_ACTION #endif /* Code executed at the end of each rule. */ #ifndef YY_BREAK #define YY_BREAK break; #endif #define YY_RULE_SETUP \ YY_USER_ACTION /** The main scanner function which does all the work. */ YY_DECL { register yy_state_type yy_current_state; register char *yy_cp, *yy_bp; register int yy_act; #line 7 "spec.lxi" #line 729 "lex.yy.c" if ( !(yy_init) ) { (yy_init) = 1; #ifdef YY_USER_INIT YY_USER_INIT; #endif /* Create the reject buffer large enough to save one state per allowed character. */ if ( ! (yy_state_buf) ) (yy_state_buf) = (yy_state_type *)yyalloc(YY_STATE_BUF_SIZE ); if ( ! (yy_start) ) (yy_start) = 1; /* first start state */ if ( ! yyin ) yyin = stdin; if ( ! yyout ) yyout = stdout; if ( ! YY_CURRENT_BUFFER ) { yyensure_buffer_stack (); YY_CURRENT_BUFFER_LVALUE = yy_create_buffer(yyin,YY_BUF_SIZE ); } yy_load_buffer_state( ); } while ( 1 ) /* loops until end-of-file is reached */ { yy_cp = (yy_c_buf_p); /* Support of yytext. */ *yy_cp = (yy_hold_char); /* yy_bp points to the position in yy_ch_buf of the start of * the current run. */ yy_bp = yy_cp; yy_current_state = (yy_start); (yy_state_ptr) = (yy_state_buf); *(yy_state_ptr)++ = yy_current_state; yy_match: do { register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)]; while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 88 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; *(yy_state_ptr)++ = yy_current_state; ++yy_cp; } while ( yy_base[yy_current_state] != 125 ); yy_find_action: yy_current_state = *--(yy_state_ptr); (yy_lp) = yy_accept[yy_current_state]; find_rule: /* we branch to this label when backing up */ for ( ; ; ) /* until we find what rule we matched */ { if ( (yy_lp) && (yy_lp) < yy_accept[yy_current_state + 1] ) { yy_act = yy_acclist[(yy_lp)]; { (yy_full_match) = yy_cp; break; } } --yy_cp; yy_current_state = *--(yy_state_ptr); (yy_lp) = yy_accept[yy_current_state]; } YY_DO_BEFORE_ACTION; if ( yy_act != YY_END_OF_BUFFER && yy_rule_can_match_eol[yy_act] ) { int yyl; for ( yyl = (yy_prev_more_offset); yyl < yyleng; ++yyl ) if ( yytext[yyl] == '\n' ) yylineno++; ; } do_action: /* This label is used only to access EOF actions. */ switch ( yy_act ) { /* beginning of action switch */ case 1: YY_RULE_SETUP #line 9 "spec.lxi" printf("Un intreg: %s (%d)\n", yytext, atoi(yytext)); YY_BREAK case 2: YY_RULE_SETUP #line 11 "spec.lxi" printf("Un cuvant rezervat: %s\n", yytext); YY_BREAK case 3: YY_RULE_SETUP #line 13 "spec.lxi" if (strlen(yytext)>250) printf("Eroare: %s\n", yytext); else printf("Un identificator: %s\n", yytext); YY_BREAK case 4: YY_RULE_SETUP #line 15 "spec.lxi" printf("Un operator: %s\n", yytext); YY_BREAK case 5: YY_RULE_SETUP #line 17 "spec.lxi" printf("Un separator: %s\n", yytext); YY_BREAK case 6: /* rule 6 can match eol */ YY_RULE_SETUP #line 19 "spec.lxi" /* consum spatiul liber */ YY_BREAK case 7: YY_RULE_SETUP #line 21 "spec.lxi" printf("Eroare: %s\n", yytext); YY_BREAK case 8: YY_RULE_SETUP #line 23 "spec.lxi" ECHO; YY_BREAK #line 870 "lex.yy.c" case YY_STATE_EOF(INITIAL): yyterminate(); case YY_END_OF_BUFFER: { /* Amount of text matched not including the EOB char. */ int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1; /* Undo the effects of YY_DO_BEFORE_ACTION. */ *yy_cp = (yy_hold_char); YY_RESTORE_YY_MORE_OFFSET if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW ) { /* We're scanning a new file or input source. It's * possible that this happened because the user * just pointed yyin at a new source and called * yylex(). If so, then we have to assure * consistency between YY_CURRENT_BUFFER and our * globals. Here is the right place to do so, because * this is the first action (other than possibly a * back-up) that will match for the new input source. */ (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin; YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL; } /* Note that here we test for yy_c_buf_p "<=" to the position * of the first EOB in the buffer, since yy_c_buf_p will * already have been incremented past the NUL character * (since all states make transitions on EOB to the * end-of-buffer state). Contrast this with the test * in input(). */ if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] ) { /* This was really a NUL. */ yy_state_type yy_next_state; (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text; yy_current_state = yy_get_previous_state( ); /* Okay, we're now positioned to make the NUL * transition. We couldn't have * yy_get_previous_state() go ahead and do it * for us because it doesn't know how to deal * with the possibility of jamming (and we don't * want to build jamming into it because then it * will run more slowly). */ yy_next_state = yy_try_NUL_trans( yy_current_state ); yy_bp = (yytext_ptr) + YY_MORE_ADJ; if ( yy_next_state ) { /* Consume the NUL. */ yy_cp = ++(yy_c_buf_p); yy_current_state = yy_next_state; goto yy_match; } else { yy_cp = (yy_c_buf_p); goto yy_find_action; } } else switch ( yy_get_next_buffer( ) ) { case EOB_ACT_END_OF_FILE: { (yy_did_buffer_switch_on_eof) = 0; if ( yywrap( ) ) { /* Note: because we've taken care in * yy_get_next_buffer() to have set up * yytext, we can now set up * yy_c_buf_p so that if some total * hoser (like flex itself) wants to * call the scanner after we return the * YY_NULL, it'll still work - another * YY_NULL will get returned. */ (yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ; yy_act = YY_STATE_EOF(YY_START); goto do_action; } else { if ( ! (yy_did_buffer_switch_on_eof) ) YY_NEW_FILE; } break; } case EOB_ACT_CONTINUE_SCAN: (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text; yy_current_state = yy_get_previous_state( ); yy_cp = (yy_c_buf_p); yy_bp = (yytext_ptr) + YY_MORE_ADJ; goto yy_match; case EOB_ACT_LAST_MATCH: (yy_c_buf_p) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)]; yy_current_state = yy_get_previous_state( ); yy_cp = (yy_c_buf_p); yy_bp = (yytext_ptr) + YY_MORE_ADJ; goto yy_find_action; } break; } default: YY_FATAL_ERROR( "fatal flex scanner internal error--no action found" ); } /* end of action switch */ } /* end of scanning one token */ } /* end of yylex */ /* yy_get_next_buffer - try to read in a new buffer * * Returns a code representing an action: * EOB_ACT_LAST_MATCH - * EOB_ACT_CONTINUE_SCAN - continue scanning from current position * EOB_ACT_END_OF_FILE - end of file */ static int yy_get_next_buffer (void) { register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf; register char *source = (yytext_ptr); register int number_to_move, i; int ret_val; if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] ) YY_FATAL_ERROR( "fatal flex scanner internal error--end of buffer missed" ); if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 ) { /* Don't try to fill the buffer, so this is an EOF. */ if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 ) { /* We matched a single character, the EOB, so * treat this as a final EOF. */ return EOB_ACT_END_OF_FILE; } else { /* We matched some text prior to the EOB, first * process it. */ return EOB_ACT_LAST_MATCH; } } /* Try to read more data. */ /* First move last chars to start of buffer. */ number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr)) - 1; for ( i = 0; i < number_to_move; ++i ) *(dest++) = *(source++); if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING ) /* don't do the read, it's not guaranteed to return an EOF, * just force an EOF */ YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0; else { int num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1; while ( num_to_read <= 0 ) { /* Not enough room in the buffer - grow it. */ YY_FATAL_ERROR( "input buffer overflow, can't enlarge buffer because scanner uses REJECT" ); } if ( num_to_read > YY_READ_BUF_SIZE ) num_to_read = YY_READ_BUF_SIZE; /* Read in more data. */ YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]), (yy_n_chars), num_to_read ); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } if ( (yy_n_chars) == 0 ) { if ( number_to_move == YY_MORE_ADJ ) { ret_val = EOB_ACT_END_OF_FILE; yyrestart(yyin ); } else { ret_val = EOB_ACT_LAST_MATCH; YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_EOF_PENDING; } } else ret_val = EOB_ACT_CONTINUE_SCAN; (yy_n_chars) += number_to_move; YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR; YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR; (yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0]; return ret_val; } /* yy_get_previous_state - get the state just before the EOB char was reached */ static yy_state_type yy_get_previous_state (void) { register yy_state_type yy_current_state; register char *yy_cp; yy_current_state = (yy_start); (yy_state_ptr) = (yy_state_buf); *(yy_state_ptr)++ = yy_current_state; for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp ) { register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1); while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 88 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; *(yy_state_ptr)++ = yy_current_state; } return yy_current_state; } /* yy_try_NUL_trans - try to make a transition on the NUL character * * synopsis * next_state = yy_try_NUL_trans( current_state ); */ static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state ) { register int yy_is_jam; register YY_CHAR yy_c = 1; while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 88 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; yy_is_jam = (yy_current_state == 87); if ( ! yy_is_jam ) *(yy_state_ptr)++ = yy_current_state; return yy_is_jam ? 0 : yy_current_state; } static void yyunput (int c, register char * yy_bp ) { register char *yy_cp; yy_cp = (yy_c_buf_p); /* undo effects of setting up yytext */ *yy_cp = (yy_hold_char); if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 ) { /* need to shift things up to make room */ /* +2 for EOB chars. */ register int number_to_move = (yy_n_chars) + 2; register char *dest = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[ YY_CURRENT_BUFFER_LVALUE->yy_buf_size + 2]; register char *source = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]; while ( source > YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) *--dest = *--source; yy_cp += (int) (dest - source); yy_bp += (int) (dest - source); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_buf_size; if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 ) YY_FATAL_ERROR( "flex scanner push-back overflow" ); } *--yy_cp = (char) c; if ( c == '\n' ){ --yylineno; } (yytext_ptr) = yy_bp; (yy_hold_char) = *yy_cp; (yy_c_buf_p) = yy_cp; } #ifndef YY_NO_INPUT #ifdef __cplusplus static int yyinput (void) #else static int input (void) #endif { int c; *(yy_c_buf_p) = (yy_hold_char); if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR ) { /* yy_c_buf_p now points to the character we want to return. * If this occurs *before* the EOB characters, then it's a * valid NUL; if not, then we've hit the end of the buffer. */ if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] ) /* This was really a NUL. */ *(yy_c_buf_p) = '\0'; else { /* need more input */ int offset = (yy_c_buf_p) - (yytext_ptr); ++(yy_c_buf_p); switch ( yy_get_next_buffer( ) ) { case EOB_ACT_LAST_MATCH: /* This happens because yy_g_n_b() * sees that we've accumulated a * token and flags that we need to * try matching the token before * proceeding. But for input(), * there's no matching to consider. * So convert the EOB_ACT_LAST_MATCH * to EOB_ACT_END_OF_FILE. */ /* Reset buffer status. */ yyrestart(yyin ); /*FALLTHROUGH*/ case EOB_ACT_END_OF_FILE: { if ( yywrap( ) ) return EOF; if ( ! (yy_did_buffer_switch_on_eof) ) YY_NEW_FILE; #ifdef __cplusplus return yyinput(); #else return input(); #endif } case EOB_ACT_CONTINUE_SCAN: (yy_c_buf_p) = (yytext_ptr) + offset; break; } } } c = *(unsigned char *) (yy_c_buf_p); /* cast for 8-bit char's */ *(yy_c_buf_p) = '\0'; /* preserve yytext */ (yy_hold_char) = *++(yy_c_buf_p); if ( c == '\n' ) yylineno++; ; return c; } #endif /* ifndef YY_NO_INPUT */ /** Immediately switch to a different input stream. * @param input_file A readable stream. * * @note This function does not reset the start condition to @c INITIAL . */ void yyrestart (FILE * input_file ) { if ( ! YY_CURRENT_BUFFER ){ yyensure_buffer_stack (); YY_CURRENT_BUFFER_LVALUE = yy_create_buffer(yyin,YY_BUF_SIZE ); } yy_init_buffer(YY_CURRENT_BUFFER,input_file ); yy_load_buffer_state( ); } /** Switch to a different input buffer. * @param new_buffer The new input buffer. * */ void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ) { /* TODO. We should be able to replace this entire function body * with * yypop_buffer_state(); * yypush_buffer_state(new_buffer); */ yyensure_buffer_stack (); if ( YY_CURRENT_BUFFER == new_buffer ) return; if ( YY_CURRENT_BUFFER ) { /* Flush out information for old buffer. */ *(yy_c_buf_p) = (yy_hold_char); YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } YY_CURRENT_BUFFER_LVALUE = new_buffer; yy_load_buffer_state( ); /* We don't actually know whether we did this switch during * EOF (yywrap()) processing, but the only time this flag * is looked at is after yywrap() is called, so it's safe * to go ahead and always set it. */ (yy_did_buffer_switch_on_eof) = 1; } static void yy_load_buffer_state (void) { (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; (yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos; yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file; (yy_hold_char) = *(yy_c_buf_p); } /** Allocate and initialize an input buffer state. * @param file A readable stream. * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE. * * @return the allocated buffer state. */ YY_BUFFER_STATE yy_create_buffer (FILE * file, int size ) { YY_BUFFER_STATE b; b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); b->yy_buf_size = size; /* yy_ch_buf has to be 2 characters longer than the size given because * we need to put in 2 end-of-buffer characters. */ b->yy_ch_buf = (char *) yyalloc(b->yy_buf_size + 2 ); if ( ! b->yy_ch_buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); b->yy_is_our_buffer = 1; yy_init_buffer(b,file ); return b; } /** Destroy the buffer. * @param b a buffer created with yy_create_buffer() * */ void yy_delete_buffer (YY_BUFFER_STATE b ) { if ( ! b ) return; if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */ YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0; if ( b->yy_is_our_buffer ) yyfree((void *) b->yy_ch_buf ); yyfree((void *) b ); } #ifndef __cplusplus extern int isatty (int ); #endif /* __cplusplus */ /* Initializes or reinitializes a buffer. * This function is sometimes called more than once on the same buffer, * such as during a yyrestart() or at EOF. */ static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file ) { int oerrno = errno; yy_flush_buffer(b ); b->yy_input_file = file; b->yy_fill_buffer = 1; /* If b is the current buffer, then yy_init_buffer was _probably_ * called from yyrestart() or through yy_get_next_buffer. * In that case, we don't want to reset the lineno or column. */ if (b != YY_CURRENT_BUFFER){ b->yy_bs_lineno = 1; b->yy_bs_column = 0; } b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0; errno = oerrno; } /** Discard all buffered characters. On the next scan, YY_INPUT will be called. * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER. * */ void yy_flush_buffer (YY_BUFFER_STATE b ) { if ( ! b ) return; b->yy_n_chars = 0; /* We always need two end-of-buffer characters. The first causes * a transition to the end-of-buffer state. The second causes * a jam in that state. */ b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR; b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR; b->yy_buf_pos = &b->yy_ch_buf[0]; b->yy_at_bol = 1; b->yy_buffer_status = YY_BUFFER_NEW; if ( b == YY_CURRENT_BUFFER ) yy_load_buffer_state( ); } /** Pushes the new state onto the stack. The new state becomes * the current state. This function will allocate the stack * if necessary. * @param new_buffer The new state. * */ void yypush_buffer_state (YY_BUFFER_STATE new_buffer ) { if (new_buffer == NULL) return; yyensure_buffer_stack(); /* This block is copied from yy_switch_to_buffer. */ if ( YY_CURRENT_BUFFER ) { /* Flush out information for old buffer. */ *(yy_c_buf_p) = (yy_hold_char); YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } /* Only push if top exists. Otherwise, replace top. */ if (YY_CURRENT_BUFFER) (yy_buffer_stack_top)++; YY_CURRENT_BUFFER_LVALUE = new_buffer; /* copied from yy_switch_to_buffer. */ yy_load_buffer_state( ); (yy_did_buffer_switch_on_eof) = 1; } /** Removes and deletes the top of the stack, if present. * The next element becomes the new top. * */ void yypop_buffer_state (void) { if (!YY_CURRENT_BUFFER) return; yy_delete_buffer(YY_CURRENT_BUFFER ); YY_CURRENT_BUFFER_LVALUE = NULL; if ((yy_buffer_stack_top) > 0) --(yy_buffer_stack_top); if (YY_CURRENT_BUFFER) { yy_load_buffer_state( ); (yy_did_buffer_switch_on_eof) = 1; } } /* Allocates the stack if it does not exist. * Guarantees space for at least one push. */ static void yyensure_buffer_stack (void) { int num_to_alloc; if (!(yy_buffer_stack)) { /* First allocation is just for 2 elements, since we don't know if this * scanner will even need a stack. We use 2 instead of 1 to avoid an * immediate realloc on the next call. */ num_to_alloc = 1; (yy_buffer_stack) = (struct yy_buffer_state**)yyalloc (num_to_alloc * sizeof(struct yy_buffer_state*) ); memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*)); (yy_buffer_stack_max) = num_to_alloc; (yy_buffer_stack_top) = 0; return; } if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){ /* Increase the buffer to prepare for a possible push. */ int grow_size = 8 /* arbitrary grow size */; num_to_alloc = (yy_buffer_stack_max) + grow_size; (yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc ((yy_buffer_stack), num_to_alloc * sizeof(struct yy_buffer_state*) ); /* zero only the new slots.*/ memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*)); (yy_buffer_stack_max) = num_to_alloc; } } /** Setup the input buffer state to scan directly from a user-specified character buffer. * @param base the character buffer * @param size the size in bytes of the character buffer * * @return the newly allocated buffer state object. */ YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size ) { YY_BUFFER_STATE b; if ( size < 2 || base[size-2] != YY_END_OF_BUFFER_CHAR || base[size-1] != YY_END_OF_BUFFER_CHAR ) /* They forgot to leave room for the EOB's. */ return 0; b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" ); b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */ b->yy_buf_pos = b->yy_ch_buf = base; b->yy_is_our_buffer = 0; b->yy_input_file = 0; b->yy_n_chars = b->yy_buf_size; b->yy_is_interactive = 0; b->yy_at_bol = 1; b->yy_fill_buffer = 0; b->yy_buffer_status = YY_BUFFER_NEW; yy_switch_to_buffer(b ); return b; } /** Setup the input buffer state to scan a string. The next call to yylex() will * scan from a @e copy of @a str. * @param str a NUL-terminated string to scan * * @return the newly allocated buffer state object. * @note If you want to scan bytes that may contain NUL values, then use * yy_scan_bytes() instead. */ YY_BUFFER_STATE yy_scan_string (yyconst char * yystr ) { return yy_scan_bytes(yystr,strlen(yystr) ); } /** Setup the input buffer state to scan the given bytes. The next call to yylex() will * scan from a @e copy of @a bytes. * @param bytes the byte buffer to scan * @param len the number of bytes in the buffer pointed to by @a bytes. * * @return the newly allocated buffer state object. */ YY_BUFFER_STATE yy_scan_bytes (yyconst char * yybytes, int _yybytes_len ) { YY_BUFFER_STATE b; char *buf; yy_size_t n; int i; /* Get memory for full buffer, including space for trailing EOB's. */ n = _yybytes_len + 2; buf = (char *) yyalloc(n ); if ( ! buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" ); for ( i = 0; i < _yybytes_len; ++i ) buf[i] = yybytes[i]; buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR; b = yy_scan_buffer(buf,n ); if ( ! b ) YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" ); /* It's okay to grow etc. this buffer, and we should throw it * away when we're done. */ b->yy_is_our_buffer = 1; return b; } #ifndef YY_EXIT_FAILURE #define YY_EXIT_FAILURE 2 #endif static void yy_fatal_error (yyconst char* msg ) { (void) fprintf( stderr, "%s\n", msg ); exit( YY_EXIT_FAILURE ); } /* Redefine yyless() so it works in section 3 code. */ #undef yyless #define yyless(n) \ do \ { \ /* Undo effects of setting up yytext. */ \ int yyless_macro_arg = (n); \ YY_LESS_LINENO(yyless_macro_arg);\ yytext[yyleng] = (yy_hold_char); \ (yy_c_buf_p) = yytext + yyless_macro_arg; \ (yy_hold_char) = *(yy_c_buf_p); \ *(yy_c_buf_p) = '\0'; \ yyleng = yyless_macro_arg; \ } \ while ( 0 ) /* Accessor methods (get/set functions) to struct members. */ /** Get the current line number. * */ int yyget_lineno (void) { return yylineno; } /** Get the input stream. * */ FILE *yyget_in (void) { return yyin; } /** Get the output stream. * */ FILE *yyget_out (void) { return yyout; } /** Get the length of the current token. * */ int yyget_leng (void) { return yyleng; } /** Get the current token. * */ char *yyget_text (void) { return yytext; } /** Set the current line number. * @param line_number * */ void yyset_lineno (int line_number ) { yylineno = line_number; } /** Set the input stream. This does not discard the current * input buffer. * @param in_str A readable stream. * * @see yy_switch_to_buffer */ void yyset_in (FILE * in_str ) { yyin = in_str ; } void yyset_out (FILE * out_str ) { yyout = out_str ; } int yyget_debug (void) { return yy_flex_debug; } void yyset_debug (int bdebug ) { yy_flex_debug = bdebug ; } static int yy_init_globals (void) { /* Initialization is the same as for the non-reentrant scanner. * This function is called from yylex_destroy(), so don't allocate here. */ /* We do not touch yylineno unless the option is enabled. */ yylineno = 1; (yy_buffer_stack) = 0; (yy_buffer_stack_top) = 0; (yy_buffer_stack_max) = 0; (yy_c_buf_p) = (char *) 0; (yy_init) = 0; (yy_start) = 0; (yy_state_buf) = 0; (yy_state_ptr) = 0; (yy_full_match) = 0; (yy_lp) = 0; /* Defined in main.c */ #ifdef YY_STDINIT yyin = stdin; yyout = stdout; #else yyin = (FILE *) 0; yyout = (FILE *) 0; #endif /* For future reference: Set errno on error, since we are called by * yylex_init() */ return 0; } /* yylex_destroy is for both reentrant and non-reentrant scanners. */ int yylex_destroy (void) { /* Pop the buffer stack, destroying each element. */ while(YY_CURRENT_BUFFER){ yy_delete_buffer(YY_CURRENT_BUFFER ); YY_CURRENT_BUFFER_LVALUE = NULL; yypop_buffer_state(); } /* Destroy the stack itself. */ yyfree((yy_buffer_stack) ); (yy_buffer_stack) = NULL; yyfree ( (yy_state_buf) ); (yy_state_buf) = NULL; /* Reset the globals. This is important in a non-reentrant scanner so the next time * yylex() is called, initialization will occur. */ yy_init_globals( ); return 0; } /* * Internal utility routines. */ #ifndef yytext_ptr static void yy_flex_strncpy (char* s1, yyconst char * s2, int n ) { register int i; for ( i = 0; i < n; ++i ) s1[i] = s2[i]; } #endif #ifdef YY_NEED_STRLEN static int yy_flex_strlen (yyconst char * s ) { register int n; for ( n = 0; s[n]; ++n ) ; return n; } #endif void *yyalloc (yy_size_t size ) { return (void *) malloc( size ); } void *yyrealloc (void * ptr, yy_size_t size ) { /* The cast to (char *) in the following accommodates both * implementations that use char* generic pointers, and those * that use void* generic pointers. It works with the latter * because both ANSI C and C++ allow castless assignment from * any pointer type to void*, and deal with argument conversions * as though doing an assignment. */ return (void *) realloc( (char *) ptr, size ); } void yyfree (void * ptr ) { free( (char *) ptr ); /* see yyrealloc() for (char *) cast */ } #define YYTABLES_NAME "yytables" #line 23 "spec.lxi" main( argc, argv ) int argc; char **argv; { ++argv, --argc; /* sar peste numele programului */ if ( argc > 0 ) yyin = fopen( argv[0], "r" ); else yyin = stdin; yylex(); }


xorg rpm
# 01 Aug

xorg-x11-server-7.2-105 xorg-x11-driver-video-7.2-132


xorg log
# 01 Aug

X Window System Version 7.2.0 Release Date: Tue Jul 17 01:49:41 UTC 2007 X Protocol Version 11, Revision 0, Release 7.2 Build Operating System: openSUSE SUSE LINUX Current Operating System: Linux vaio 2.6.22-5-default #1 SMP 2007/07/16 06:54:15 UTC i686 Build Date: 17 July 2007 Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. Module Loader present Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. (==) Log file: "/var/log/Xorg.0.log", Time: Tue Jul 31 23:18:59 2007 (==) Using config file: "/etc/X11/xorg.conf" (**) Option "defaultserverlayout" "ServerLayout0" (**) ServerLayout "ServerLayout0" (**) |-->Screen "Screen0" (0) (**) | |-->Monitor "Monitor0" (**) | |-->Device "Device0" (**) |-->Input Device "Keyboard0" (**) |-->Input Device "Mouse0" (**) |-->Input Device "Stylus0" (**) |-->Input Device "Touchpad0" (WW) The directory "/usr/share/fonts/TTF/" does not exist. Entry deleted from font path. (WW) The directory "/usr/share/fonts/OTF" does not exist. Entry deleted from font path. (WW) The directory "/usr/share/fonts/Type1/" does not exist. Entry deleted from font path. (WW) The directory "/usr/share/fonts/100dpi/" does not exist. Entry deleted from font path. (WW) The directory "/usr/share/fonts/75dpi/" does not exist. Entry deleted from font path. (==) FontPath set to: /usr/share/fonts/misc/ (==) RgbPath set to "/usr/share/X11/rgb" (==) ModulePath set to "/usr/lib/xorg/modules/updates,/usr/lib/xorg/modules" (II) Open ACPI successful (/var/run/acpid.socket) (II) Loader magic: 0x81e6560 (II) Module ABI versions: X.Org ANSI C Emulation: 0.3 X.Org Video Driver: 1.2 X.Org XInput driver : 0.7 X.Org Server Extension : 0.3 X.Org Font Renderer : 0.5 (II) Loader running on linux (II) LoadModule: "pcidata" (II) Loading /usr/lib/xorg/modules//libpcidata.so (II) Module pcidata: vendor="X.Org Foundation" compiled for 7.2.0, module version = 1.0.0 ABI class: X.Org Video Driver, version 1.2 (++) using VT number 7 (II) PCI: PCI scan (all values are in hex) (II) PCI: 00:00:0: chip 8086,2a00 card 104d,9005 rev 0c class 06,00,00 hdr 00 (II) PCI: 00:02:0: chip 8086,2a02 card 104d,9005 rev 0c class 03,00,00 hdr 80 (II) PCI: 00:02:1: chip 8086,2a03 card 104d,9005 rev 0c class 03,80,00 hdr 80 (II) PCI: 00:1a:0: chip 8086,2834 card 104d,9005 rev 03 class 0c,03,00 hdr 80 (II) PCI: 00:1a:1: chip 8086,2835 card 104d,9005 rev 03 class 0c,03,00 hdr 00 (II) PCI: 00:1a:7: chip 8086,283a card 104d,9005 rev 03 class 0c,03,20 hdr 00 (II) PCI: 00:1b:0: chip 8086,284b card 104d,9005 rev 03 class 04,03,00 hdr 00 (II) PCI: 00:1c:0: chip 8086,283f card 0000,0000 rev 03 class 06,04,00 hdr 81 (II) PCI: 00:1c:1: chip 8086,2841 card 0000,0000 rev 03 class 06,04,00 hdr 81 (II) PCI: 00:1c:2: chip 8086,2843 card 0000,0000 rev 03 class 06,04,00 hdr 81 (II) PCI: 00:1c:4: chip 8086,2847 card 0000,0000 rev 03 class 06,04,00 hdr 81 (II) PCI: 00:1d:0: chip 8086,2830 card 104d,9005 rev 03 class 0c,03,00 hdr 80 (II) PCI: 00:1d:1: chip 8086,2831 card 104d,9005 rev 03 class 0c,03,00 hdr 00 (II) PCI: 00:1d:2: chip 8086,2832 card 104d,9005 rev 03 class 0c,03,00 hdr 00 (II) PCI: 00:1d:7: chip 8086,2836 card 104d,9005 rev 03 class 0c,03,20 hdr 00 (II) PCI: 00:1e:0: chip 8086,2448 card 0000,0000 rev f3 class 06,04,01 hdr 01 (II) PCI: 00:1f:0: chip 8086,2815 card 104d,9005 rev 03 class 06,01,00 hdr 80 (II) PCI: 00:1f:1: chip 8086,2850 card 104d,9005 rev 03 class 01,01,8a hdr 00 (II) PCI: 00:1f:2: chip 8086,2829 card 104d,9005 rev 03 class 01,06,01 hdr 00 (II) PCI: 00:1f:3: chip 8086,283e card 104d,9005 rev 03 class 0c,05,00 hdr 00 (II) PCI: 06:00:0: chip 8086,4229 card 8086,1100 rev 61 class 02,80,00 hdr 00 (II) PCI: 08:00:0: chip 11ab,4351 card 104d,9005 rev 16 class 02,00,00 hdr 00 (II) PCI: 09:03:0: chip 104c,8039 card 6000,0000 rev 00 class 06,07,00 hdr 82 (II) PCI: 09:03:1: chip 104c,803a card 104d,9005 rev 00 class 0c,00,10 hdr 80 (II) PCI: 09:03:2: chip 104c,803b card 104d,9005 rev 00 class 01,80,00 hdr 80 (II) PCI: End of PCI scan (II) Intel Bridge workaround enabled (II) Host-to-PCI bridge: (II) Bus 0: bridge is at (0:0:0), (0,0,10), BCTRL: 0x0008 (VGA_EN is set) (II) Bus 0 I/O range: [0] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[B] (II) Bus 0 non-prefetchable memory range: [0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B] (II) Bus 0 prefetchable memory range: [0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B] (II) PCI-to-PCI bridge: (II) Bus 2: bridge is at (0:28:0), (0,2,3), BCTRL: 0x0004 (VGA_EN is cleared) (II) Bus 2 I/O range: [0] -1 0 0x00002000 - 0x000020ff (0x100) IX[B] [1] -1 0 0x00002400 - 0x000024ff (0x100) IX[B] [2] -1 0 0x00002800 - 0x000028ff (0x100) IX[B] [3] -1 0 0x00002c00 - 0x00002cff (0x100) IX[B] (II) Bus 2 non-prefetchable memory range: [0] -1 0 0xf6000000 - 0xf7ffffff (0x2000000) MX[B] (II) Bus 2 prefetchable memory range: [0] -1 0 0xf0000000 - 0xf1ffffff (0x2000000) MX[B] (II) PCI-to-PCI bridge: (II) Bus 4: bridge is at (0:28:1), (0,4,5), BCTRL: 0x0004 (VGA_EN is cleared) (II) Bus 4 I/O range: [0] -1 0 0x00003000 - 0x000030ff (0x100) IX[B] [1] -1 0 0x00003400 - 0x000034ff (0x100) IX[B] [2] -1 0 0x00003800 - 0x000038ff (0x100) IX[B] [3] -1 0 0x00003c00 - 0x00003cff (0x100) IX[B] (II) Bus 4 non-prefetchable memory range: [0] -1 0 0xf8000000 - 0xf9ffffff (0x2000000) MX[B] (II) Bus 4 prefetchable memory range: [0] -1 0 0xf2000000 - 0xf3ffffff (0x2000000) MX[B] (II) PCI-to-PCI bridge: (II) Bus 6: bridge is at (0:28:2), (0,6,7), BCTRL: 0x0004 (VGA_EN is cleared) (II) Bus 6 I/O range: [0] -1 0 0x00004000 - 0x000040ff (0x100) IX[B] [1] -1 0 0x00004400 - 0x000044ff (0x100) IX[B] [2] -1 0 0x00004800 - 0x000048ff (0x100) IX[B] [3] -1 0 0x00004c00 - 0x00004cff (0x100) IX[B] (II) Bus 6 non-prefetchable memory range: [0] -1 0 0xfa000000 - 0xfbffffff (0x2000000) MX[B] (II) Bus 6 prefetchable memory range: [0] -1 0 0xf4000000 - 0xf5ffffff (0x2000000) MX[B] (II) PCI-to-PCI bridge: (II) Bus 8: bridge is at (0:28:4), (0,8,8), BCTRL: 0x0004 (VGA_EN is cleared) (II) Bus 8 I/O range: [0] -1 0 0x00005000 - 0x000050ff (0x100) IX[B] [1] -1 0 0x00005400 - 0x000054ff (0x100) IX[B] [2] -1 0 0x00005800 - 0x000058ff (0x100) IX[B] [3] -1 0 0x00005c00 - 0x00005cff (0x100) IX[B] (II) Bus 8 non-prefetchable memory range: [0] -1 0 0xfc200000 - 0xfc2fffff (0x100000) MX[B] (II) Subtractive PCI-to-PCI bridge: (II) Bus 9: bridge is at (0:30:0), (0,9,13), BCTRL: 0x0004 (VGA_EN is cleared) (II) Bus 9 I/O range: [0] -1 0 0x00006000 - 0x000060ff (0x100) IX[B] [1] -1 0 0x00006400 - 0x000064ff (0x100) IX[B] [2] -1 0 0x00006800 - 0x000068ff (0x100) IX[B] [3] -1 0 0x00006c00 - 0x00006cff (0x100) IX[B] (II) Bus 9 non-prefetchable memory range: [0] -1 0 0xfc300000 - 0xfc3fffff (0x100000) MX[B] (II) Bus 9 prefetchable memory range: [0] -1 0 0x88000000 - 0x8bffffff (0x4000000) MX[B] (II) PCI-to-ISA bridge: (II) Bus -1: bridge is at (0:31:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set) (II) PCI-to-CardBus bridge: (II) Bus 10: bridge is at (9:3:0), (9,10,13), BCTRL: 0x05c0 (VGA_EN is cleared) (II) Bus 10 I/O range: [0] -1 0 0x00006000 - 0x000060ff (0x100) IX[B] [1] -1 0 0x00006400 - 0x000064ff (0x100) IX[B] (II) Bus 10 prefetchable memory range: [0] -1 0 0x88000000 - 0x8bffffff (0x4000000) MX[B] (--) PCI:*(0:2:0) Intel Corporation Mobile Integrated Graphics Controller rev 12, Mem @ 0xfc000000/20, 0xd0000000/28, I/O @ 0x1800/3 (--) PCI: (0:2:1) Intel Corporation Mobile Integrated Graphics Controller rev 12, Mem @ 0xfc100000/20 (II) Addressable bus resource ranges are [0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B] [1] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[B] (II) OS-reported resource ranges: [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (II) Active PCI resource ranges: [0] -1 0 0xfc301000 - 0xfc301fff (0x1000) MX[B] [1] -1 0 0xfc304000 - 0xfc307fff (0x4000) MX[B] [2] -1 0 0xfc302000 - 0xfc3027ff (0x800) MX[B] [3] -1 0 0xfc200000 - 0xfc203fff (0x4000) MX[B] [4] -1 0 0xfa000000 - 0xfa001fff (0x2000) MX[B] [5] -1 0 0x8c000000 - 0x8c0000ff (0x100) MX[B] [6] -1 0 0xfc604000 - 0xfc6047ff (0x800) MX[B] [7] -1 0 0xfc604c00 - 0xfc604fff (0x400) MX[B] [8] -1 0 0xfc400000 - 0xfc403fff (0x4000) MX[B] [9] -1 0 0xfc604800 - 0xfc604bff (0x400) MX[B] [10] -1 0 0xfc100000 - 0xfc1fffff (0x100000) MX[B](B) [11] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[B](B) [12] -1 0 0xfc000000 - 0xfc0fffff (0x100000) MX[B](B) [13] -1 0 0x00005000 - 0x000050ff (0x100) IX[B] [14] -1 0 0x00001c20 - 0x00001c3f (0x20) IX[B] [15] -1 0 0x000018e0 - 0x000018ff (0x20) IX[B] [16] -1 0 0x000018d0 - 0x000018d3 (0x4) IX[B] [17] -1 0 0x000018d8 - 0x000018df (0x8) IX[B] [18] -1 0 0x000018d4 - 0x000018d7 (0x4) IX[B] [19] -1 0 0x00001c00 - 0x00001c07 (0x8) IX[B] [20] -1 0 0x00001810 - 0x0000181f (0x10) IX[B] [21] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[B] [22] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[B] [23] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[B] [24] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[B] [25] -1 0 0x000018a0 - 0x000018bf (0x20) IX[B] [26] -1 0 0x00001880 - 0x0000189f (0x20) IX[B] [27] -1 0 0x00001860 - 0x0000187f (0x20) IX[B] [28] -1 0 0x00001840 - 0x0000185f (0x20) IX[B] [29] -1 0 0x00001820 - 0x0000183f (0x20) IX[B] [30] -1 0 0x00001800 - 0x00001807 (0x8) IX[B](B) (II) Active PCI resource ranges after removing overlaps: [0] -1 0 0xfc301000 - 0xfc301fff (0x1000) MX[B] [1] -1 0 0xfc304000 - 0xfc307fff (0x4000) MX[B] [2] -1 0 0xfc302000 - 0xfc3027ff (0x800) MX[B] [3] -1 0 0xfc200000 - 0xfc203fff (0x4000) MX[B] [4] -1 0 0xfa000000 - 0xfa001fff (0x2000) MX[B] [5] -1 0 0x8c000000 - 0x8c0000ff (0x100) MX[B] [6] -1 0 0xfc604000 - 0xfc6047ff (0x800) MX[B] [7] -1 0 0xfc604c00 - 0xfc604fff (0x400) MX[B] [8] -1 0 0xfc400000 - 0xfc403fff (0x4000) MX[B] [9] -1 0 0xfc604800 - 0xfc604bff (0x400) MX[B] [10] -1 0 0xfc100000 - 0xfc1fffff (0x100000) MX[B](B) [11] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[B](B) [12] -1 0 0xfc000000 - 0xfc0fffff (0x100000) MX[B](B) [13] -1 0 0x00005000 - 0x000050ff (0x100) IX[B] [14] -1 0 0x00001c20 - 0x00001c3f (0x20) IX[B] [15] -1 0 0x000018e0 - 0x000018ff (0x20) IX[B] [16] -1 0 0x000018d0 - 0x000018d3 (0x4) IX[B] [17] -1 0 0x000018d8 - 0x000018df (0x8) IX[B] [18] -1 0 0x000018d4 - 0x000018d7 (0x4) IX[B] [19] -1 0 0x00001c00 - 0x00001c07 (0x8) IX[B] [20] -1 0 0x00001810 - 0x0000181f (0x10) IX[B] [21] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[B] [22] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[B] [23] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[B] [24] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[B] [25] -1 0 0x000018a0 - 0x000018bf (0x20) IX[B] [26] -1 0 0x00001880 - 0x0000189f (0x20) IX[B] [27] -1 0 0x00001860 - 0x0000187f (0x20) IX[B] [28] -1 0 0x00001840 - 0x0000185f (0x20) IX[B] [29] -1 0 0x00001820 - 0x0000183f (0x20) IX[B] [30] -1 0 0x00001800 - 0x00001807 (0x8) IX[B](B) (II) OS-reported resource ranges after removing overlaps with PCI: [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (II) All system resource ranges: [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [4] -1 0 0xfc301000 - 0xfc301fff (0x1000) MX[B] [5] -1 0 0xfc304000 - 0xfc307fff (0x4000) MX[B] [6] -1 0 0xfc302000 - 0xfc3027ff (0x800) MX[B] [7] -1 0 0xfc200000 - 0xfc203fff (0x4000) MX[B] [8] -1 0 0xfa000000 - 0xfa001fff (0x2000) MX[B] [9] -1 0 0x8c000000 - 0x8c0000ff (0x100) MX[B] [10] -1 0 0xfc604000 - 0xfc6047ff (0x800) MX[B] [11] -1 0 0xfc604c00 - 0xfc604fff (0x400) MX[B] [12] -1 0 0xfc400000 - 0xfc403fff (0x4000) MX[B] [13] -1 0 0xfc604800 - 0xfc604bff (0x400) MX[B] [14] -1 0 0xfc100000 - 0xfc1fffff (0x100000) MX[B](B) [15] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[B](B) [16] -1 0 0xfc000000 - 0xfc0fffff (0x100000) MX[B](B) [17] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [18] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] [19] -1 0 0x00005000 - 0x000050ff (0x100) IX[B] [20] -1 0 0x00001c20 - 0x00001c3f (0x20) IX[B] [21] -1 0 0x000018e0 - 0x000018ff (0x20) IX[B] [22] -1 0 0x000018d0 - 0x000018d3 (0x4) IX[B] [23] -1 0 0x000018d8 - 0x000018df (0x8) IX[B] [24] -1 0 0x000018d4 - 0x000018d7 (0x4) IX[B] [25] -1 0 0x00001c00 - 0x00001c07 (0x8) IX[B] [26] -1 0 0x00001810 - 0x0000181f (0x10) IX[B] [27] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[B] [28] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[B] [29] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[B] [30] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[B] [31] -1 0 0x000018a0 - 0x000018bf (0x20) IX[B] [32] -1 0 0x00001880 - 0x0000189f (0x20) IX[B] [33] -1 0 0x00001860 - 0x0000187f (0x20) IX[B] [34] -1 0 0x00001840 - 0x0000185f (0x20) IX[B] [35] -1 0 0x00001820 - 0x0000183f (0x20) IX[B] [36] -1 0 0x00001800 - 0x00001807 (0x8) IX[B](B) (II) LoadModule: "extmod" (II) Loading /usr/lib/xorg/modules//extensions/libextmod.so (II) Module extmod: vendor="X.Org Foundation" compiled for 7.2.0, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 0.3 (II) Loading extension SHAPE (II) Loading extension MIT-SUNDRY-NONSTANDARD (II) Loading extension BIG-REQUESTS (II) Loading extension SYNC (II) Loading extension MIT-SCREEN-SAVER (II) Loading extension XC-MISC (II) Loading extension XFree86-VidModeExtension (II) Loading extension XFree86-Misc (II) Loading extension XFree86-DGA (II) Loading extension DPMS (II) Loading extension TOG-CUP (II) Loading extension Extended-Visual-Information (II) Loading extension XVideo (II) Loading extension XVideo-MotionCompensation (II) Loading extension X-Resource (II) LoadModule: "dbe" (II) Loading /usr/lib/xorg/modules//extensions/libdbe.so (II) Module dbe: vendor="X.Org Foundation" compiled for 7.2.0, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 0.3 (II) Loading extension DOUBLE-BUFFER (II) LoadModule: "glx" (II) Loading /usr/lib/xorg/modules//extensions/libglx.so (II) Module glx: vendor="X.Org Foundation" compiled for 7.2.0, module version = 1.0.0 ABI class: X.Org Server Extension, version 0.3 (==) AIGLX enabled (II) Loading extension GLX (II) LoadModule: "freetype" (II) Loading /usr/lib/xorg/modules//fonts/libfreetype.so (II) Module freetype: vendor="X.Org Foundation & the After X-TT Project" compiled for 7.2.0, module version = 2.1.0 Module class: X.Org Font Renderer ABI class: X.Org Font Renderer, version 0.5 (II) Loading font FreeType (II) LoadModule: "type1" (II) Loading /usr/lib/xorg/modules//fonts/libtype1.so (II) Module type1: vendor="X.Org Foundation" compiled for 7.2.0, module version = 1.0.2 Module class: X.Org Font Renderer ABI class: X.Org Font Renderer, version 0.5 (II) Loading font Type1 (II) LoadModule: "record" (II) Loading /usr/lib/xorg/modules//extensions/librecord.so (II) Module record: vendor="X.Org Foundation" compiled for 7.2.0, module version = 1.13.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 0.3 (II) Loading extension RECORD (II) LoadModule: "dri" (II) Loading /usr/lib/xorg/modules//extensions/libdri.so (II) Module dri: vendor="X.Org Foundation" compiled for 7.2.0, module version = 1.0.0 ABI class: X.Org Server Extension, version 0.3 (II) Loading extension XFree86-DRI (II) LoadModule: "intel" (II) Loading /usr/lib/xorg/modules//drivers/intel_drv.so (II) Module intel: vendor="X.Org Foundation" compiled for 7.2.0, module version = 2.1.0 Module class: X.Org Video Driver ABI class: X.Org Video Driver, version 1.2 (II) LoadModule: "kbd" (II) Loading /usr/lib/xorg/modules//input/kbd_drv.so (II) Module kbd: vendor="X.Org Foundation" compiled for 7.2.0, module version = 1.1.0 Module class: X.Org XInput Driver ABI class: X.Org XInput driver, version 0.7 (II) LoadModule: "mouse" (II) Loading /usr/lib/xorg/modules//input/mouse_drv.so (II) Module mouse: vendor="X.Org Foundation" compiled for 7.2.0, module version = 1.1.1 Module class: X.Org XInput Driver ABI class: X.Org XInput driver, version 0.7 (II) LoadModule: "wacom" (WW) Warning, couldn't open module wacom (II) UnloadModule: "wacom" (EE) Failed to load module "wacom" (module does not exist, 0) (II) LoadModule: "synaptics" (II) Loading /usr/lib/xorg/modules//input/synaptics_drv.so (II) Module synaptics: vendor="X.Org Foundation" compiled for 4.3.99.902, module version = 1.0.0 Module class: X.Org XInput Driver ABI class: X.Org XInput driver, version 0.7 (II) intel: Driver for Intel Integrated Graphics Chipsets: i810, i810-dc100, i810e, i815, i830M, 845G, 852GM/855GM, 865G, 915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, 965G, 965G, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33 (II) Primary Device is: PCI 00:02:0 (WW) intel: No matching Device section for instance (BusID PCI:0:2:1) found (--) Chipset 965GM found (II) resource ranges after xf86ClaimFixedResources() call: [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [4] -1 0 0xfc301000 - 0xfc301fff (0x1000) MX[B] [5] -1 0 0xfc304000 - 0xfc307fff (0x4000) MX[B] [6] -1 0 0xfc302000 - 0xfc3027ff (0x800) MX[B] [7] -1 0 0xfc200000 - 0xfc203fff (0x4000) MX[B] [8] -1 0 0xfa000000 - 0xfa001fff (0x2000) MX[B] [9] -1 0 0x8c000000 - 0x8c0000ff (0x100) MX[B] [10] -1 0 0xfc604000 - 0xfc6047ff (0x800) MX[B] [11] -1 0 0xfc604c00 - 0xfc604fff (0x400) MX[B] [12] -1 0 0xfc400000 - 0xfc403fff (0x4000) MX[B] [13] -1 0 0xfc604800 - 0xfc604bff (0x400) MX[B] [14] -1 0 0xfc100000 - 0xfc1fffff (0x100000) MX[B](B) [15] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[B](B) [16] -1 0 0xfc000000 - 0xfc0fffff (0x100000) MX[B](B) [17] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [18] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] [19] -1 0 0x00005000 - 0x000050ff (0x100) IX[B] [20] -1 0 0x00001c20 - 0x00001c3f (0x20) IX[B] [21] -1 0 0x000018e0 - 0x000018ff (0x20) IX[B] [22] -1 0 0x000018d0 - 0x000018d3 (0x4) IX[B] [23] -1 0 0x000018d8 - 0x000018df (0x8) IX[B] [24] -1 0 0x000018d4 - 0x000018d7 (0x4) IX[B] [25] -1 0 0x00001c00 - 0x00001c07 (0x8) IX[B] [26] -1 0 0x00001810 - 0x0000181f (0x10) IX[B] [27] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[B] [28] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[B] [29] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[B] [30] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[B] [31] -1 0 0x000018a0 - 0x000018bf (0x20) IX[B] [32] -1 0 0x00001880 - 0x0000189f (0x20) IX[B] [33] -1 0 0x00001860 - 0x0000187f (0x20) IX[B] [34] -1 0 0x00001840 - 0x0000185f (0x20) IX[B] [35] -1 0 0x00001820 - 0x0000183f (0x20) IX[B] [36] -1 0 0x00001800 - 0x00001807 (0x8) IX[B](B) (II) resource ranges after probing: [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [4] -1 0 0xfc301000 - 0xfc301fff (0x1000) MX[B] [5] -1 0 0xfc304000 - 0xfc307fff (0x4000) MX[B] [6] -1 0 0xfc302000 - 0xfc3027ff (0x800) MX[B] [7] -1 0 0xfc200000 - 0xfc203fff (0x4000) MX[B] [8] -1 0 0xfa000000 - 0xfa001fff (0x2000) MX[B] [9] -1 0 0x8c000000 - 0x8c0000ff (0x100) MX[B] [10] -1 0 0xfc604000 - 0xfc6047ff (0x800) MX[B] [11] -1 0 0xfc604c00 - 0xfc604fff (0x400) MX[B] [12] -1 0 0xfc400000 - 0xfc403fff (0x4000) MX[B] [13] -1 0 0xfc604800 - 0xfc604bff (0x400) MX[B] [14] -1 0 0xfc100000 - 0xfc1fffff (0x100000) MX[B](B) [15] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[B](B) [16] -1 0 0xfc000000 - 0xfc0fffff (0x100000) MX[B](B) [17] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B] [18] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B] [19] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B] [20] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [21] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] [22] -1 0 0x00005000 - 0x000050ff (0x100) IX[B] [23] -1 0 0x00001c20 - 0x00001c3f (0x20) IX[B] [24] -1 0 0x000018e0 - 0x000018ff (0x20) IX[B] [25] -1 0 0x000018d0 - 0x000018d3 (0x4) IX[B] [26] -1 0 0x000018d8 - 0x000018df (0x8) IX[B] [27] -1 0 0x000018d4 - 0x000018d7 (0x4) IX[B] [28] -1 0 0x00001c00 - 0x00001c07 (0x8) IX[B] [29] -1 0 0x00001810 - 0x0000181f (0x10) IX[B] [30] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[B] [31] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[B] [32] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[B] [33] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[B] [34] -1 0 0x000018a0 - 0x000018bf (0x20) IX[B] [35] -1 0 0x00001880 - 0x0000189f (0x20) IX[B] [36] -1 0 0x00001860 - 0x0000187f (0x20) IX[B] [37] -1 0 0x00001840 - 0x0000185f (0x20) IX[B] [38] -1 0 0x00001820 - 0x0000183f (0x20) IX[B] [39] -1 0 0x00001800 - 0x00001807 (0x8) IX[B](B) [40] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B] [41] 0 0 0x000003c0 - 0x000003df (0x20) IS[B] (II) Setting vga for screen 0. (II) Loading sub module "int10" (II) LoadModule: "int10" (II) Loading /usr/lib/xorg/modules//libint10.so (II) Module int10: vendor="X.Org Foundation" compiled for 7.2.0, module version = 1.0.0 ABI class: X.Org Video Driver, version 1.2 (II) Loading sub module "vbe" (II) LoadModule: "vbe" (II) Loading /usr/lib/xorg/modules//libvbe.so (II) Module vbe: vendor="X.Org Foundation" compiled for 7.2.0, module version = 1.1.0 ABI class: X.Org Video Driver, version 1.2 (II) Loading sub module "vgahw" (II) LoadModule: "vgahw" (II) Loading /usr/lib/xorg/modules//libvgahw.so (II) Module vgahw: vendor="X.Org Foundation" compiled for 7.2.0, module version = 0.1.0 ABI class: X.Org Video Driver, version 1.2 (**) intel(0): Depth 24, (--) framebuffer bpp 32 (==) intel(0): RGB weight 888 (==) intel(0): Default visual is TrueColor (II) intel(0): Integrated Graphics Chipset: Intel(R) 965GM (--) intel(0): Chipset: "965GM" (--) intel(0): Linear framebuffer at 0xD0000000 (--) intel(0): IO registers at addr 0xFC000000 (II) intel(0): 2 display pipes available. (==) intel(0): Using XAA for acceleration (--) intel(0): Will try to allocate texture pool for old Mesa 3D driver. (II) intel(0): Will try to reserve 32768 kiB of AGP aperture space for the DRM memory manager. (II) Loading sub module "ddc" (II) LoadModule: "ddc"(II) Module already built-in (II) Loading sub module "i2c" (II) LoadModule: "i2c"(II) Module already built-in (II) intel(0): Output VGA using monitor section Monitor0 (II) intel(0): I2C bus "CRTDDC_A" initialized. (II) intel(0): Output LVDS has no monitor section (II) intel(0): I2C bus "LVDSDDC_C" initialized. (II) intel(0): I2C device "LVDSDDC_C:ddc2" registered at address 0xA0. (II) intel(0): I2C device "LVDSDDC_C:ddc2" removed. (II) intel(0): EDID for output LVDS (II) Loading sub module "int10" (II) LoadModule: "int10" (II) Reloading /usr/lib/xorg/modules//libint10.so (II) intel(0): initializing int10 (WW) intel(0): Bad V_BIOS checksum (II) intel(0): Primary V_BIOS segment is: 0xc000 (II) intel(0): VESA BIOS detected (II) intel(0): VESA VBE Version 3.0 (II) intel(0): VESA VBE Total Mem: 7616 kB (II) intel(0): VESA VBE OEM: Intel(r)Crestline Graphics Chip Accelerated VGA BIOS (II) intel(0): VESA VBE OEM Software Rev: 1.0 (II) intel(0): VESA VBE OEM Vendor: Intel Corporation (II) intel(0): VESA VBE OEM Product: Intel(r)Crestline Graphics Controller (II) intel(0): VESA VBE OEM Product Rev: Hardware Version 0.0 (II) intel(0): I2C bus "SDVOCTRL_E for SDVOB" initialized. (II) intel(0): I2C device "SDVOCTRL_E for SDVOB:SDVO Controller B" registered at address 0x70. (II) intel(0): No SDVO device found on SDVOB (II) intel(0): I2C device "SDVOCTRL_E for SDVOB:SDVO Controller B" removed. (II) intel(0): I2C bus "SDVOCTRL_E for SDVOB" removed. (II) intel(0): I2C bus "SDVOCTRL_E for SDVOC" initialized. (II) intel(0): I2C device "SDVOCTRL_E for SDVOC:SDVO Controller C" registered at address 0x72. (II) intel(0): No SDVO device found on SDVOC (II) intel(0): I2C device "SDVOCTRL_E for SDVOC:SDVO Controller C" removed. (II) intel(0): I2C bus "SDVOCTRL_E for SDVOC" removed. (II) intel(0): Output TV has no monitor section (II) intel(0): Output VGA connected (II) intel(0): I2C device "CRTDDC_A:ddc2" registered at address 0xA0. (II) intel(0): I2C device "CRTDDC_A:ddc2" removed. (II) intel(0): EDID for output VGA (II) intel(0): Manufacturer: SAM Model: 11f Serial#: 1296707897 (II) intel(0): Year: 2006 Week: 1 (II) intel(0): EDID Version: 1.3 (II) intel(0): Analog Display Input, Input Voltage Level: 0.700/0.700 V (II) intel(0): Sync: Separate Composite (II) intel(0): Max H-Image Size [cm]: horiz.: 38 vert.: 30 (II) intel(0): Gamma: 2.20 (II) intel(0): DPMS capabilities: Off; RGB/Color Display (II) intel(0): First detailed timing is preferred mode (II) intel(0): redX: 0.634 redY: 0.354 greenX: 0.304 greenY: 0.581 (II) intel(0): blueX: 0.143 blueY: 0.102 whiteX: 0.310 whiteY: 0.330 (II) intel(0): Supported VESA Video Modes: (II) intel(0): 720x400@70Hz (II) intel(0): 640x480@60Hz (II) intel(0): 640x480@67Hz (II) intel(0): 640x480@72Hz (II) intel(0): 640x480@75Hz (II) intel(0): 800x600@56Hz (II) intel(0): 800x600@60Hz (II) intel(0): 800x600@72Hz (II) intel(0): 800x600@75Hz (II) intel(0): 832x624@75Hz (II) intel(0): 1024x768@60Hz (II) intel(0): 1024x768@70Hz (II) intel(0): 1024x768@75Hz (II) intel(0): 1280x1024@75Hz (II) intel(0): 1152x870@75Hz (II) intel(0): Manufacturer's mask: 0 (II) intel(0): Supported Future Video Modes: (II) intel(0): #0: hsize: 1280 vsize 1024 refresh: 60 vid: 32897 (II) intel(0): #1: hsize: 1152 vsize 864 refresh: 75 vid: 20337 (II) intel(0): Supported additional Video Mode: (II) intel(0): clock: 108.0 MHz Image Size: 376 x 301 mm (II) intel(0): h_active: 1280 h_sync: 1328 h_sync_end 1440 h_blank_end 1688 h_border: 0 (II) intel(0): v_active: 1024 v_sync: 1025 v_sync_end 1028 v_blanking: 1066 v_border: 0 (II) intel(0): Ranges: V min: 56 V max: 75 Hz, H min: 30 H max: 81 kHz, PixClock max 140 MHz (II) intel(0): Monitor name: SyncMaster (II) intel(0): Serial No: H9NA103639 (II) intel(0): EDID (in hex): (II) intel(0): 00ffffffffffff004c2d1f0139314a4d (II) intel(0): 011001036c261e782a6f86a25a4d9424 (II) intel(0): 1a4f54bfef808180714f010101010101 (II) intel(0): 010101010101302a009851002a403070 (II) intel(0): 1300782d1100001e000000fd00384b1e (II) intel(0): 510e000a202020202020000000fc0053 (II) intel(0): 796e634d61737465720a2020000000ff (II) intel(0): 0048394e413130333633390a2020007e (II) intel(0): Using EDID range info for horizontal sync (II) intel(0): Using vrefresh ranges from config file (II) intel(0): Printing DDC gathered Modelines: (II) intel(0): Modeline "800x600" 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (II) intel(0): Modeline "800x600" 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (II) intel(0): Modeline "640x480" 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (II) intel(0): Modeline "640x480" 31.50 640 664 704 832 480 489 491 520 -hsync -vsync (II) intel(0): Modeline "640x480" 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (II) intel(0): Modeline "640x480" 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (II) intel(0): Modeline "720x400" 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (II) intel(0): Modeline "1280x1024" 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (II) intel(0): Modeline "1024x768" 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (II) intel(0): Modeline "1024x768" 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (II) intel(0): Modeline "1024x768" 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (II) intel(0): Modeline "832x624" 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (II) intel(0): Modeline "800x600" 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (II) intel(0): Modeline "800x600" 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (II) intel(0): Modeline "1152x864" 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (II) intel(0): Modeline "1280x1024" 109.00 1280 1368 1496 1712 1024 1027 1034 1063 -hsync +vsync (II) intel(0): Modeline "1152x864" 104.00 1152 1224 1344 1536 864 867 871 905 -hsync +vsync (II) intel(0): Modeline "1280x1024" 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (II) intel(0): EDID vendor "SAM", prod id 287 (II) intel(0): Not using mode "1280x1024" (vrefresh out of range) (II) intel(0): Not using mode "800x600" (vrefresh out of range) (II) intel(0): Not using mode "800x600" (vrefresh out of range) (II) intel(0): Not using mode "640x480" (vrefresh out of range) (II) intel(0): Not using mode "640x480" (vrefresh out of range) (II) intel(0): Not using mode "640x480" (vrefresh out of range) (II) intel(0): Not using mode "640x480" (vrefresh out of range) (II) intel(0): Not using mode "720x400" (vrefresh out of range) (II) intel(0): Not using mode "1280x1024" (vrefresh out of range) (II) intel(0): Not using mode "1024x768" (vrefresh out of range) (II) intel(0): Not using mode "1024x768" (vrefresh out of range) (II) intel(0): Not using mode "1024x768" (vrefresh out of range) (II) intel(0): Not using mode "832x624" (vrefresh out of range) (II) intel(0): Not using mode "800x600" (vrefresh out of range) (II) intel(0): Not using mode "800x600" (vrefresh out of range) (II) intel(0): Not using mode "1152x864" (vrefresh out of range) (II) intel(0): Not using mode "1280x1024" (vrefresh out of range) (II) intel(0): Not using mode "1152x864" (vrefresh out of range) (II) intel(0): Not using default mode "640x350" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "640x400" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "720x400" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "640x480" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "640x480" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "640x480" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "640x480" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "800x600" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "800x600" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "800x600" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "800x600" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "800x600" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "1024x768" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "1024x768" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "1024x768" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "1024x768" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "1152x864" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "1280x960" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "1280x960" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "1280x1024" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "1280x1024" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "1280x1024" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "1600x1200" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "1600x1200" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "1600x1200" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "1600x1200" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "1600x1200" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "1792x1344" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "1792x1344" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "1856x1392" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "1856x1392" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "1920x1440" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "1920x1440" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "832x624" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "1152x768" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "1400x1050" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "1400x1050" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "1600x1024" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "1920x1440" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "2048x1536" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "2048x1536" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "2048x1536" (bad mode clock/interlace/doublescan) (II) intel(0): No remaining probed modes for output VGA (II) intel(0): Output LVDS connected (II) intel(0): I2C device "LVDSDDC_C:ddc2" registered at address 0xA0. (II) intel(0): I2C device "LVDSDDC_C:ddc2" removed. (II) intel(0): EDID for output LVDS (II) intel(0): Not using default mode "1024x768" (exceeds panel dimensions) (II) intel(0): Not using default mode "1024x768" (exceeds panel dimensions) (II) intel(0): Not using default mode "1024x768" (exceeds panel dimensions) (II) intel(0): Not using default mode "1024x768" (exceeds panel dimensions) (II) intel(0): Not using default mode "1152x864" (exceeds panel dimensions) (II) intel(0): Not using default mode "1280x960" (exceeds panel dimensions) (II) intel(0): Not using default mode "1280x960" (exceeds panel dimensions) (II) intel(0): Not using default mode "1280x1024" (exceeds panel dimensions) (II) intel(0): Not using default mode "1280x1024" (exceeds panel dimensions) (II) intel(0): Not using default mode "1280x1024" (exceeds panel dimensions) (II) intel(0): Not using default mode "1600x1200" (exceeds panel dimensions) (II) intel(0): Not using default mode "1600x1200" (exceeds panel dimensions) (II) intel(0): Not using default mode "1600x1200" (exceeds panel dimensions) (II) intel(0): Not using default mode "1600x1200" (exceeds panel dimensions) (II) intel(0): Not using default mode "1600x1200" (exceeds panel dimensions) (II) intel(0): Not using default mode "1792x1344" (exceeds panel dimensions) (II) intel(0): Not using default mode "1792x1344" (exceeds panel dimensions) (II) intel(0): Not using default mode "1856x1392" (exceeds panel dimensions) (II) intel(0): Not using default mode "1856x1392" (exceeds panel dimensions) (II) intel(0): Not using default mode "1920x1440" (exceeds panel dimensions) (II) intel(0): Not using default mode "1920x1440" (exceeds panel dimensions) (II) intel(0): Not using default mode "832x624" (exceeds panel dimensions) (II) intel(0): Not using default mode "1152x768" (exceeds panel dimensions) (II) intel(0): Not using default mode "1400x1050" (exceeds panel dimensions) (II) intel(0): Not using default mode "1400x1050" (exceeds panel dimensions) (II) intel(0): Not using default mode "1600x1024" (exceeds panel dimensions) (II) intel(0): Not using default mode "1920x1440" (exceeds panel dimensions) (II) intel(0): Not using default mode "2048x1536" (exceeds panel dimensions) (II) intel(0): Not using default mode "2048x1536" (exceeds panel dimensions) (II) intel(0): Not using default mode "2048x1536" (exceeds panel dimensions) (II) intel(0): Printing probed modes for output LVDS (II) intel(0): Modeline "800x600"x57.7 66.28 800 1056 1104 1410 600 704 707 815 (47.0 kHz) (II) intel(0): Modeline "800x600"x85.1 56.30 800 832 896 1048 600 601 604 631 +hsync +vsync (53.7 kHz) (II) intel(0): Modeline "800x600"x72.2 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz) (II) intel(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz) (II) intel(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz) (II) intel(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz) (II) intel(0): Modeline "640x480"x85.0 36.00 640 696 752 832 480 481 484 509 -hsync -vsync (43.3 kHz) (II) intel(0): Modeline "640x480"x72.8 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz) (II) intel(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz) (II) intel(0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz) (II) intel(0): Modeline "720x400"x85.0 35.50 720 756 828 936 400 401 404 446 -hsync +vsync (37.9 kHz) (II) intel(0): Modeline "640x400"x85.1 31.50 640 672 736 832 400 401 404 445 -hsync +vsync (37.9 kHz) (II) intel(0): Modeline "640x350"x85.1 31.50 640 672 736 832 350 382 385 445 +hsync -vsync (37.9 kHz) (II) intel(0): Output TV disconnected (II) intel(0): EDID for output TV (II) intel(0): Output VGA connected (II) intel(0): Output LVDS connected (II) intel(0): Output TV disconnected (EE) intel(0): Output VGA enabled but has no modes (II) intel(0): Output LVDS using initial mode 800x600 (II) intel(0): Monitoring connected displays enabled (II) intel(0): detected 512 kB GTT. (II) intel(0): detected 7676 kB stolen memory. (==) intel(0): video overlay key set to 0x101fe (==) intel(0): Will not try to enable page flipping (==) intel(0): Triple buffering disabled (**) intel(0): Using gamma correction (0.8, 0.6, 0.6) (**) intel(0): Display dimensions: (380, 300) mm (**) intel(0): DPI set to (53, 67) (II) Loading sub module "fb" (II) LoadModule: "fb" (II) Loading /usr/lib/xorg/modules//libfb.so (II) Module fb: vendor="X.Org Foundation" compiled for 7.2.0, module version = 1.0.0 ABI class: X.Org ANSI C Emulation, version 0.3 (II) Loading sub module "xaa" (II) LoadModule: "xaa" (II) Loading /usr/lib/xorg/modules//libxaa.so (II) Module xaa: vendor="X.Org Foundation" compiled for 7.2.0, module version = 1.2.0 ABI class: X.Org Video Driver, version 1.2 (II) Loading sub module "ramdac" (II) LoadModule: "ramdac"(II) Module already built-in (II) intel(0): Comparing regs from server start up to After PreInit (WW) intel(0): Register 0x61200 (PP_STATUS) changed from 0x80000008 to 0xc0000008 (WW) intel(0): PP_STATUS before: on, not ready, sequencing idle (WW) intel(0): PP_STATUS after: on, ready, sequencing idle (==) Depth 24 pixmap format is 32 bpp (II) do I need RAC? No, I don't. (II) resource ranges after preInit: [0] 0 0 0xd0000000 - 0xdfffffff (0x10000000) MS[B] [1] 0 0 0xfc000000 - 0xfc0fffff (0x100000) MS[B] [2] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [3] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [4] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [5] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [6] -1 0 0xfc301000 - 0xfc301fff (0x1000) MX[B] [7] -1 0 0xfc304000 - 0xfc307fff (0x4000) MX[B] [8] -1 0 0xfc302000 - 0xfc3027ff (0x800) MX[B] [9] -1 0 0xfc200000 - 0xfc203fff (0x4000) MX[B] [10] -1 0 0xfa000000 - 0xfa001fff (0x2000) MX[B] [11] -1 0 0x8c000000 - 0x8c0000ff (0x100) MX[B] [12] -1 0 0xfc604000 - 0xfc6047ff (0x800) MX[B] [13] -1 0 0xfc604c00 - 0xfc604fff (0x400) MX[B] [14] -1 0 0xfc400000 - 0xfc403fff (0x4000) MX[B] [15] -1 0 0xfc604800 - 0xfc604bff (0x400) MX[B] [16] -1 0 0xfc100000 - 0xfc1fffff (0x100000) MX[B](B) [17] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[B](B) [18] -1 0 0xfc000000 - 0xfc0fffff (0x100000) MX[B](B) [19] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B](OprD) [20] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B](OprD) [21] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B](OprD) [22] 0 0 0x00001800 - 0x00001807 (0x8) IS[B] [23] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [24] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] [25] -1 0 0x00005000 - 0x000050ff (0x100) IX[B] [26] -1 0 0x00001c20 - 0x00001c3f (0x20) IX[B] [27] -1 0 0x000018e0 - 0x000018ff (0x20) IX[B] [28] -1 0 0x000018d0 - 0x000018d3 (0x4) IX[B] [29] -1 0 0x000018d8 - 0x000018df (0x8) IX[B] [30] -1 0 0x000018d4 - 0x000018d7 (0x4) IX[B] [31] -1 0 0x00001c00 - 0x00001c07 (0x8) IX[B] [32] -1 0 0x00001810 - 0x0000181f (0x10) IX[B] [33] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[B] [34] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[B] [35] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[B] [36] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[B] [37] -1 0 0x000018a0 - 0x000018bf (0x20) IX[B] [38] -1 0 0x00001880 - 0x0000189f (0x20) IX[B] [39] -1 0 0x00001860 - 0x0000187f (0x20) IX[B] [40] -1 0 0x00001840 - 0x0000185f (0x20) IX[B] [41] -1 0 0x00001820 - 0x0000183f (0x20) IX[B] [42] -1 0 0x00001800 - 0x00001807 (0x8) IX[B](B) [43] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B](OprU) [44] 0 0 0x000003c0 - 0x000003df (0x20) IS[B](OprU) (II) intel(0): Kernel reported 488960 total, 1 used (II) intel(0): I830CheckAvailableMemory: 1955836 kB available (==) intel(0): VideoRam: 262144 KB (II) intel(0): Attempting memory allocation with tiled buffers and large DRI memory manager reservation: (II) intel(0): Allocating 4732 scanlines for pixmap cache (II) intel(0): Success. (II) intel(0): Increasing the scanline pitch to allow tiling mode (832 -> 896). (II) intel(0): Memory allocation layout: (II) intel(0): 0x00000000-0x0001ffff: ring buffer (128 kB) (II) intel(0): 0x00020000-0x00029fff: HW cursors (40 kB) (II) intel(0): 0x0002a000-0x00031fff: logical 3D context (32 kB) (II) intel(0): 0x00032000-0x00041fff: exa G965 state buffer (64 kB) (II) intel(0): 0x00050000-0x01338fff: front buffer (19364 kB) (II) intel(0): 0x0077f000: end of stolen memory (II) intel(0): 0x01339000-0x01348fff: xaa scratch (64 kB) (II) intel(0): 0x01349000-0x01604fff: back buffer (2800 kB) (II) intel(0): 0x01605000-0x018c0fff: depth buffer (2800 kB) (II) intel(0): 0x018c1000-0x038c0fff: textures (32768 kB) (II) intel(0): 0x10000000: end of aperture (II) intel(0): front buffer is not tiled (II) intel(0): back buffer is tiled (II) intel(0): depth buffer is tiled drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is -1, (No such device or address) drmOpenDevice: open result is -1, (No such device or address) drmOpenDevice: Open failed drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is -1, (No such device or address) drmOpenDevice: open result is -1, (No such device or address) drmOpenDevice: Open failed drmOpenByBusid: Searching for BusID pci:0000:00:02.0 drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 8, (OK) drmOpenByBusid: drmOpenMinor returns 8 drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0 (II) intel(0): [drm] loaded kernel module for "i915" driver (II) intel(0): [drm] DRM interface version 1.3 (II) intel(0): [drm] created "i915" driver at busid "pci:0000:00:02.0" (II) intel(0): [drm] added 8192 byte SAREA at 0xf8852000 (II) intel(0): [drm] mapped SAREA 0xf8852000 to 0xb7f1d000 (II) intel(0): [drm] framebuffer handle = 0xd0050000 (II) intel(0): [drm] added 1 reserved context for kernel (II) intel(0): [drm] Registers = 0xfc000000 (II) intel(0): [drm] ring buffer = 0xd0000000 (II) intel(0): [drm] init sarea width,height = 800 x 800 (pitch 896) (II) intel(0): [drm] Back Buffer = 0xd1349000 (II) intel(0): [drm] Depth Buffer = 0xd1605000 (II) intel(0): [drm] textures = 0xd18c1000 (II) intel(0): [drm] Initialized kernel agp heap manager, 33554432 (II) intel(0): [dri] visual configs initialized (II) intel(0): Page Flipping disabled (==) intel(0): Write-combining range (0xd0000000,0x10000000) (II) intel(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000 (II) intel(0): Using XFree86 Acceleration Architecture (XAA) Screen to screen bit blits Solid filled rectangles 8x8 mono pattern filled rectangles Indirect CPU to Screen color expansion Solid Horizontal and Vertical Lines Offscreen Pixmaps Setting up tile and stipple cache: 32 128x128 slots 26 256x256 slots 7 512x512 slots (==) intel(0): Backing store disabled (==) intel(0): Silken mouse enabled (II) intel(0): Initializing HW Cursor (II) intel(0): xf86BindGARTMemory: bind key 0 at 0x0077f000 (pgoffset 1919) (II) intel(0): xf86BindGARTMemory: bind key 1 at 0x01339000 (pgoffset 4921) (II) intel(0): xf86BindGARTMemory: bind key 2 at 0x01349000 (pgoffset 4937) (II) intel(0): xf86BindGARTMemory: bind key 3 at 0x01605000 (pgoffset 5637) (II) intel(0): xf86BindGARTMemory: bind key 4 at 0x018c1000 (pgoffset 6337) (II) intel(0): Output configuration: (II) intel(0): Pipe A is off (II) intel(0): Display plane A is now disabled and connected to pipe A. (II) intel(0): Pipe B is on (II) intel(0): Display plane B is now enabled and connected to pipe B. (II) intel(0): Output VGA is connected to pipe none (II) intel(0): Output LVDS is connected to pipe B (II) intel(0): Output TV is connected to pipe none (**) Option "dpms" (**) intel(0): DPMS enabled (II) intel(0): Set up textured video (II) intel(0): X context handle = 0x1 (II) intel(0): [drm] installed DRM signal handler (II) intel(0): [DRI] installation complete (II) intel(0): [drm] dma control initialized, using IRQ 17 (II) intel(0): direct rendering: Enabled (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message. (--) RandR disabled (II) Initializing built-in extension MIT-SHM (II) Initializing built-in extension XInputExtension (II) Initializing built-in extension XTEST (II) Initializing built-in extension XKEYBOARD (II) Initializing built-in extension XC-APPGROUP (II) Initializing built-in extension XAccessControlExtension (II) Initializing built-in extension SECURITY (II) Initializing built-in extension XINERAMA (II) Initializing built-in extension XFIXES (II) Initializing built-in extension XFree86-Bigfont (II) Initializing built-in extension RENDER (II) Initializing built-in extension RANDR (II) Initializing built-in extension COMPOSITE (II) Initializing built-in extension DAMAGE (II) Initializing built-in extension XEVIE drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 9, (OK) drmOpenByBusid: Searching for BusID pci:0000:00:02.0 drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 9, (OK) drmOpenByBusid: drmOpenMinor returns 9 drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0 (WW) AIGLX: 3D driver claims to not support visual 0x23 (WW) AIGLX: 3D driver claims to not support visual 0x24 (WW) AIGLX: 3D driver claims to not support visual 0x25 (WW) AIGLX: 3D driver claims to not support visual 0x26 (WW) AIGLX: 3D driver claims to not support visual 0x27 (WW) AIGLX: 3D driver claims to not support visual 0x28 (WW) AIGLX: 3D driver claims to not support visual 0x29 (WW) AIGLX: 3D driver claims to not support visual 0x2a (WW) AIGLX: 3D driver claims to not support visual 0x2b (WW) AIGLX: 3D driver claims to not support visual 0x2c (WW) AIGLX: 3D driver claims to not support visual 0x2d (WW) AIGLX: 3D driver claims to not support visual 0x2e (WW) AIGLX: 3D driver claims to not support visual 0x2f (WW) AIGLX: 3D driver claims to not support visual 0x30 (WW) AIGLX: 3D driver claims to not support visual 0x31 (WW) AIGLX: 3D driver claims to not support visual 0x32 (II) AIGLX: Loaded and initialized /usr/lib/dri/i965_dri.so (II) GLX: Initialized DRI GL provider for screen 0 (II) intel(0): Setting screen physical size to 211 x 158 (**) Option "CoreKeyboard" (**) Keyboard0: Core Keyboard (**) Option "Protocol" "standard" (**) Keyboard0: Protocol: standard (**) Option "AutoRepeat" "500 30" (**) Option "XkbRules" "xorg" (**) Keyboard0: XkbRules: "xorg" (**) Option "XkbModel" "pc105" (**) Keyboard0: XkbModel: "pc105" (**) Option "XkbLayout" "it" (**) Keyboard0: XkbLayout: "it" (**) Option "XkbOptions" "lv3:ralt_switch" (**) Keyboard0: XkbOptions: "lv3:ralt_switch" (**) Option "CustomKeycodes" "off" (**) Keyboard0: CustomKeycodes disabled (**) Option "Protocol" "ImPS/2" (**) Mouse0: Device: "/dev/input/mice" (**) Mouse0: Protocol: "ImPS/2" (**) Option "CorePointer" (**) Mouse0: Core Pointer (**) Option "Device" "/dev/input/mice" (**) Option "Emulate3Buttons" "true" (**) Mouse0: Emulate3Buttons, Emulate3Timeout: 50 (**) Option "ZAxisMapping" "4 5" (**) Mouse0: ZAxisMapping: buttons 4 and 5 (**) Mouse0: Buttons: 9 (EE) No Input driver matching `wacom' (II) Synaptics touchpad driver version 0.14.6 (1406) (--) Touchpad0 auto-dev sets device to /dev/input/event2 (**) Option "Device" "/dev/input/event2" (**) Option "SHMConfig" "on" (**) Option "EmulateMidButtonTime" "100" (**) Option "VertScrollDelta" "10" (**) Option "HorizScrollDelta" "10" (**) Option "EdgeMotionMinSpeed" "10" (**) Option "EdgeMotionMaxSpeed" "200" (**) Option "EdgeMotionUseAlways" "true" (**) Option "LockedDrags" "false" (--) Touchpad0 touchpad found (**) Option "SendCoreEvents" "true" (**) Touchpad0: always reports core events (II) XINPUT: Adding extended input device "Touchpad0" (type: MOUSE) (II) XINPUT: Adding extended input device "Mouse0" (type: MOUSE) (II) XINPUT: Adding extended input device "Keyboard0" (type: KEYBOARD) Synaptics DeviceInit called SynapticsCtrl called. (II) Mouse0: ps2EnableDataReporting: succeeded Synaptics DeviceOn called (--) Touchpad0 auto-dev sets device to /dev/input/event2 (**) Option "Device" "/dev/input/event2" (--) Touchpad0 touchpad found (II) intel(0): Output VGA connected (II) intel(0): I2C device "CRTDDC_A:ddc2" registered at address 0xA0. (II) intel(0): I2C device "CRTDDC_A:ddc2" removed. (II) intel(0): EDID for output VGA (II) intel(0): Manufacturer: SAM Model: 11f Serial#: 1296707897 (II) intel(0): Year: 2006 Week: 1 (II) intel(0): EDID Version: 1.3 (II) intel(0): Analog Display Input, Input Voltage Level: 0.700/0.700 V (II) intel(0): Sync: Separate Composite (II) intel(0): Max H-Image Size [cm]: horiz.: 38 vert.: 30 (II) intel(0): Gamma: 2.20 (II) intel(0): DPMS capabilities: Off; RGB/Color Display (II) intel(0): First detailed timing is preferred mode (II) intel(0): redX: 0.634 redY: 0.354 greenX: 0.304 greenY: 0.581 (II) intel(0): blueX: 0.143 blueY: 0.102 whiteX: 0.310 whiteY: 0.330 (II) intel(0): Supported VESA Video Modes: (II) intel(0): 720x400@70Hz (II) intel(0): 640x480@60Hz (II) intel(0): 640x480@67Hz (II) intel(0): 640x480@72Hz (II) intel(0): 640x480@75Hz (II) intel(0): 800x600@56Hz (II) intel(0): 800x600@60Hz (II) intel(0): 800x600@72Hz (II) intel(0): 800x600@75Hz (II) intel(0): 832x624@75Hz (II) intel(0): 1024x768@60Hz (II) intel(0): 1024x768@70Hz (II) intel(0): 1024x768@75Hz (II) intel(0): 1280x1024@75Hz (II) intel(0): 1152x870@75Hz (II) intel(0): Manufacturer's mask: 0 (II) intel(0): Supported Future Video Modes: (II) intel(0): #0: hsize: 1280 vsize 1024 refresh: 60 vid: 32897 (II) intel(0): #1: hsize: 1152 vsize 864 refresh: 75 vid: 20337 (II) intel(0): Supported additional Video Mode: (II) intel(0): clock: 108.0 MHz Image Size: 376 x 301 mm (II) intel(0): h_active: 1280 h_sync: 1328 h_sync_end 1440 h_blank_end 1688 h_border: 0 (II) intel(0): v_active: 1024 v_sync: 1025 v_sync_end 1028 v_blanking: 1066 v_border: 0 (II) intel(0): Ranges: V min: 56 V max: 75 Hz, H min: 30 H max: 81 kHz, PixClock max 140 MHz (II) intel(0): Monitor name: SyncMaster (II) intel(0): Serial No: H9NA103639 (II) intel(0): EDID (in hex): (II) intel(0): 00ffffffffffff004c2d1f0139314a4d (II) intel(0): 011001036c261e782a6f86a25a4d9424 (II) intel(0): 1a4f54bfef808180714f010101010101 (II) intel(0): 010101010101302a009851002a403070 (II) intel(0): 1300782d1100001e000000fd00384b1e (II) intel(0): 510e000a202020202020000000fc0053 (II) intel(0): 796e634d61737465720a2020000000ff (II) intel(0): 0048394e413130333633390a2020007e (II) intel(0): EDID vendor "SAM", prod id 287 (II) intel(0): Not using mode "1280x1024" (height too large for virtual size) (II) intel(0): Not using mode "800x600" (vrefresh out of range) (II) intel(0): Not using mode "800x600" (vrefresh out of range) (II) intel(0): Not using mode "640x480" (vrefresh out of range) (II) intel(0): Not using mode "640x480" (vrefresh out of range) (II) intel(0): Not using mode "640x480" (vrefresh out of range) (II) intel(0): Not using mode "640x480" (vrefresh out of range) (II) intel(0): Not using mode "720x400" (vrefresh out of range) (II) intel(0): Not using mode "1280x1024" (height too large for virtual size) (II) intel(0): Not using mode "1024x768" (width too large for virtual size) (II) intel(0): Not using mode "1024x768" (width too large for virtual size) (II) intel(0): Not using mode "1024x768" (width too large for virtual size) (II) intel(0): Not using mode "832x624" (width too large for virtual size) (II) intel(0): Not using mode "800x600" (vrefresh out of range) (II) intel(0): Not using mode "800x600" (vrefresh out of range) (II) intel(0): Not using mode "1152x864" (height too large for virtual size) (II) intel(0): Not using mode "1280x1024" (height too large for virtual size) (II) intel(0): Not using mode "1152x864" (height too large for virtual size) (II) intel(0): Not using default mode "640x350" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "640x400" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "720x400" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "640x480" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "640x480" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "640x480" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "640x480" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "800x600" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "800x600" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "800x600" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "800x600" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "800x600" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "1024x768" (width too large for virtual size) (II) intel(0): Not using default mode "1024x768" (width too large for virtual size) (II) intel(0): Not using default mode "1024x768" (width too large for virtual size) (II) intel(0): Not using default mode "1024x768" (width too large for virtual size) (II) intel(0): Not using default mode "1152x864" (height too large for virtual size) (II) intel(0): Not using default mode "1280x960" (height too large for virtual size) (II) intel(0): Not using default mode "1280x960" (height too large for virtual size) (II) intel(0): Not using default mode "1280x1024" (height too large for virtual size) (II) intel(0): Not using default mode "1280x1024" (height too large for virtual size) (II) intel(0): Not using default mode "1280x1024" (height too large for virtual size) (II) intel(0): Not using default mode "1600x1200" (height too large for virtual size) (II) intel(0): Not using default mode "1600x1200" (height too large for virtual size) (II) intel(0): Not using default mode "1600x1200" (height too large for virtual size) (II) intel(0): Not using default mode "1600x1200" (height too large for virtual size) (II) intel(0): Not using default mode "1600x1200" (height too large for virtual size) (II) intel(0): Not using default mode "1792x1344" (height too large for virtual size) (II) intel(0): Not using default mode "1792x1344" (height too large for virtual size) (II) intel(0): Not using default mode "1856x1392" (height too large for virtual size) (II) intel(0): Not using default mode "1856x1392" (height too large for virtual size) (II) intel(0): Not using default mode "1920x1440" (height too large for virtual size) (II) intel(0): Not using default mode "1920x1440" (height too large for virtual size) (II) intel(0): Not using default mode "832x624" (width too large for virtual size) (II) intel(0): Not using default mode "1152x768" (width too large for virtual size) (II) intel(0): Not using default mode "1400x1050" (height too large for virtual size) (II) intel(0): Not using default mode "1400x1050" (height too large for virtual size) (II) intel(0): Not using default mode "1600x1024" (height too large for virtual size) (II) intel(0): Not using default mode "1920x1440" (height too large for virtual size) (II) intel(0): Not using default mode "2048x1536" (height too large for virtual size) (II) intel(0): Not using default mode "2048x1536" (height too large for virtual size) (II) intel(0): Not using default mode "2048x1536" (height too large for virtual size) (II) intel(0): No remaining probed modes for output VGA (II) intel(0): Output LVDS connected (II) intel(0): I2C device "LVDSDDC_C:ddc2" registered at address 0xA0. (II) intel(0): I2C device "LVDSDDC_C:ddc2" removed. (II) intel(0): EDID for output LVDS (II) intel(0): Not using default mode "1024x768" (width too large for virtual size) (II) intel(0): Not using default mode "1024x768" (width too large for virtual size) (II) intel(0): Not using default mode "1024x768" (width too large for virtual size) (II) intel(0): Not using default mode "1024x768" (width too large for virtual size) (II) intel(0): Not using default mode "1152x864" (height too large for virtual size) (II) intel(0): Not using default mode "1280x960" (height too large for virtual size) (II) intel(0): Not using default mode "1280x960" (height too large for virtual size) (II) intel(0): Not using default mode "1280x1024" (height too large for virtual size) (II) intel(0): Not using default mode "1280x1024" (height too large for virtual size) (II) intel(0): Not using default mode "1280x1024" (height too large for virtual size) (II) intel(0): Not using default mode "1600x1200" (height too large for virtual size) (II) intel(0): Not using default mode "1600x1200" (height too large for virtual size) (II) intel(0): Not using default mode "1600x1200" (height too large for virtual size) (II) intel(0): Not using default mode "1600x1200" (height too large for virtual size) (II) intel(0): Not using default mode "1600x1200" (height too large for virtual size) (II) intel(0): Not using default mode "1792x1344" (height too large for virtual size) (II) intel(0): Not using default mode "1792x1344" (height too large for virtual size) (II) intel(0): Not using default mode "1856x1392" (height too large for virtual size) (II) intel(0): Not using default mode "1856x1392" (height too large for virtual size) (II) intel(0): Not using default mode "1920x1440" (height too large for virtual size) (II) intel(0): Not using default mode "1920x1440" (height too large for virtual size) (II) intel(0): Not using default mode "832x624" (width too large for virtual size) (II) intel(0): Not using default mode "1152x768" (width too large for virtual size) (II) intel(0): Not using default mode "1400x1050" (height too large for virtual size) (II) intel(0): Not using default mode "1400x1050" (height too large for virtual size) (II) intel(0): Not using default mode "1600x1024" (height too large for virtual size) (II) intel(0): Not using default mode "1920x1440" (height too large for virtual size) (II) intel(0): Not using default mode "2048x1536" (height too large for virtual size) (II) intel(0): Not using default mode "2048x1536" (height too large for virtual size) (II) intel(0): Not using default mode "2048x1536" (height too large for virtual size) (II) intel(0): Printing probed modes for output LVDS (II) intel(0): Modeline "800x600"x57.7 66.28 800 1056 1104 1410 600 704 707 815 (47.0 kHz) (II) intel(0): Modeline "800x600"x85.1 56.30 800 832 896 1048 600 601 604 631 +hsync +vsync (53.7 kHz) (II) intel(0): Modeline "800x600"x72.2 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz) (II) intel(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz) (II) intel(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz) (II) intel(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz) (II) intel(0): Modeline "640x480"x85.0 36.00 640 696 752 832 480 481 484 509 -hsync -vsync (43.3 kHz) (II) intel(0): Modeline "640x480"x72.8 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz) (II) intel(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz) (II) intel(0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz) (II) intel(0): Modeline "720x400"x85.0 35.50 720 756 828 936 400 401 404 446 -hsync +vsync (37.9 kHz) (II) intel(0): Modeline "640x400"x85.1 31.50 640 672 736 832 400 401 404 445 -hsync +vsync (37.9 kHz) (II) intel(0): Modeline "640x350"x85.1 31.50 640 672 736 832 350 382 385 445 +hsync -vsync (37.9 kHz) (II) intel(0): Output TV disconnected (II) intel(0): EDID for output TV (II) intel(0): Output VGA connected (II) intel(0): I2C device "CRTDDC_A:ddc2" registered at address 0xA0. (II) intel(0): I2C device "CRTDDC_A:ddc2" removed. (II) intel(0): EDID for output VGA (II) intel(0): Manufacturer: SAM Model: 11f Serial#: 1296707897 (II) intel(0): Year: 2006 Week: 1 (II) intel(0): EDID Version: 1.3 (II) intel(0): Analog Display Input, Input Voltage Level: 0.700/0.700 V (II) intel(0): Sync: Separate Composite (II) intel(0): Max H-Image Size [cm]: horiz.: 38 vert.: 30 (II) intel(0): Gamma: 2.20 (II) intel(0): DPMS capabilities: Off; RGB/Color Display (II) intel(0): First detailed timing is preferred mode (II) intel(0): redX: 0.634 redY: 0.354 greenX: 0.304 greenY: 0.581 (II) intel(0): blueX: 0.143 blueY: 0.102 whiteX: 0.310 whiteY: 0.330 (II) intel(0): Supported VESA Video Modes: (II) intel(0): 720x400@70Hz (II) intel(0): 640x480@60Hz (II) intel(0): 640x480@67Hz (II) intel(0): 640x480@72Hz (II) intel(0): 640x480@75Hz (II) intel(0): 800x600@56Hz (II) intel(0): 800x600@60Hz (II) intel(0): 800x600@72Hz (II) intel(0): 800x600@75Hz (II) intel(0): 832x624@75Hz (II) intel(0): 1024x768@60Hz (II) intel(0): 1024x768@70Hz (II) intel(0): 1024x768@75Hz (II) intel(0): 1280x1024@75Hz (II) intel(0): 1152x870@75Hz (II) intel(0): Manufacturer's mask: 0 (II) intel(0): Supported Future Video Modes: (II) intel(0): #0: hsize: 1280 vsize 1024 refresh: 60 vid: 32897 (II) intel(0): #1: hsize: 1152 vsize 864 refresh: 75 vid: 20337 (II) intel(0): Supported additional Video Mode: (II) intel(0): clock: 108.0 MHz Image Size: 376 x 301 mm (II) intel(0): h_active: 1280 h_sync: 1328 h_sync_end 1440 h_blank_end 1688 h_border: 0 (II) intel(0): v_active: 1024 v_sync: 1025 v_sync_end 1028 v_blanking: 1066 v_border: 0 (II) intel(0): Ranges: V min: 56 V max: 75 Hz, H min: 30 H max: 81 kHz, PixClock max 140 MHz (II) intel(0): Monitor name: SyncMaster (II) intel(0): Serial No: H9NA103639 (II) intel(0): EDID (in hex): (II) intel(0): 00ffffffffffff004c2d1f0139314a4d (II) intel(0): 011001036c261e782a6f86a25a4d9424 (II) intel(0): 1a4f54bfef808180714f010101010101 (II) intel(0): 010101010101302a009851002a403070 (II) intel(0): 1300782d1100001e000000fd00384b1e (II) intel(0): 510e000a202020202020000000fc0053 (II) intel(0): 796e634d61737465720a2020000000ff (II) intel(0): 0048394e413130333633390a2020007e (II) intel(0): EDID vendor "SAM", prod id 287 (II) intel(0): Not using mode "1280x1024" (height too large for virtual size) (II) intel(0): Not using mode "800x600" (vrefresh out of range) (II) intel(0): Not using mode "800x600" (vrefresh out of range) (II) intel(0): Not using mode "640x480" (vrefresh out of range) (II) intel(0): Not using mode "640x480" (vrefresh out of range) (II) intel(0): Not using mode "640x480" (vrefresh out of range) (II) intel(0): Not using mode "640x480" (vrefresh out of range) (II) intel(0): Not using mode "720x400" (vrefresh out of range) (II) intel(0): Not using mode "1280x1024" (height too large for virtual size) (II) intel(0): Not using mode "1024x768" (width too large for virtual size) (II) intel(0): Not using mode "1024x768" (width too large for virtual size) (II) intel(0): Not using mode "1024x768" (width too large for virtual size) (II) intel(0): Not using mode "832x624" (width too large for virtual size) (II) intel(0): Not using mode "800x600" (vrefresh out of range) (II) intel(0): Not using mode "800x600" (vrefresh out of range) (II) intel(0): Not using mode "1152x864" (height too large for virtual size) (II) intel(0): Not using mode "1280x1024" (height too large for virtual size) (II) intel(0): Not using mode "1152x864" (height too large for virtual size) (II) intel(0): Not using default mode "640x350" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "640x400" (bad mode clock/interlace/doublescan) (II) intel(0): Not using default mode "720x400" (bad mode clock/interlace/doublescan) (II) intel(0): Not using defaul


xorg
# 01 Aug

# xorg.conf (xorg X Window System server configuration file) # # This file was generated by dexconf, the Debian X Configuration tool, using # values from the debconf database. # # Edit this file with caution, and see the xorg.conf manual page. # (Type "man xorg.conf" at the shell prompt.) # # This file is automatically updated on xserver-xorg package upgrades *only* # if it has not been modified since the last upgrade of the xserver-xorg # package. # # If you have edited this file but would like it to be automatically updated # again, run the following command: # sudo dpkg-reconfigure -phigh xserver-xorg # # this xorg.conf is working for me (Voland666) on Ubuntu 7.04 Feisty Fawn with # xserver-xorg-video-intel_2.1.0-1ubuntu1_i386 xf86-video-intel-2.1.0 driver # Dell Latitude D630 - Intel X3100, AUOptronics 1440x900 local flat panel # Wacom CTF-420 Volito2 graphics tablet, Alps GlidePoint touchpad # Section "ServerFlags" Option "DefaultServerLayout" "ServerLayout0" EndSection Section "ServerLayout" Identifier "ServerLayout0" Screen "Screen0" 0 0 InputDevice "Keyboard0" InputDevice "Mouse0" # InputDevice "Mouse1" "SendCoreEvents" InputDevice "Stylus0" "SendCoreEvents" # InputDevice "Eraser0" "SendCoreEvents" InputDevice "Touchpad0" EndSection Section "Files" EndSection Section "Module" EndSection Section "InputDevice" Identifier "Keyboard0" Driver "kbd" Option "CoreKeyboard" Option "XkbRules" "xorg" Option "XkbModel" "pc105" Option "XkbLayout" "it" Option "XkbOptions" "lv3:ralt_switch" EndSection Section "InputDevice" Identifier "Mouse0" Driver "mouse" Option "CorePointer" Option "Device" "/dev/input/mice" Option "Protocol" "ImPS/2" Option "ZAxisMapping" "4 5" Option "Emulate3Buttons" "true" EndSection Section "InputDevice" Identifier "Touchpad0" Driver "synaptics" Option "SendCoreEvents" "true" Option "Device" "/dev/psaux" Option "Protocol" "auto-dev" Option "SHMConfig" "on" Option "HorizScrollDelta" "10" Option "VertScrollDelta" "10" # Option "HorizTwoFingerScroll" "true" # Option "VertTwoFingerScroll" "true" Option "LockedDrags" "false" Option "EdgeMotionUseAlways" "true" Option "EdgeMotionMinSpeed" "10" Option "EdgeMotionMaxSpeed" "200" Option "EmulateMidButtonTime" "100" Option "MinSpeed" "0.5" Option "MaxSpeed" "1.0" Option "AccelFactor" "0.1" EndSection Section "InputDevice" Identifier "Stylus0" Driver "wacom" Option "Device" "/dev/input/wacom" Option "Type" "stylus" Option "USB" "on" Option "Suppress" "6" Option "Threshold" "50" Option "PressCurve" "25,0,100,75" Option "KeepShape" "on" Option "ForceDevice" "ISDV4" # Tablet PC ONLY EndSection #Section "InputDevice" # Identifier "Eraser0" # Driver "wacom" # Option "Device" "/dev/input/wacom" # Option "Type" "eraser" # Option "USB" "on" # Option "ForceDevice" "ISDV4" # Tablet PC ONLY #EndSection #Section "InputDevice" # Identifier "Mouse1" # Driver "wacom" # Option "Device" "/dev/input/wacom" # Option "Type" "cursor" # Option "Mode" "relative" # Option "USB" "on" # Option "ForceDevice" "ISDV4" # Tablet PC ONLY #EndSection #Section "InputDevice" # Identifier "Tablet0" # Driver "wacom" # Option "Device" "/dev/input/wacom" # Option "Type" "pad" # Option "ButtonsOnly" "on" # Option "Button9" "2" # Option "Button10" "3" # Option "USB" "on" # Option "ForceDevice" "ISDV4" # Tablet PC ONLY #EndSection Section "Device" Identifier "Device0" Driver "intel" BusID "PCI:0:2:0" # Option "AccelMethod" "EXA" # Option "MonitorLayout" "LFP,NONE" # "," e.g.: "CRT+DFP,LFP" # CRT, LFP, DFP, TV, CRT2, LFP2, DFP2, TV2, NONE EndSection Section "Monitor" Identifier "Monitor0" VendorName "AU Optronics" ModelName "B141PW01" # DisplaySize 305 190 VertRefresh 50 Option "DPMS" Gamma 0.75 0.65 0.60 #see also /etc/X11/Xsession.d/95x11-xgamma EndSection Section "Screen" Identifier "Screen0" Device "Device0" Monitor "Monitor0" DefaultDepth 24 SubSection "Display" Depth 1 Modes "1280x800" EndSubSection SubSection "Display" Depth 4 Modes "1280x800" EndSubSection SubSection "Display" Depth 8 Modes "1280x800" EndSubSection SubSection "Display" Depth 24 Modes "1280x800" EndSubSection EndSection


SaX
# 01 Aug

/************* SaX2 log : SaX2 version 8.1 - SVN Release: 1.49 2003/03/17 ************** SVN RELEASE : 1382 : DESCRIPTION : X11 configuration log file to collect information : about detection, startup and configuration. : There are three parts of logging: : --- : 1) INIT ( detection, 3D ) : 2) STARTUP ( xorg.conf, X11 log, glxinfo ) : 3) CONFIG ( config actions ) : --- : VERSION : SaX2 compiled for: [openSUSE 10.3 (i586)] PARAMETER : no parameter(s) given : LOG DATE : Thu Jul 26 01:37:33 EEST 2007 *************/ ============================ Framebuffer Info: ---------------------------- Framebuffer is active 26-Jul 01:37:34 Startup... 26-Jul 01:37:34 [ Startup on already running Server: :0.0 -> grant ] 26-Jul 01:37:34 Checksum of installed configuration is invalid ! 26-Jul 01:37:34 Imported: Card 26-Jul 01:37:34 Imported: Desktop 26-Jul 01:37:34 Imported: Pointers 26-Jul 01:37:34 Imported: Keyboard 26-Jul 01:37:35 Imported: Layout 26-Jul 01:37:35 Imported: Path 26-Jul 01:37:35 Imported: Extensions 26-Jul 01:37:35 SCCMonitorDisplay::using DDC reference resolutions 26-Jul 01:37:36 SCCKeyboardLayout::Warning: unknown XKB key: Morocco 26-Jul 01:37:36 SCCKeyboardLayout::Warning: unknown XKB key: Braille 26-Jul 01:37:36 SCCKeyboardLayout::Warning: unknown XKB key: Ethiopia 26-Jul 01:37:36 SCCKeyboardLayout::Warning: unknown XKB key: Morocco 26-Jul 01:37:36 SCCKeyboardLayout::Warning: unknown XKB key: Braille 26-Jul 01:37:36 SCCKeyboardOptions::Warning: unknown XKB key: NICOLA-F style Backspace 26-Jul 01:37:36 SCCKeyboardOptions::Warning: unknown XKB key: Right Alt key never chooses 3rd level. 26-Jul 01:37:36 SCCKeyboardOptions::Warning: unknown XKB key: Left Alt key switches layout while pressed. 26-Jul 01:37:36 SCCKeyboardOptions::Warning: unknown XKB key: Space key outputs non-breakable space character at third level, thin non-breakable space character at fourth level 26-Jul 01:37:36 SCCKeyboardOptions::Warning: unknown XKB key: Default numeric keypad keys. 26-Jul 01:37:36 SCCKeyboardOptions::Warning: unknown XKB key: Both Ctrl keys together change layout. 26-Jul 01:37:36 SCCKeyboardOptions::Warning: unknown XKB key: Using space key to input non-breakable space character 26-Jul 01:37:36 SCCKeyboardOptions::Warning: unknown XKB key: Right Shift key changes layout. 26-Jul 01:37:36 SCCKeyboardOptions::Warning: unknown XKB key: Left Win-key changes layout. 26-Jul 01:37:36 SCCKeyboardOptions::Warning: unknown XKB key: LCtrl+LShift change layout. 26-Jul 01:37:36 SCCKeyboardOptions::Warning: unknown XKB key: Left Alt key changes layout. 26-Jul 01:37:36 SCCKeyboardOptions::Warning: unknown XKB key: Both Win-keys switch layout while pressed. 26-Jul 01:37:36 SCCKeyboardOptions::Warning: unknown XKB key: Right Ctrl key switches layout while pressed. 26-Jul 01:37:36 SCCKeyboardOptions::Warning: unknown XKB key: Space key outputs non-breakable space character at third level, nothing at fourth level. 26-Jul 01:37:36 SCCKeyboardOptions::Warning: unknown XKB key: Shift+CapsLock changes layout. 26-Jul 01:37:36 SCCKeyboardOptions::Warning: unknown XKB key: R-Alt switches layout while pressed. 26-Jul 01:37:36 SCCKeyboardOptions::Warning: unknown XKB key: Numeric keypad layout selection 26-Jul 01:37:36 SCCKeyboardOptions::Warning: unknown XKB key: Right Ctrl key changes layout. 26-Jul 01:37:36 SCCKeyboardOptions::Warning: unknown XKB key: Alt+CapsLock changes layout. 26-Jul 01:37:36 SCCKeyboardOptions::Warning: unknown XKB key: Super is mapped to the Win-keys. 26-Jul 01:37:36 SCCKeyboardOptions::Warning: unknown XKB key: ScrollLock LED shows alternative layout. 26-Jul 01:37:36 SCCKeyboardOptions::Warning: unknown XKB key: Both Shift keys together change layout. 26-Jul 01:37:36 SCCKeyboardOptions::Warning: unknown XKB key: Space key outputs non-breakable space character at second level. 26-Jul 01:37:36 SCCKeyboardOptions::Warning: unknown XKB key: Right Win-key changes layout. 26-Jul 01:37:36 SCCKeyboardOptions::Warning: unknown XKB key: Space key outputs non-breakable space character at third level. 26-Jul 01:37:36 SCCKeyboardOptions::Warning: unknown XKB key: Numeric keypad keys work as with Mac. 26-Jul 01:37:36 SCCKeyboardOptions::Warning: unknown XKB key: CapsLock LED shows alternative layout. 26-Jul 01:37:36 SCCKeyboardOptions::Warning: unknown XKB key: NumLock LED shows alternative layout. 26-Jul 01:37:36 SCCKeyboardOptions::Warning: unknown XKB key: Left Shift key changes layout. 26-Jul 01:37:36 SCCKeyboardOptions::Warning: unknown XKB key: Left Win-key switches layout while pressed. 26-Jul 01:37:36 SCCKeyboardOptions::Warning: unknown XKB key: Space key outputs non-breakable space character at fourth level. 26-Jul 01:37:36 SCCKeyboardOptions::Warning: unknown XKB key: Both Alt keys together change layout. 26-Jul 01:37:36 SCCKeyboardOptions::Warning: unknown XKB key: CapsLock key changes layout. 26-Jul 01:37:36 SCCKeyboardOptions::Warning: unknown XKB key: Control is mapped to the Win-keys (and the usual Ctrl keys). 26-Jul 01:37:36 SCCKeyboardOptions::Warning: unknown XKB key: Right Alt key changes layout. 26-Jul 01:37:36 SCCKeyboardOptions::Warning: unknown XKB key: Shift with numeric keypad keys works as in MS Windows. 26-Jul 01:37:36 SCCKeyboardOptions::Warning: unknown XKB key: Alt and Meta are on the Alt keys. 26-Jul 01:37:36 SCCKeyboardOptions::Warning: unknown XKB key: Alt+Shift change layout. 26-Jul 01:37:36 SCCKeyboardOptions::Warning: unknown XKB key: Ctrl+Shift change layout. 26-Jul 01:37:36 SCCKeyboardOptions::Warning: unknown XKB key: Space key outputs usual space at any level. 26-Jul 01:37:36 SCCKeyboardOptions::Warning: unknown XKB key: Japanese keyboard options 26-Jul 01:37:36 SCCKeyboardOptions::Warning: unknown XKB key: Space key outputs non-breakable space character at fourth level, thin non-breakable space character at sixth level 26-Jul 01:37:36 SCCKeyboardOptions::Warning: unknown XKB key: Use keyboard LED to show alternative layout. 26-Jul 01:37:36 SCCKeyboardOptions::Warning: unknown XKB key: Left Ctrl key changes layout. 26-Jul 01:37:36 SCCKeyboardOptions::Warning: unknown XKB key: Menu key changes layout. 26-Jul 01:37:36 SCCKeyboardOptions::Warning: unknown XKB key: Alt+Ctrl change layout. 26-Jul 01:37:36 SCCKeyboardOptions::Warning: unknown XKB key: Right Win-key switches layout while pressed. 26-Jul 01:37:36 SCCKeyboardOptions::Warning: unknown XKB key: Layout switching 26-Jul 01:37:36 *** not yet handled: Pad Properties on display 0 26-Jul 01:38:19 Configuration: [NEXT SETUP DIFF]... [ --- /var/lib/sax/xorg.conf.first 2007-07-26 00:48:44.000000000 +0300 +++ /var/lib/sax/xorg.conf 2007-07-26 01:38:12.000000000 +0300 @@ -1,6 +1,6 @@ # /.../ # SaX generated X11 config file -# Created on: 2007-07-26T00:48:37+0300. +# Created on: 2007-07-26T01:38:11+0300. # # Version: 8.1 # Contact: Marcus Schaefer , 2005 @@ -50,11 +50,11 @@ EndSection Section "Module" - Load "glx" - Load "type1" Load "extmod" - Load "dbe" + Load "type1" + Load "glx" Load "freetype" + Load "dbe" Load "dri" EndSection @@ -141,6 +141,7 @@ Modeline "768x576" 32.25 768 816 848 928 576 579 583 593 +HSync -Vsync Modeline "640x480" 23.86 640 656 720 800 480 481 484 497 Modeline "640x480" 23.25 640 688 720 800 480 483 487 494 +HSync -Vsync + Modeline "1280x800" 69.75 1280 1328 1360 1440 800 803 809 823 +HSync -Vsync EndSection @@ -160,7 +161,7 @@ EndSubSection SubSection "Display" Depth 32 - Modes "1280x800" "1280x768" "1024x768" "1280x600" "1024x600" "800x600" "768x576" "640x480" + Modes "1280x800" EndSubSection SubSection "Display" Depth 8 @@ -178,7 +179,7 @@ Driver "intel" Identifier "Device[0]" Option "DRI" - Option "usevnc" "no" + Option "TripleBuffer" Screen 0 VendorName "Intel" EndSection ] 26-Jul 01:38:19 Configuration: [LOG]... [ X Window System Version 7.2.0 Release Date: Tue Jul 17 01:49:41 UTC 2007 X Protocol Version 11, Revision 0, Release 7.2 Build Operating System: openSUSE SUSE LINUX Current Operating System: Linux vaio 2.6.22-5-default #1 SMP 2007/07/16 06:54:15 UTC i686 Build Date: 17 July 2007 Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. Module Loader present Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. (==) Log file: "/var/log/Xorg.99.log", Time: Thu Jul 26 01:38:12 2007 (++) Using config file: "/var/lib/sax/xorg.conf" (==) ServerLayout "Layout[all]" (**) |-->Screen "Screen[0]" (0) (**) | |-->Monitor "Monitor[0]" (**) | |-->Device "Device[0]" (**) |-->Input Device "Keyboard[0]" (**) |-->Input Device "Mouse[1]" (**) |-->Input Device "Mouse[3]" (WW) The directory "/usr/share/fonts/local" does not exist. Entry deleted from font path. (WW) The directory "/usr/share/fonts/75dpi" does not exist. Entry deleted from font path. (WW) The directory "/usr/share/fonts/100dpi" does not exist. Entry deleted from font path. (WW) The directory "/usr/share/fonts/Type1" does not exist. Entry deleted from font path. (WW) The directory "/usr/share/fonts/Speedo" does not exist. Entry deleted from font path. (WW) The directory "/usr/share/fonts/PEX" does not exist. Entry deleted from font path. (WW) The directory "/usr/share/fonts/cyrillic" does not exist. Entry deleted from font path. (WW) The directory "/usr/share/fonts/latin2/misc" does not exist. Entry deleted from font path. (WW) The directory "/usr/share/fonts/latin2/75dpi" does not exist. Entry deleted from font path. (WW) The directory "/usr/share/fonts/latin2/100dpi" does not exist. Entry deleted from font path. (WW) The directory "/usr/share/fonts/latin2/Type1" does not exist. Entry deleted from font path. (WW) The directory "/usr/share/fonts/latin7/75dpi" does not exist. Entry deleted from font path. (WW) The directory "/usr/share/fonts/baekmuk" does not exist. Entry deleted from font path. (WW) The directory "/usr/share/fonts/japanese" does not exist. Entry deleted from font path. (WW) The directory "/usr/share/fonts/kwintv" does not exist. Entry deleted from font path. (WW) The directory "/usr/share/fonts/CID" does not exist. Entry deleted from font path. (WW) The directory "/usr/share/fonts/ucs/misc" does not exist. Entry deleted from font path. (WW) The directory "/usr/share/fonts/ucs/75dpi" does not exist. Entry deleted from font path. (WW) The directory "/usr/share/fonts/ucs/100dpi" does not exist. Entry deleted from font path. (WW) The directory "/usr/share/fonts/hellas/misc" does not exist. Entry deleted from font path. (WW) The directory "/usr/share/fonts/hellas/75dpi" does not exist. Entry deleted from font path. (WW) The directory "/usr/share/fonts/hellas/100dpi" does not exist. Entry deleted from font path. (WW) The directory "/usr/share/fonts/hellas/Type1" does not exist. Entry deleted from font path. (WW) The directory "/usr/share/fonts/misc/sgi" does not exist. Entry deleted from font path. (WW) The directory "/usr/share/fonts/xtest" does not exist. Entry deleted from font path. (**) FontPath set to: /usr/share/fonts/misc:unscaled, /usr/share/fonts/URW, /usr/share/fonts/truetype, /usr/share/fonts/uni:unscaled, /opt/kde3/share/fonts (==) RgbPath set to "/usr/share/X11/rgb" (**) Input device list set to "/dev/gpmdata,/dev/input/mice" (==) ModulePath set to "/usr/lib/xorg/modules/updates,/usr/lib/xorg/modules" (**) Option "AllowMouseOpenFail" "on" (**) Option "Xinerama" "off" (II) Loader magic: 0x81e6560 (II) Module ABI versions: X.Org ANSI C Emulation: 0.3 X.Org Video Driver: 1.2 X.Org XInput driver : 0.7 X.Org Server Extension : 0.3 X.Org Font Renderer : 0.5 (II) Loader running on linux (II) Loading /usr/lib/xorg/modules//libpcidata.so (II) Module pcidata: vendor="X.Org Foundation" compiled for 7.2.0, module version = 1.0.0 ABI class: X.Org Video Driver, version 1.2 (++) using VT number 8 (II) PCI: PCI scan (all values are in hex) (II) PCI: 00:00:0: chip 8086,2a00 card 104d,9005 rev 0c class 06,00,00 hdr 00 (II) PCI: 00:02:0: chip 8086,2a02 card 104d,9005 rev 0c class 03,00,00 hdr 80 (II) PCI: 00:02:1: chip 8086,2a03 card 104d,9005 rev 0c class 03,80,00 hdr 80 (II) PCI: 00:1a:0: chip 8086,2834 card 104d,9005 rev 03 class 0c,03,00 hdr 80 (II) PCI: 00:1a:1: chip 8086,2835 card 104d,9005 rev 03 class 0c,03,00 hdr 00 (II) PCI: 00:1a:7: chip 8086,283a card 104d,9005 rev 03 class 0c,03,20 hdr 00 (II) PCI: 00:1b:0: chip 8086,284b card 104d,9005 rev 03 class 04,03,00 hdr 00 (II) PCI: 00:1c:0: chip 8086,283f card 0000,0000 rev 03 class 06,04,00 hdr 81 (II) PCI: 00:1c:1: chip 8086,2841 card 0000,0000 rev 03 class 06,04,00 hdr 81 (II) PCI: 00:1c:2: chip 8086,2843 card 0000,0000 rev 03 class 06,04,00 hdr 81 (II) PCI: 00:1c:4: chip 8086,2847 card 0000,0000 rev 03 class 06,04,00 hdr 81 (II) PCI: 00:1d:0: chip 8086,2830 card 104d,9005 rev 03 class 0c,03,00 hdr 80 (II) PCI: 00:1d:1: chip 8086,2831 card 104d,9005 rev 03 class 0c,03,00 hdr 00 (II) PCI: 00:1d:2: chip 8086,2832 card 104d,9005 rev 03 class 0c,03,00 hdr 00 (II) PCI: 00:1d:7: chip 8086,2836 card 104d,9005 rev 03 class 0c,03,20 hdr 00 (II) PCI: 00:1e:0: chip 8086,2448 card 0000,0000 rev f3 class 06,04,01 hdr 01 (II) PCI: 00:1f:0: chip 8086,2815 card 104d,9005 rev 03 class 06,01,00 hdr 80 (II) PCI: 00:1f:1: chip 8086,2850 card 104d,9005 rev 03 class 01,01,8a hdr 00 (II) PCI: 00:1f:2: chip 8086,2829 card 104d,9005 rev 03 class 01,06,01 hdr 00 (II) PCI: 00:1f:3: chip 8086,283e card 104d,9005 rev 03 class 0c,05,00 hdr 00 (II) PCI: 06:00:0: chip 8086,4229 card 8086,1100 rev 61 class 02,80,00 hdr 00 (II) PCI: 08:00:0: chip 11ab,4351 card 104d,9005 rev 16 class 02,00,00 hdr 00 (II) PCI: 09:03:0: chip 104c,8039 card 6000,0000 rev 00 class 06,07,00 hdr 82 (II) PCI: 09:03:1: chip 104c,803a card 104d,9005 rev 00 class 0c,00,10 hdr 80 (II) PCI: 09:03:2: chip 104c,803b card 104d,9005 rev 00 class 01,80,00 hdr 80 (II) PCI: End of PCI scan (--) PCI:*(0:2:0) Intel Corporation Mobile Integrated Graphics Controller rev 12, Mem @ 0xfc000000/20, 0xd0000000/28, I/O @ 0x1800/3 (--) PCI: (0:2:1) Intel Corporation Mobile Integrated Graphics Controller rev 12, Mem @ 0xfc100000/20 (II) Loading /usr/lib/xorg/modules//extensions/libextmod.so (II) Module extmod: vendor="X.Org Foundation" compiled for 7.2.0, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 0.3 (II) Loading extension SHAPE (II) Loading extension MIT-SUNDRY-NONSTANDARD (II) Loading extension BIG-REQUESTS (II) Loading extension SYNC (II) Loading extension MIT-SCREEN-SAVER (II) Loading extension XC-MISC (II) Loading extension XFree86-VidModeExtension (II) Loading extension XFree86-Misc (II) Loading extension XFree86-DGA (II) Loading extension DPMS (II) Loading extension TOG-CUP (II) Loading extension Extended-Visual-Information (II) Loading extension XVideo (II) Loading extension XVideo-MotionCompensation (II) Loading extension X-Resource (II) Loading /usr/lib/xorg/modules//fonts/libtype1.so (II) Module type1: vendor="X.Org Foundation" compiled for 7.2.0, module version = 1.0.2 Module class: X.Org Font Renderer ABI class: X.Org Font Renderer, version 0.5 (II) Loading font Type1 (II) Loading /usr/lib/xorg/modules//extensions/libglx.so (II) Module glx: vendor="X.Org Foundation" compiled for 7.2.0, module version = 1.0.0 ABI class: X.Org Server Extension, version 0.3 (==) AIGLX enabled (II) Loading extension GLX (II) Loading /usr/lib/xorg/modules//fonts/libfreetype.so (II) Module freetype: vendor="X.Org Foundation & the After X-TT Project" compiled for 7.2.0, module version = 2.1.0 Module class: X.Org Font Renderer ABI class: X.Org Font Renderer, version 0.5 (II) Loading font FreeType (II) Loading /usr/lib/xorg/modules//extensions/libdbe.so (II) Module dbe: vendor="X.Org Foundation" compiled for 7.2.0, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 0.3 (II) Loading extension DOUBLE-BUFFER (II) Loading /usr/lib/xorg/modules//extensions/libdri.so (II) Module dri: vendor="X.Org Foundation" compiled for 7.2.0, module version = 1.0.0 ABI class: X.Org Server Extension, version 0.3 (II) Loading extension XFree86-DRI (II) Loading /usr/lib/xorg/modules//drivers/intel_drv.so (II) Module intel: vendor="X.Org Foundation" compiled for 7.2.0, module version = 2.1.0 Module class: X.Org Video Driver ABI class: X.Org Video Driver, version 1.2 (II) Loading /usr/lib/xorg/modules//input/kbd_drv.so (II) Module kbd: vendor="X.Org Foundation" compiled for 7.2.0, module version = 1.1.0 Module class: X.Org XInput Driver ABI class: X.Org XInput driver, version 0.7 (II) Loading /usr/lib/xorg/modules//input/mouse_drv.so (II) Module mouse: vendor="X.Org Foundation" compiled for 7.2.0, module version = 1.1.1 Module class: X.Org XInput Driver ABI class: X.Org XInput driver, version 0.7 (II) Loading /usr/lib/xorg/modules//input/synaptics_drv.so (II) Module synaptics: vendor="X.Org Foundation" compiled for 4.3.99.902, module version = 1.0.0 Module class: X.Org XInput Driver ABI class: X.Org XInput driver, version 0.7 (II) intel: Driver for Intel Integrated Graphics Chipsets: i810, i810-dc100, i810e, i815, i830M, 845G, 852GM/855GM, 865G, 915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, 965G, 965G, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33 (II) Primary Device is: PCI 00:02:0 (WW) intel: No matching Device section for instance (BusID PCI:0:2:1) found (--) Chipset 965GM found (II) Loading /usr/lib/xorg/modules//libint10.so (II) Module int10: vendor="X.Org Foundation" compiled for 7.2.0, module version = 1.0.0 ABI class: X.Org Video Driver, version 1.2 (II) Loading /usr/lib/xorg/modules//libvbe.so (II) Module vbe: vendor="X.Org Foundation" compiled for 7.2.0, module version = 1.1.0 ABI class: X.Org Video Driver, version 1.2 (II) Loading /usr/lib/xorg/modules//libvgahw.so (II) Module vgahw: vendor="X.Org Foundation" compiled for 7.2.0, module version = 0.1.0 ABI class: X.Org Video Driver, version 1.2 (**) intel(0): Depth 24, (--) framebuffer bpp 32 (==) intel(0): RGB weight 888 (==) intel(0): Default visual is TrueColor (**) intel(0): Option "DRI" (**) intel(0): Option "TripleBuffer" (II) intel(0): Integrated Graphics Chipset: Intel(R) 965GM (--) intel(0): Chipset: "965GM" (--) intel(0): Linear framebuffer at 0xD0000000 (--) intel(0): IO registers at addr 0xFC000000 (II) intel(0): 2 display pipes available. (==) intel(0): Using XAA for acceleration (--) intel(0): Will try to allocate texture pool for old Mesa 3D driver. (II) intel(0): Will try to reserve 32768 kiB of AGP aperture space for the DRM memory manager. (II) Module already built-in (II) Module already built-in (II) intel(0): Output VGA using monitor section Monitor[0] (II) intel(0): I2C bus "CRTDDC_A" initialized. (II) intel(0): Output LVDS has no monitor section (II) intel(0): I2C bus "LVDSDDC_C" initialized. (II) intel(0): I2C device "LVDSDDC_C:ddc2" registered at address 0xA0. (II) intel(0): I2C device "LVDSDDC_C:ddc2" removed. (II) intel(0): EDID for output LVDS (II) Reloading /usr/lib/xorg/modules//libint10.so (II) intel(0): initializing int10 (WW) intel(0): Bad V_BIOS checksum (II) intel(0): Primary V_BIOS segment is: 0xc000 (II) intel(0): VESA BIOS detected (II) intel(0): I2C bus "SDVOCTRL_E for SDVOB" initialized. (II) intel(0): I2C device "SDVOCTRL_E for SDVOB:SDVO Controller B" registered at address 0x70. (II) intel(0): No SDVO device found on SDVOB (II) intel(0): I2C device "SDVOCTRL_E for SDVOB:SDVO Controller B" removed. (II) intel(0): I2C bus "SDVOCTRL_E for SDVOB" removed. (II) intel(0): I2C bus "SDVOCTRL_E for SDVOC" initialized. (II) intel(0): I2C device "SDVOCTRL_E for SDVOC:SDVO Controller C" registered at address 0x72. (II) intel(0): No SDVO device found on SDVOC (II) intel(0): I2C device "SDVOCTRL_E for SDVOC:SDVO Controller C" removed. (II) intel(0): I2C bus "SDVOCTRL_E for SDVOC" removed. (II) intel(0): Output TV has no monitor section (II) intel(0): Output VGA disconnected (II) intel(0): EDID for output VGA (II) intel(0): Output LVDS connected (II) intel(0): I2C device "LVDSDDC_C:ddc2" registered at address 0xA0. (II) intel(0): I2C device "LVDSDDC_C:ddc2" removed. (II) intel(0): EDID for output LVDS (II) intel(0): Not using default mode "1024x768" (exceeds panel dimensions) (II) intel(0): Not using default mode "1024x768" (exceeds panel dimensions) (II) intel(0): Not using default mode "1024x768" (exceeds panel dimensions) (II) intel(0): Not using default mode "1024x768" (exceeds panel dimensions) (II) intel(0): Not using default mode "1152x864" (exceeds panel dimensions) (II) intel(0): Not using default mode "1280x960" (exceeds panel dimensions) (II) intel(0): Not using default mode "1280x960" (exceeds panel dimensions) (II) intel(0): Not using default mode "1280x1024" (exceeds panel dimensions) (II) intel(0): Not using default mode "1280x1024" (exceeds panel dimensions) (II) intel(0): Not using default mode "1280x1024" (exceeds panel dimensions) (II) intel(0): Not using default mode "1600x1200" (exceeds panel dimensions) (II) intel(0): Not using default mode "1600x1200" (exceeds panel dimensions) (II) intel(0): Not using default mode "1600x1200" (exceeds panel dimensions) (II) intel(0): Not using default mode "1600x1200" (exceeds panel dimensions) (II) intel(0): Not using default mode "1600x1200" (exceeds panel dimensions) (II) intel(0): Not using default mode "1792x1344" (exceeds panel dimensions) (II) intel(0): Not using default mode "1792x1344" (exceeds panel dimensions) (II) intel(0): Not using default mode "1856x1392" (exceeds panel dimensions) (II) intel(0): Not using default mode "1856x1392" (exceeds panel dimensions) (II) intel(0): Not using default mode "1920x1440" (exceeds panel dimensions) (II) intel(0): Not using default mode "1920x1440" (exceeds panel dimensions) (II) intel(0): Not using default mode "832x624" (exceeds panel dimensions) (II) intel(0): Not using default mode "1152x768" (exceeds panel dimensions) (II) intel(0): Not using default mode "1400x1050" (exceeds panel dimensions) (II) intel(0): Not using default mode "1400x1050" (exceeds panel dimensions) (II) intel(0): Not using default mode "1600x1024" (exceeds panel dimensions) (II) intel(0): Not using default mode "1920x1440" (exceeds panel dimensions) (II) intel(0): Not using default mode "2048x1536" (exceeds panel dimensions) (II) intel(0): Not using default mode "2048x1536" (exceeds panel dimensions) (II) intel(0): Not using default mode "2048x1536" (exceeds panel dimensions) (II) intel(0): Printing probed modes for output LVDS (II) intel(0): Modeline "800x600"x57.7 66.28 800 1056 1104 1410 600 704 707 815 (47.0 kHz) (II) intel(0): Modeline "800x600"x85.1 56.30 800 832 896 1048 600 601 604 631 +hsync +vsync (53.7 kHz) (II) intel(0): Modeline "800x600"x72.2 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz) (II) intel(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz) (II) intel(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz) (II) intel(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz) (II) intel(0): Modeline "640x480"x85.0 36.00 640 696 752 832 480 481 484 509 -hsync -vsync (43.3 kHz) (II) intel(0): Modeline "640x480"x72.8 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz) (II) intel(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz) (II) intel(0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz) (II) intel(0): Modeline "720x400"x85.0 35.50 720 756 828 936 400 401 404 446 -hsync +vsync (37.9 kHz) (II) intel(0): Modeline "640x400"x85.1 31.50 640 672 736 832 400 401 404 445 -hsync +vsync (37.9 kHz) (II) intel(0): Modeline "640x350"x85.1 31.50 640 672 736 832 350 382 385 445 +hsync -vsync (37.9 kHz) (II) intel(0): Output TV disconnected (II) intel(0): EDID for output TV (II) intel(0): Output VGA disconnected (II) intel(0): Output LVDS connected (II) intel(0): Output TV disconnected (II) intel(0): Output LVDS using initial mode 800x600 (II) intel(0): Monitoring connected displays enabled (II) intel(0): detected 512 kB GTT. (II) intel(0): detected 7676 kB stolen memory. (==) intel(0): video overlay key set to 0x101fe (==) intel(0): Will not try to enable page flipping (**) intel(0): Triple buffering enabled (==) intel(0): Using gamma correction (1.0, 1.0, 1.0) (**) intel(0): Display dimensions: (332, 207) mm (**) intel(0): DPI set to (61, 98) (II) Loading /usr/lib/xorg/modules//libfb.so (II) Module fb: vendor="X.Org Foundation" compiled for 7.2.0, module version = 1.0.0 ABI class: X.Org ANSI C Emulation, version 0.3 (II) Loading /usr/lib/xorg/modules//libxaa.so (II) Module xaa: vendor="X.Org Foundation" compiled for 7.2.0, module version = 1.2.0 ABI class: X.Org Video Driver, version 1.2 (II) Module already built-in (II) intel(0): Comparing regs from server start up to After PreInit (WW) intel(0): Register 0x61200 (PP_STATUS) changed from 0xc0000008 to 0xd0000009 (WW) intel(0): PP_STATUS before: on, ready, sequencing idle (WW) intel(0): PP_STATUS after: on, ready, sequencing on (II) Reloading /usr/lib/xorg/modules//extensions/libdri.so (==) Depth 24 pixmap format is 32 bpp (II) intel(0): Kernel reported 488960 total, 13311 used (II) intel(0): I830CheckAvailableMemory: 1902596 kB available (==) intel(0): VideoRam: 262144 KB (II) intel(0): Attempting memory allocation with tiled buffers and large DRI memory manager reservation: (II) intel(0): Allocating 4732 scanlines for pixmap cache (II) intel(0): Success. (II) intel(0): Increasing the scanline pitch to allow tiling mode (832 -> 896). (II) intel(0): Memory allocation layout: (II) intel(0): 0x00000000-0x0001ffff: ring buffer (128 kB) (II) intel(0): 0x00020000-0x00029fff: HW cursors (40 kB) (II) intel(0): 0x0002a000-0x00031fff: logical 3D context (32 kB) (II) intel(0): 0x00032000-0x00041fff: exa G965 state buffer (64 kB) (II) intel(0): 0x00050000-0x01338fff: front buffer (19364 kB) (II) intel(0): 0x0077f000: end of stolen memory (II) intel(0): 0x01339000-0x01348fff: xaa scratch (64 kB) (II) intel(0): 0x01349000-0x01604fff: back buffer (2800 kB) (II) intel(0): 0x01605000-0x018c0fff: third buffer (2800 kB) (II) intel(0): 0x018c1000-0x01b7cfff: depth buffer (2800 kB) (II) intel(0): 0x01b7d000-0x03b7cfff: textures (32768 kB) (II) intel(0): 0x10000000: end of aperture (II) intel(0): front buffer is not tiled (II) intel(0): back buffer is tiled (II) intel(0): third buffer is tiled (II) intel(0): depth buffer is tiled (II) intel(0): [drm] DRM interface version 1.0 (II) intel(0): [drm] drmSetBusid failed (12, pci:0000:00:02.0), Permission denied (EE) intel(0): [dri] DRIScreenInit failed. Disabling DRI. (II) intel(0): Page Flipping disabled (==) intel(0): Write-combining range (0xd0000000,0x10000000) (II) intel(0): Using XFree86 Acceleration Architecture (XAA) Screen to screen bit blits Solid filled rectangles 8x8 mono pattern filled rectangles Indirect CPU to Screen color expansion Solid Horizontal and Vertical Lines Offscreen Pixmaps Setting up tile and stipple cache: 32 128x128 slots 26 256x256 slots 7 512x512 slots (==) intel(0): Backing store disabled (==) intel(0): Silken mouse enabled (II) intel(0): Initializing HW Cursor (II) intel(0): Output configuration: (II) intel(0): Pipe A is off (II) intel(0): Display plane A is now disabled and connected to pipe A. (II) intel(0): Pipe B is on (II) intel(0): Display plane B is now enabled and connected to pipe B. (II) intel(0): Output VGA is connected to pipe none (II) intel(0): Output LVDS is connected to pipe B (II) intel(0): Output TV is connected to pipe none (**) Option "dpms" (**) intel(0): DPMS enabled (II) intel(0): Set up textured video (II) intel(0): direct rendering: Failed (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message. (--) RandR disabled (II) Initializing built-in extension MIT-SHM (II) Initializing built-in extension XInputExtension (II) Initializing built-in extension XTEST (II) Initializing built-in extension XKEYBOARD (II) Initializing built-in extension XC-APPGROUP (II) Initializing built-in extension XAccessControlExtension (II) Initializing built-in extension SECURITY (II) Initializing built-in extension XINERAMA (II) Initializing built-in extension XFIXES (II) Initializing built-in extension XFree86-Bigfont (II) Initializing built-in extension RENDER (II) Initializing built-in extension RANDR (II) Initializing built-in extension COMPOSITE (II) Initializing built-in extension DAMAGE (II) Initializing built-in extension XEVIE (EE) AIGLX: Screen 0 is not DRI capable (II) Loading /usr/lib/xorg/modules//extensions/libGLcore.so (II) Module GLcore: vendor="X.Org Foundation" compiled for 7.2.0, module version = 1.0.0 ABI class: X.Org Server Extension, version 0.3 (II) GLX: Initialized MESA-PROXY GL provider for screen 0 (II) intel(0): Setting screen physical size to 211 x 158 (**) Option "CoreKeyboard" (**) Keyboard[0]: Core Keyboard (**) Option "Protocol" "Standard" (**) Keyboard[0]: Protocol: Standard (**) Option "AutoRepeat" "500 30" (**) Option "XkbRules" "xfree86" (**) Keyboard[0]: XkbRules: "xfree86" (**) Option "XkbModel" "pc105" (**) Keyboard[0]: XkbModel: "pc105" (**) Option "XkbLayout" "us" (**) Keyboard[0]: XkbLayout: "us" (**) Option "CustomKeycodes" "off" (**) Keyboard[0]: CustomKeycodes disabled (**) Option "Protocol" "explorerps/2" (**) Mouse[1]: Device: "/dev/input/mice" (**) Mouse[1]: Protocol: "explorerps/2" (**) Option "CorePointer" (**) Mouse[1]: Core Pointer (**) Option "Device" "/dev/input/mice" (**) Option "Buttons" "5" (==) Mouse[1]: Emulate3Buttons, Emulate3Timeout: 50 (**) Option "ZAxisMapping" "4 5" (**) Mouse[1]: ZAxisMapping: buttons 4 and 5 (**) Mouse[1]: Buttons: 9 (II) Synaptics touchpad driver version 0.14.6 (1406) (--) Mouse[3] auto-dev sets device to /dev/input/event3 (**) Option "Device" "/dev/input/event3" (**) Option "SHMConfig" "on" (**) Option "LeftEdge" "120" (**) Option "RightEdge" "830" (**) Option "TopEdge" "120" (**) Option "BottomEdge" "650" (**) Option "FingerLow" "14" (**) Option "FingerHigh" "15" (**) Option "MaxTapTime" "180" (**) Option "MaxTapMove" "110" (**) Option "EmulateMidButtonTime" "75" (**) Option "VertScrollDelta" "20" (**) Option "HorizScrollDelta" "20" (**) Option "EdgeMotionMinSpeed" "15" (**) Option "EdgeMotionMaxSpeed" "15" (**) Option "UpDownScrolling" "1" (**) Option "CircularScrolling" "1" (**) Option "CircScrollTrigger" "2" (--) Mouse[3] touchpad found (**) Option "SendCoreEvents" (**) Mouse[3]: always reports core events (II) XINPUT: Adding extended input device "Mouse[3]" (type: MOUSE) (II) XINPUT: Adding extended input device "Mouse[1]" (type: MOUSE) (II) XINPUT: Adding extended input device "Keyboard[0]" (type: KEYBOARD) Synaptics DeviceInit called SynapticsCtrl called. (II) Mouse[1]: ps2EnableDataReporting: succeeded Synaptics DeviceOn called (--) Mouse[3] auto-dev sets device to /dev/input/event3 (**) Option "Device" "/dev/input/event3" (--) Mouse[3] touchpad found ] 26-Jul 01:38:19 qx: command returned (null) string


hwinfo
# 01 Aug

10: PCI 02.0: 0300 VGA compatible controller (VGA) [Created at pci.296] UDI: /org/freedesktop/Hal/devices/pci_8086_2a02 Unique ID: _Znp.dcc4_Tt99d5 SysFS ID: /devices/pci0000:00/0000:00:02.0 SysFS BusID: 0000:00:02.0 Hardware Class: graphics card Model: "Sony 965 GM" Vendor: pci 0x8086 "Intel Corporation" Device: pci 0x2a02 "965 GM" SubVendor: pci 0x104d "Sony Corporation" SubDevice: pci 0x9005 Revision: 0x0c Memory Range: 0xfc000000-0xfc0fffff (rw,non-prefetchable) Memory Range: 0xd0000000-0xdfffffff (rw,prefetchable) I/O Ports: 0x1800-0x1807 (rw) IRQ: 17 (1 event) I/O Ports: 0x3c0-0x3df (rw) Module Alias: "pci:v00008086d00002A02sv0000104Dsd00009005bc03sc00i00" Driver Info #0: XFree86 v4 Server Module: intel Driver Info #1: XFree86 v4 Server Module: intel 3D Support: yes Extensions: dri Config Status: cfg=no, avail=yes, need=no, active=unknown 11: PCI 02.1: 0380 Display controller [Created at pci.296] UDI: /org/freedesktop/Hal/devices/pci_8086_2a03 Unique ID: ruGf.83_itJAqQEB SysFS ID: /devices/pci0000:00/0000:00:02.1 SysFS BusID: 0000:00:02.1 Hardware Class: graphics card Model: "Sony Display controller" Vendor: pci 0x8086 "Intel Corporation" Device: pci 0x2a03 SubVendor: pci 0x104d "Sony Corporation" SubDevice: pci 0x9005 Revision: 0x0c Memory Range: 0xfc100000-0xfc1fffff (rw,non-prefetchable) Module Alias: "pci:v00008086d00002A03sv0000104Dsd00009005bc03sc80i00" Config Status: cfg=no, avail=yes, need=no, active=unknown Primary display adapter: #10


vmware
# 02 Jul

92T8X-YRDDF-2G615-4K6RX


retail
# 02 Jul

E9ERB-TN9NN-A2P6R-BPLF9


ut2004
# 02 Jul

crack of Unreal Tournament 2004 v1.0 FR --------------------------------------- crack: fixed / no-CD crack ------ protection: Securom *new* ----------- editor: Atari ------- Installez le jeu (installation maximale par défaut) Décompressez puis mettez le crack UT2004.exe dans le dossier UT2004\System où se trouve déjà un UT2004.exe (remplacez-le). Aucun autre fichier n'est nécessaire pour jouer sans le CD. Enjoy !!! No-CD Instructions: Install the game - Full Installation. Unzip the crack, put it in UT2004\System and replace the old UT2004.exe with the crack. You needn't any other file to play without the CD. Play the Game. Enjoy !!! uLysse_31 Big thanks to all crackers and my friends...


kaufland
# 02 Jul

toti 4: 0.49 + 8.05 + 2.79 + 2.22 = 13.55/4 = 3.3875 toti 3: 10.74 + 6.99 + 2.66 = 20.39/3 = 6.7966 syl: 2.35 + 2.99 + 2.29/2 + 2*0.19/3 + 4.49 + 5.89 + 0.81/2 + 1.22/2 = 18.0066 + 3.3875 + 6.7966 = 28.1907 OK bogdan: 2.35 + 2.99 + 2.29/2 + 2*0.19/3 + 7.49 + 0.81/2 + 4.79 + 1.22/2 + 2.22 = 22.1266 + 3.3875 + 6.7966 = 32.3107 dragos: 2.99 + 2.99 + 2*0.19/3 = 6.1066 + 3.3875 + 6.7966 = 16.2907 syl + bogdan + dragos + viv: 7.74/4 + 9.54/4 = 4.32 toti 5: 2.69/5 + (2*0.49)/5 + 5.75/5 + 4.29/5 + 1.09/5 = 2.96 syl: 2.99 + 1.85 = 4.84 + 4.32 + 2.96 = 12.12 dragos: 3.32 + 3.69 + 3.99 + 3.49 + 2.29 = 16.78 + 4.32 + 2.96 = 24.06 dragos: 29.64 - 24.06 = 5.58 (4.32 de la bogdan + 1.26 tot de la bogdan) syl: 24.06 - 12.12 = 11.94 (4.32 de la viv + 1.7 de la bogdan + 2.96 de la bog + 2.96 viv = 7.28 viv + 1.7 bogdan + 2.96 bog) bogdan: 1.99 + 6.14/2 + 4.59 + 4.49 + 2.29 + 0.49/2 + 2*0.85 + 9.54/4 + 3.69/2 + 0.19/4 = 22.65 syl: 1.99 + 6.14/2 + 2.99 + 2*2.35 + 0.49/2 + 0.85 + 9.54/4 + 3*2.09/4 + 3.69/2 + 0.19/4 = 19.69 dragos: 2.99 + 9.54/4 + 0.19/4 = 5.42 viv: 2.09/4 + 9.54/4 + 0.19/4 = 2.95 syl: 1.99 + 2*(9.69/6) + 11.94/2 + 0.19/2 + 1.19 + 2.05/2 + 0.89 + 3.39 + 5.79 = 23.57 - 20.38 = viv: 2*4.89 + 2*(9.69/6) + 1.79 + 11.94/2 + 0.19/2 + 2.05/2 + 2.95 + 4.04 + 11.93 + 5.64 + 2.94 = 49.39 bog: 9.69/6 = 1.61 dragos: 9.69/6 = 1.61


cd key ut2004
# 02 Jul

LRGNX-EQ2UT-AVUNN-GD72T