Problem with homing ATC step motor

More
18 Oct 2019 21:59 #148229 by andypugh
Well, I tried your loadrt line, and no crash.

I don't know where to go from here, other than possibly setting up an identical system. I can't easily use your HAL and INI without a 7l92.

Can you see if the sim configs still work if you add that loadrt line to one of them?

Please Log in or Create an account to join the conversation.

More
24 Oct 2019 08:46 - 24 Oct 2019 08:49 #148682 by CNCDoc
Was not wise about which HAL file applies in sim configs

But I tried to replace encoding = bcd. Linuxcnc then starts without error code on all choices (gray, binary, index, edge or single) except "bcd".

But did not get the jog function to work. Nothing happens when I enable jog input

Must change so the carousel lock is not normally activated. Should not be a problem.

Have a copy (image) of my hard drive that I can share with you if you want?
Last edit: 24 Oct 2019 08:49 by CNCDoc.

Please Log in or Create an account to join the conversation.

More
24 Oct 2019 10:22 #148688 by andypugh
In that case I think that the issue might be the combination of 5 sense pins and BCD encoding.

github.com/LinuxCNC/linuxcnc/blob/master...s/carousel.comp#L166

The code makes an assumption that bcd-encoded carousels have sense pins in multiples of 4. With 5 sense pins it will read out-of bounds in the sense pin array. (This is a bug)

What are the actual sense pin allocations in your system?

Please Log in or Create an account to join the conversation.

More
24 Oct 2019 11:00 #148689 by CNCDoc
Does not have much information about the sensor but here is the connection for the old system.


Same sensor as in this thread:
67324

I'm pretty sure I tried changing to 4 sense pins and linuxcnc didn't start then either. Will double check tonight.

There is little difference in the code between the different versions:

From "old" comp
case 'D': // BCD
        i = 0;
        pow = 1;
        while (i < inst_sense){
            if (i < inst_sense) d += sense(i) << (i % 4);
            i++;
            if (i < inst_sense) d += sense(i) << (i % 4);
            i++;
            if (i < inst_sense) d += sense(i) << (i % 4);
            i++;
            if (i < inst_sense) d += sense(i) << (i % 4);
            i++;
            p += d * pow;
            pow *= 10;
            d = 0;
        }
        break;

From "new" comp
case 'D': // BCD
        i = 0;
        pow = 1;
        while (i < inst_sense){
            if (i < inst_sense) d += sense(i) << (i % 4);
            i++;
            if (i < inst_sense) d += sense(i) << (i % 4);
            i++;
            if (i < inst_sense) d += sense(i) << (i % 4);
            i++;
            if (i < inst_sense) d += sense(i) << (i % 4);
            i++;
            p += d * pow;
            pow *= 10;
            d = 0;
        pcalc ^= sense(i);
        }
        break;
Attachments:

Please Log in or Create an account to join the conversation.

More
24 Oct 2019 12:40 - 24 Oct 2019 12:43 #148694 by andypugh
The pcalc line does not check that i is in range.
Just delete it and see if that helps. It is doing a bogus parity calculation anyway.

The code should probably be
case 'D': // BCD
        i = 0;
        pow = 1;
        while (i < inst_sense){
            int lim;
            d = 0;
            for (lim = i + 4; i < inst_sense && i < lim; i++) {
                d += sense(i) << (i % 4);
                pcalc ^= sense(i);
            }
            p += d * pow;
            pow *= 10;
        }
        break;
Last edit: 24 Oct 2019 12:43 by andypugh.

Please Log in or Create an account to join the conversation.

More
24 Oct 2019 17:10 #148714 by CNCDoc
Get a error when compile
XXX@XXX:~/linuxcnc$ sudo halcompile --install carousel.comp
[sudo] password for cnc: 
Compiling realtime carousel.c
carousel.comp: In function ‘_’:
carousel.comp:134:17: error: ‘pcalc’ undeclared (first use in this function)
carousel.comp:134:17: note: each undeclared identifier is reported only once for each function it appears in
make: *** [carousel.o] Fel 1
XXX@XXX:~/linuxcnc$ 

File Attachment:

File Name: carousel_2...-24.comp
File Size:8 KB
Attachments:

Please Log in or Create an account to join the conversation.

More
24 Oct 2019 17:16 #148715 by CNCDoc
"num_sense=4" give this error:
Print file information:
RUN_IN_PLACE=no
LINUXCNC_DIR=
LINUXCNC_BIN_DIR=/usr/bin
LINUXCNC_TCL_DIR=/usr/lib/tcltk/linuxcnc
LINUXCNC_SCRIPT_DIR=
LINUXCNC_RTLIB_DIR=/usr/lib/linuxcnc/modules
LINUXCNC_CONFIG_DIR=
LINUXCNC_LANG_DIR=/usr/share/linuxcnc/tcl/msgs
INIVAR=inivar
HALCMD=halcmd
LINUXCNC_EMCSH=/usr/bin/wish8.5
LINUXCNC - 2.7.14
Machine configuration directory is '/home/cnc/linuxcnc/configs/Modig_5000_ATC/Modig_5000'
Machine configuration file is 'Modig_5000.ini'
INIFILE=/home/cnc/linuxcnc/configs/Modig_5000_ATC/Modig_5000/Modig_5000.ini
PARAMETER_FILE=linuxcnc.var
TASK=milltask
HALUI=halui
DISPLAY=axis
Starting LinuxCNC...
Starting LinuxCNC server program: linuxcncsvr
Loading Real Time OS, RTAPI, and HAL_LIB modules
Starting LinuxCNC IO program: io
Starting HAL User Interface program: halui
Found file(REL): ./Modig_5000.hal
hm2: loading Mesa HostMot2 driver version 0.15
hm2_eth: loading Mesa AnyIO HostMot2 ethernet driver version 0.2
hm2_eth: 10.10.10.10: Hardware address: 00:60:1b:13:04:d3
hm2_eth: discovered 7I92
hm2/hm2_7i92.0: Smart Serial Firmware Version 43
Board hm2_7i92.0.7i77.0.0 Hardware Mode 0 = standard
Board hm2_7i92.0.7i77.0.0 Software Mode 0 = input_output
Board hm2_7i92.0.7i77.0.0 Software Mode 1 = io_analog
Board hm2_7i92.0.7i77.0.0 Software Mode 2 = io_analog_fieldvoltage
Board hm2_7i92.0.7i77.0.0 Software Mode 3 = io_encoder_analog_fieldvoltage
Board hm2_7i92.0.7i77.0.1 Hardware Mode 0 = standard
Board hm2_7i92.0.7i77.0.1 Software Mode 0 = analogout_enables
hm2/hm2_7i92.0: 34 I/O Pins used:
hm2/hm2_7i92.0:     IO Pin 000 (P2-01): IOPort
hm2/hm2_7i92.0:     IO Pin 001 (P2-14): IOPort
hm2/hm2_7i92.0:     IO Pin 002 (P2-02): IOPort
hm2/hm2_7i92.0:     IO Pin 003 (P2-15): Smart Serial Interface #0, pin TxData1 (Output)
hm2/hm2_7i92.0:     IO Pin 004 (P2-03): Smart Serial Interface #0, pin RxData1 (Input)
hm2/hm2_7i92.0:     IO Pin 005 (P2-16): Smart Serial Interface #0, pin TxData0 (Output)
hm2/hm2_7i92.0:     IO Pin 006 (P2-04): Smart Serial Interface #0, pin RxData0 (Input)
hm2/hm2_7i92.0:     IO Pin 007 (P2-17): Muxed Encoder Select #0, pin Mux Select 0 (Output)
hm2/hm2_7i92.0:     IO Pin 008 (P2-05): Muxed Encoder #0, pin Muxed A (Input)
hm2/hm2_7i92.0:     IO Pin 009 (P2-06): Muxed Encoder #0, pin Muxed B (Input)
hm2/hm2_7i92.0:     IO Pin 010 (P2-07): Muxed Encoder #0, pin Muxed Index (Input)
hm2/hm2_7i92.0:     IO Pin 011 (P2-08): Muxed Encoder #1, pin Muxed A (Input)
hm2/hm2_7i92.0:     IO Pin 012 (P2-09): Muxed Encoder #1, pin Muxed B (Input)
hm2/hm2_7i92.0:     IO Pin 013 (P2-10): Muxed Encoder #1, pin Muxed Index (Input)
hm2/hm2_7i92.0:     IO Pin 014 (P2-11): IOPort
hm2/hm2_7i92.0:     IO Pin 015 (P2-12): IOPort
hm2/hm2_7i92.0:     IO Pin 016 (P2-13): IOPort
hm2/hm2_7i92.0:     IO Pin 017 (P1-01): IOPort
hm2/hm2_7i92.0:     IO Pin 018 (P1-14): IOPort
hm2/hm2_7i92.0:     IO Pin 019 (P1-02): IOPort
hm2/hm2_7i92.0:     IO Pin 020 (P1-15): IOPort
hm2/hm2_7i92.0:     IO Pin 021 (P1-03): IOPort
hm2/hm2_7i92.0:     IO Pin 022 (P1-16): IOPort
hm2/hm2_7i92.0:     IO Pin 023 (P1-04): IOPort
hm2/hm2_7i92.0:     IO Pin 024 (P1-17): IOPort
hm2/hm2_7i92.0:     IO Pin 025 (P1-05): IOPort
hm2/hm2_7i92.0:     IO Pin 026 (P1-06): IOPort
hm2/hm2_7i92.0:     IO Pin 027 (P1-07): IOPort
hm2/hm2_7i92.0:     IO Pin 028 (P1-08): IOPort
hm2/hm2_7i92.0:     IO Pin 029 (P1-09): IOPort
hm2/hm2_7i92.0:     IO Pin 030 (P1-10): IOPort
hm2/hm2_7i92.0:     IO Pin 031 (P1-11): IOPort
hm2/hm2_7i92.0:     IO Pin 032 (P1-12): IOPort
hm2/hm2_7i92.0:     IO Pin 033 (P1-13): IOPort
hm2/hm2_7i92.0: registered
creating ladder-state
Found file(REL): ./custom.hal
INFO CLASSICLADDER-   No ladder GUI requested-Realtime runs till HAL closes.
Found file(REL): ./toolchange.hal
Starting TASK program: milltask
Starting DISPLAY program: axis
USRMOT: ERROR: command timeout
USRMOT: ERROR: command timeout
USRMOT: ERROR: command timeout
USRMOT: ERROR: command timeout
waiting for s.axes
waiting for s.axes
waiting for s.axes
waiting for s.axes
waiting for s.axes
waiting for s.axes
waiting for s.axes
waiting for s.axes
waiting for s.axes
Shutting down and cleaning up LinuxCNC...
USRMOT: ERROR: command timeout
Running HAL shutdown script
Killing task linuxcncsvr, PID=3982
Killing task milltask, PID=4036
USRMOT: ERROR: command timeout
USRMOT: ERROR: command timeout
Timeout, trying kill -9
Removing HAL_LIB, RTAPI, and Real Time OS modules
Removing NML shared memory segments

Debug file information:
Note: Using POSIX realtime

rtapi_app: caught signal 11 - dumping core
A configuration error is preventing LinuxCNC from starting.
More information may be available when running from a terminal.
3982
  PID TTY      STAT   TIME COMMAND
4036
  PID TTY      STAT   TIME COMMAND
 4036 ?        S      0:00 milltask -ini /home/cnc/linuxcnc/configs/Modig_5000_ATC/Modig_5000/Modig_5000.ini
  PID TTY      STAT   TIME COMMAND
 4036 ?        S      0:00 milltask -ini /home/cnc/linuxcnc/configs/Modig_5000_ATC/Modig_5000/Modig_5000.ini
  PID TTY      STAT   TIME COMMAND
 4036 ?        S      0:00 milltask -ini /home/cnc/linuxcnc/configs/Modig_5000_ATC/Modig_5000/Modig_5000.ini
  PID TTY      STAT   TIME COMMAND
 4036 ?        S      0:00 milltask -ini /home/cnc/linuxcnc/configs/Modig_5000_ATC/Modig_5000/Modig_5000.ini
  PID TTY      STAT   TIME COMMAND
 4036 ?        S      0:00 milltask -ini /home/cnc/linuxcnc/configs/Modig_5000_ATC/Modig_5000/Modig_5000.ini
  PID TTY      STAT   TIME COMMAND
 4036 ?        S      0:00 milltask -ini /home/cnc/linuxcnc/configs/Modig_5000_ATC/Modig_5000/Modig_5000.ini
  PID TTY      STAT   TIME COMMAND
 4036 ?        S      0:00 milltask -ini /home/cnc/linuxcnc/configs/Modig_5000_ATC/Modig_5000/Modig_5000.ini
  PID TTY      STAT   TIME COMMAND
 4036 ?        S      0:00 milltask -ini /home/cnc/linuxcnc/configs/Modig_5000_ATC/Modig_5000/Modig_5000.ini
  PID TTY      STAT   TIME COMMAND
 4036 ?        S      0:00 milltask -ini /home/cnc/linuxcnc/configs/Modig_5000_ATC/Modig_5000/Modig_5000.ini
  PID TTY      STAT   TIME COMMAND
 4036 ?        S      0:00 milltask -ini /home/cnc/linuxcnc/configs/Modig_5000_ATC/Modig_5000/Modig_5000.ini
  PID TTY      STAT   TIME COMMAND
 4036 ?        S      0:00 milltask -ini /home/cnc/linuxcnc/configs/Modig_5000_ATC/Modig_5000/Modig_5000.ini
  PID TTY      STAT   TIME COMMAND
 4036 ?        S      0:00 milltask -ini /home/cnc/linuxcnc/configs/Modig_5000_ATC/Modig_5000/Modig_5000.ini
  PID TTY      STAT   TIME COMMAND
 4036 ?        S      0:00 milltask -ini /home/cnc/linuxcnc/configs/Modig_5000_ATC/Modig_5000/Modig_5000.ini
  PID TTY      STAT   TIME COMMAND
 4036 ?        S      0:00 milltask -ini /home/cnc/linuxcnc/configs/Modig_5000_ATC/Modig_5000/Modig_5000.ini
  PID TTY      STAT   TIME COMMAND
 4036 ?        S      0:00 milltask -ini /home/cnc/linuxcnc/configs/Modig_5000_ATC/Modig_5000/Modig_5000.ini
  PID TTY      STAT   TIME COMMAND
 4036 ?        S      0:00 milltask -ini /home/cnc/linuxcnc/configs/Modig_5000_ATC/Modig_5000/Modig_5000.ini
  PID TTY      STAT   TIME COMMAND
 4036 ?        S      0:00 milltask -ini /home/cnc/linuxcnc/configs/Modig_5000_ATC/Modig_5000/Modig_5000.ini
  PID TTY      STAT   TIME COMMAND
 4036 ?        S      0:00 milltask -ini /home/cnc/linuxcnc/configs/Modig_5000_ATC/Modig_5000/Modig_5000.ini
  PID TTY      STAT   TIME COMMAND
 4036 ?        S      0:00 milltask -ini /home/cnc/linuxcnc/configs/Modig_5000_ATC/Modig_5000/Modig_5000.ini
/usr/bin/linuxcnc: rad 496:  4036 Dödad                  $EMCTASK -ini "$INIFILE"
  PID TTY      STAT   TIME COMMAND
Stopping realtime threads
Unloading hal components
Waited 3 seconds for master.  giving up.
Note: Using POSIX realtime
conv_float_s32: not loaded
<commandline>:0: exit value: 255
<commandline>:0: rmmod failed, returned -1
Note: Using POSIX realtime
carousel: not loaded
<commandline>:0: exit value: 255
<commandline>:0: rmmod failed, returned -1
Note: Using POSIX realtime
gearbox: not loaded
<commandline>:0: exit value: 255
<commandline>:0: rmmod failed, returned -1
Note: Using POSIX realtime
ilowpass: not loaded
<commandline>:0: exit value: 255
<commandline>:0: rmmod failed, returned -1
Note: Using POSIX realtime
timedelay: not loaded
<commandline>:0: exit value: 255
<commandline>:0: rmmod failed, returned -1
Note: Using POSIX realtime
or2: not loaded
<commandline>:0: exit value: 255
<commandline>:0: rmmod failed, returned -1
Note: Using POSIX realtime
and2: not loaded
<commandline>:0: exit value: 255
<commandline>:0: rmmod failed, returned -1
Note: Using POSIX realtime
mux16: not loaded
<commandline>:0: exit value: 255
<commandline>:0: rmmod failed, returned -1
Note: Using POSIX realtime
classicladder_rt: not loaded
<commandline>:0: exit value: 255
<commandline>:0: rmmod failed, returned -1
Note: Using POSIX realtime
pid: not loaded
<commandline>:0: exit value: 255
<commandline>:0: rmmod failed, returned -1
Note: Using POSIX realtime
hm2_eth: not loaded
<commandline>:0: exit value: 255
<commandline>:0: rmmod failed, returned -1
Note: Using POSIX realtime
hostmot2: not loaded
<commandline>:0: exit value: 255
<commandline>:0: rmmod failed, returned -1
Note: Using POSIX realtime
motmod: not loaded
<commandline>:0: exit value: 255
<commandline>:0: rmmod failed, returned -1
Note: Using POSIX realtime
trivkins: not loaded
<commandline>:0: exit value: 255
<commandline>:0: rmmod failed, returned -1
<commandline>:0: unloadrt failed
Note: Using POSIX realtime

Kernel message information:
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 3.2.0-4-rt-686-pae (debian-kernel@lists.debian.org) (gcc version 4.6.3 (Debian 4.6.3-14) ) #1 SMP PREEMPT RT Debian 3.2.78-1
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 00000000000a0000 (usable)
[    0.000000]  BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 000000007fe88c00 (usable)
[    0.000000]  BIOS-e820: 000000007fe88c00 - 000000007fe8ac00 (ACPI NVS)
[    0.000000]  BIOS-e820: 000000007fe8ac00 - 000000007fe8cc00 (ACPI data)
[    0.000000]  BIOS-e820: 000000007fe8cc00 - 0000000080000000 (reserved)
[    0.000000]  BIOS-e820: 00000000f0000000 - 00000000f4000000 (reserved)
[    0.000000]  BIOS-e820: 00000000fec00000 - 00000000fed00400 (reserved)
[    0.000000]  BIOS-e820: 00000000fed20000 - 00000000feda0000 (reserved)
[    0.000000]  BIOS-e820: 00000000fee00000 - 00000000fef00000 (reserved)
[    0.000000]  BIOS-e820: 00000000ffb00000 - 0000000100000000 (reserved)
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.3 present.
[    0.000000] DMI: Dell Inc.                 Dell DM051                   /0WG261, BIOS A04 02/03/2006
[    0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
[    0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
[    0.000000] last_pfn = 0x7fe88 max_arch_pfn = 0x1000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-D3FFF write-protect
[    0.000000]   D4000-EFFFF uncachable
[    0.000000]   F0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask F80000000 write-back
[    0.000000]   1 base 07FF00000 mask FFFF00000 uncachable
[    0.000000]   2 disabled
[    0.000000]   3 disabled
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] found SMP MP-table at [c00fe710] fe710
[    0.000000] initial memory mapped : 0 - 01a00000
[    0.000000] Base memory trampoline at [c009b000] 9b000 size 16384
[    0.000000] init_memory_mapping: 0000000000000000-00000000379fe000
[    0.000000]  0000000000 - 0000200000 page 4k
[    0.000000]  0000200000 - 0037800000 page 2M
[    0.000000]  0037800000 - 00379fe000 page 4k
[    0.000000] kernel direct mapping tables up to 379fe000 @ 19f9000-1a00000
[    0.000000] RAMDISK: 36c5e000 - 37627000
[    0.000000] ACPI: RSDP 0x00000000000FEB00 00024 (v02 DELL  )
[    0.000000] ACPI: XSDT 0x00000000000FD25D 0005C (v01 DELL   DM051    00000007 ASL  00000061)
[    0.000000] ACPI: FACP 0x00000000000FD355 000F4 (v03 DELL   DM051    00000007 ASL  00000061)
[    0.000000] ACPI: DSDT 0x00000000FFFC74FC 02D0E (v01 DELL   dt_ex    00001000 INTL 20050309)
[    0.000000] ACPI: FACS 0x000000007FE88C00 00040
[    0.000000] ACPI: SSDT 0x00000000FFFCA32B 000AC (v01 DELL   st_ex    00001000 INTL 20050309)
[    0.000000] ACPI: APIC 0x00000000000FD449 00072 (v01 DELL   DM051    00000007 ASL  00000061)
[    0.000000] ACPI: BOOT 0x00000000000FD4BB 00028 (v01 DELL   DM051    00000007 ASL  00000061)
[    0.000000] ACPI: ASF! 0x00000000000FD4E3 00067 (v16 DELL   DM051    00000007 ASL  00000061)
[    0.000000] ACPI: MCFG 0x00000000000FD54A 0003E (v01 DELL   DM051    00000007 ASL  00000061)
[    0.000000] ACPI: HPET 0x00000000000FD588 00038 (v01 DELL   DM051    00000007 ASL  00000061)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] 1156MB HIGHMEM available.
[    0.000000] 889MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 379fe000
[    0.000000]   low ram: 0 - 379fe000
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000010 -> 0x00001000
[    0.000000]   Normal   0x00001000 -> 0x000379fe
[    0.000000]   HighMem  0x000379fe -> 0x0007fe88
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[2] active PFN ranges
[    0.000000]     0: 0x00000010 -> 0x000000a0
[    0.000000]     0: 0x00000100 -> 0x0007fe88
[    0.000000] On node 0 totalpages: 523800
[    0.000000] free_area_init_node: node 0, pgdat c14133c0, node_mem_map f5c5e200
[    0.000000]   DMA zone: 32 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 3952 pages, LIFO batch:0
[    0.000000]   Normal zone: 1748 pages used for memmap
[    0.000000]   Normal zone: 221994 pages, LIFO batch:31
[    0.000000]   HighMem zone: 2314 pages used for memmap
[    0.000000]   HighMem zone: 293760 pages, LIFO batch:31
[    0.000000] Using APIC driver default
[    0.000000] ACPI: PM-Timer IO Port: 0x808
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x06] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x05] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x07] disabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high level lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x08] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] SMP: Allowing 4 CPUs, 3 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
[    0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
[    0.000000] Allocating PCI resources starting at 80000000 (gap: 80000000:70000000)
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:32 nr_cpumask_bits:32 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] PERCPU: Embedded 93 pages/cpu @f786e000 s360128 r0 d20800 u380928
[    0.000000] pcpu-alloc: s360128 r0 d20800 u380928 alloc=93*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 519706
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.2.0-4-rt-686-pae root=UUID=38f0a84a-d6b1-48cf-bcca-8f62173e25f9 ro quiet
[    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Initializing CPU#0
[    0.000000] Initializing HighMem for node 0 (000379fe:0007fe88)
[    0.000000] Memory: 2060332k/2095648k available (2859k kernel code, 34868k reserved, 1343k data, 728k init, 1184296k highmem)
[    0.000000] virtual kernel memory layout:
[    0.000000]     fixmap  : 0xffd36000 - 0xfffff000   (2852 kB)
[    0.000000]     pkmap   : 0xffa00000 - 0xffc00000   (2048 kB)
[    0.000000]     vmalloc : 0xf81fe000 - 0xff9fe000   ( 120 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xf79fe000   ( 889 MB)
[    0.000000]       .init : 0xc141b000 - 0xc14d1000   ( 728 kB)
[    0.000000]       .data : 0xc12cad60 - 0xc141aa40   (1343 kB)
[    0.000000]       .text : 0xc1000000 - 0xc12cad60   (2859 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000000] Preemptible hierarchical RCU implementation.
[    0.000000] NR_IRQS:2304 nr_irqs:712 16
[    0.000000] CPU 0 irqstacks, hard=f580a000 soft=f580c000
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] hpet clockevent registered
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Detected 2992.345 MHz processor.
[    0.004003] Calibrating delay loop (skipped), value calculated using timer frequency.. 5984.69 BogoMIPS (lpj=11969380)
[    0.004008] pid_max: default: 32768 minimum: 301
[    0.004079] Security Framework initialized
[    0.004086] AppArmor: AppArmor disabled by boot time parameter
[    0.004113] Mount-cache hash table entries: 512
[    0.008020] Initializing cgroup subsys cpuacct
[    0.008027] Initializing cgroup subsys memory
[    0.008044] Initializing cgroup subsys devices
[    0.008047] Initializing cgroup subsys freezer
[    0.008049] Initializing cgroup subsys net_cls
[    0.008052] Initializing cgroup subsys blkio
[    0.008062] Initializing cgroup subsys perf_event
[    0.008113] CPU: Physical Processor ID: 0
[    0.008115] CPU: Processor Core ID: 0
[    0.008118] mce: CPU supports 4 MCE banks
[    0.008132] CPU0: Thermal monitoring enabled (TM1)
[    0.008138] using mwait in idle threads.
[    0.008217] SMP alternatives: switching to UP code
[    0.012029] ACPI: Core revision 20110623
[    0.079832] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.080225] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.119919] CPU0: Intel(R) Pentium(R) 4 CPU 3.00GHz stepping 03
[    0.120006] Performance Events: Netburst events, Netburst P4/Xeon PMU driver.
[    0.120006] ... version:                0
[    0.120006] ... bit width:              40
[    0.120006] ... generic registers:      18
[    0.120006] ... value mask:             000000ffffffffff
[    0.120006] ... max period:             0000007fffffffff
[    0.120006] ... fixed-purpose events:   0
[    0.120006] ... event mask:             000000000003ffff
[    0.136276] NMI watchdog enabled, takes one hw-pmu counter.
[    0.140027] Brought up 1 CPUs
[    0.140032] Total of 1 processors activated (5984.69 BogoMIPS).
[    0.141302] devtmpfs: initialized
[    0.141720] PM: Registering ACPI NVS region at 7fe88c00 (8192 bytes)
[    0.142078] print_constraints: dummy: 
[    0.142204] NET: Registered protocol family 16
[    0.142428] ACPI: bus type pci registered
[    0.142572] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf0000000-0xf3ffffff] (base 0xf0000000)
[    0.142578] PCI: MMCONFIG at [mem 0xf0000000-0xf3ffffff] reserved in E820
[    0.142582] PCI: Using MMCONFIG for extended config space
[    0.142585] PCI: Using configuration type 1 for base access
[    0.144160] bio: create slab <bio-0> at 0
[    0.144357] ACPI: Added _OSI(Module Device)
[    0.144362] ACPI: Added _OSI(Processor Device)
[    0.144366] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.144370] ACPI: Added _OSI(Processor Aggregator Device)
[    0.145407] ACPI: EC: Look up EC in DSDT
[    0.164055] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.174578] ACPI: Interpreter enabled
[    0.174600] ACPI: (supports S0 S1 S3 S4 S5)
[    0.174667] ACPI: Using IOAPIC for interrupt routing
[    0.234649] ACPI: No dock devices found.
[    0.234654] HEST: Table not found.
[    0.234663] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
[    0.248072] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.272065] pci_root PNP0A03:00: host bridge window [io  0x0000-0x0cf7] (ignored)
[    0.272072] pci_root PNP0A03:00: host bridge window [io  0x0d00-0xffff] (ignored)
[    0.272077] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
[    0.272081] pci_root PNP0A03:00: host bridge window [mem 0x000c0000-0x000effff] (ignored)
[    0.272085] pci_root PNP0A03:00: host bridge window [mem 0x000f0000-0x000fffff] (ignored)
[    0.272090] pci_root PNP0A03:00: host bridge window [mem 0x80000000-0xefffffff] (ignored)
[    0.272094] pci_root PNP0A03:00: host bridge window [mem 0xf4000000-0xfebfffff] (ignored)
[    0.272098] pci_root PNP0A03:00: host bridge window [mem 0xffa80800-0xffa80bff] (ignored)
[    0.272103] pci_root PNP0A03:00: host bridge window [mem 0xffa7c000-0xffa7ffff] (ignored)
[    0.272128] pci 0000:00:00.0: [8086:2770] type 0 class 0x000600
[    0.272197] pci 0000:00:01.0: [8086:2771] type 1 class 0x000604
[    0.272261] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.272325] pci 0000:00:1c.0: [8086:27d0] type 1 class 0x000604
[    0.272415] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.272451] pci 0000:00:1d.0: [8086:27c8] type 0 class 0x000c03
[    0.272501] pci 0000:00:1d.0: reg 20: [io  0xff80-0xff9f]
[    0.272546] pci 0000:00:1d.1: [8086:27c9] type 0 class 0x000c03
[    0.272595] pci 0000:00:1d.1: reg 20: [io  0xff60-0xff7f]
[    0.272636] pci 0000:00:1d.2: [8086:27ca] type 0 class 0x000c03
[    0.272685] pci 0000:00:1d.2: reg 20: [io  0xff40-0xff5f]
[    0.272729] pci 0000:00:1d.3: [8086:27cb] type 0 class 0x000c03
[    0.272778] pci 0000:00:1d.3: reg 20: [io  0xff20-0xff3f]
[    0.272829] pci 0000:00:1d.7: [8086:27cc] type 0 class 0x000c03
[    0.272853] pci 0000:00:1d.7: reg 10: [mem 0xffa80800-0xffa80bff]
[    0.272952] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[    0.272984] pci 0000:00:1e.0: [8086:244e] type 1 class 0x000604
[    0.273066] pci 0000:00:1f.0: [8086:27b8] type 0 class 0x000601
[    0.273162] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0c00 (mask 007f)
[    0.273168] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at 00e0 (mask 0007)
[    0.273224] pci 0000:00:1f.1: [8086:27df] type 0 class 0x000101
[    0.273241] pci 0000:00:1f.1: reg 10: [io  0x01f0-0x01f7]
[    0.273254] pci 0000:00:1f.1: reg 14: [io  0x03f4-0x03f7]
[    0.273266] pci 0000:00:1f.1: reg 18: [io  0x0170-0x0177]
[    0.273278] pci 0000:00:1f.1: reg 1c: [io  0x0374-0x0377]
[    0.273290] pci 0000:00:1f.1: reg 20: [io  0xffa0-0xffaf]
[    0.273336] pci 0000:00:1f.2: [8086:27c0] type 0 class 0x000101
[    0.273354] pci 0000:00:1f.2: reg 10: [io  0xfe00-0xfe07]
[    0.273365] pci 0000:00:1f.2: reg 14: [io  0xfe10-0xfe13]
[    0.273376] pci 0000:00:1f.2: reg 18: [io  0xfe20-0xfe27]
[    0.273387] pci 0000:00:1f.2: reg 1c: [io  0xfe30-0xfe33]
[    0.273398] pci 0000:00:1f.2: reg 20: [io  0xfea0-0xfeaf]
[    0.273409] pci 0000:00:1f.2: reg 24: [mem 0x00000000-0x000003ff]
[    0.273448] pci 0000:00:1f.2: PME# supported from D3hot
[    0.273472] pci 0000:00:1f.3: [8086:27da] type 0 class 0x000c05
[    0.273532] pci 0000:00:1f.3: reg 20: [io  0xece0-0xecff]
[    0.273625] pci 0000:01:00.0: [1002:9598] type 0 class 0x000300
[    0.273645] pci 0000:01:00.0: reg 10: [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.273660] pci 0000:01:00.0: reg 18: [mem 0xefdf0000-0xefdfffff 64bit]
[    0.273671] pci 0000:01:00.0: reg 20: [io  0xdc00-0xdcff]
[    0.273690] pci 0000:01:00.0: reg 30: [mem 0xefe00000-0xefe1ffff pref]
[    0.273733] pci 0000:01:00.0: supports D1 D2
[    0.273765] pci 0000:01:00.1: [1002:aa20] type 0 class 0x000403
[    0.273785] pci 0000:01:00.1: reg 10: [mem 0xefdec000-0xefdeffff 64bit]
[    0.273863] pci 0000:01:00.1: supports D1 D2
[    0.280041] pci 0000:00:01.0: PCI bridge to [bus 01-01]
[    0.280048] pci 0000:00:01.0:   bridge window [io  0xd000-0xdfff]
[    0.280054] pci 0000:00:01.0:   bridge window [mem 0xefd00000-0xefefffff]
[    0.280061] pci 0000:00:01.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.280115] pci 0000:00:1c.0: PCI bridge to [bus 02-02]
[    0.280128] pci 0000:00:1c.0:   bridge window [mem 0xefc00000-0xefcfffff]
[    0.280177] pci 0000:03:02.0: [1106:3106] type 0 class 0x000200
[    0.280200] pci 0000:03:02.0: reg 10: [io  0xcc00-0xccff]
[    0.280213] pci 0000:03:02.0: reg 14: [mem 0xefafef00-0xefafefff]
[    0.280265] pci 0000:03:02.0: reg 30: [mem 0xefb00000-0xefb0ffff pref]
[    0.280301] pci 0000:03:02.0: supports D1 D2
[    0.280305] pci 0000:03:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.280341] pci 0000:03:08.0: [8086:27dc] type 0 class 0x000200
[    0.280363] pci 0000:03:08.0: reg 10: [mem 0xefaff000-0xefafffff]
[    0.280376] pci 0000:03:08.0: reg 14: [io  0xc8c0-0xc8ff]
[    0.280455] pci 0000:03:08.0: supports D1 D2
[    0.280458] pci 0000:03:08.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.280503] pci 0000:00:1e.0: PCI bridge to [bus 03-03] (subtractive decode)
[    0.280508] pci 0000:00:1e.0:   bridge window [io  0xc000-0xcfff]
[    0.280514] pci 0000:00:1e.0:   bridge window [mem 0xefa00000-0xefbfffff]
[    0.280523] pci 0000:00:1e.0:   bridge window [io  0x0000-0xffff] (subtractive decode)
[    0.280528] pci 0000:00:1e.0:   bridge window [mem 0x00000000-0xfffffffff] (subtractive decode)
[    0.280546] pci_bus 0000:00: on NUMA node 0
[    0.280554] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.281732] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCI4._PRT]
[    0.282473] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCI2._PRT]
[    0.282902] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCI1._PRT]
[    0.283391]  pci0000:00: Requesting ACPI _OSC control (0x1d)
[    0.283398]  pci0000:00: ACPI _OSC request failed (AE_NOT_FOUND), returned control mask: 0x1d
[    0.283401] ACPI _OSC control for PCIe not granted, disabling ASPM
[    0.786791] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 *11 12 15)
[    0.787260] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *9 10 11 12 15)
[    0.787770] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 *5 6 7 9 10 11 12 15)
[    0.788273] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 11 12 15) *0, disabled.
[    0.788751] ACPI: PCI Interrupt Link [LNKE] (IRQs *3 4 5 6 7 9 10 11 12 15)
[    0.789261] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 *10 11 12 15)
[    0.789724] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 *9 10 11 12 15)
[    0.790216] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 *4 5 6 7 9 10 11 12 15)
[    0.790491] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
[    0.790501] vgaarb: loaded
[    0.790504] vgaarb: bridge control possible 0000:01:00.0
[    0.790611] PCI: Using ACPI for IRQ routing
[    0.792455] PCI: pci_cache_line_size set to 64 bytes
[    0.792569] reserve RAM buffer: 000000007fe88c00 - 000000007fffffff 
[    0.792804] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
[    0.792813] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.792821] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
[    0.800106] Switching to clocksource hpet
[    0.804238] pnp: PnP ACPI init
[    0.804265] ACPI: bus type pnp registered
[    0.816062] pnp 00:00: [bus 00-ff]
[    0.816069] pnp 00:00: [io  0x0cf8-0x0cff]
[    0.816074] pnp 00:00: [io  0x0000-0x0cf7 window]
[    0.816079] pnp 00:00: [io  0x0d00-0xffff window]
[    0.816084] pnp 00:00: [mem 0x000a0000-0x000bffff window]
[    0.816089] pnp 00:00: [mem 0x000c0000-0x000effff window]
[    0.816093] pnp 00:00: [mem 0x000f0000-0x000fffff window]
[    0.816098] pnp 00:00: [mem 0x80000000-0xefffffff window]
[    0.816107] pnp 00:00: [mem 0xf4000000-0xfebfffff window]
[    0.816112] pnp 00:00: [mem 0xffa80800-0xffa80bff window]
[    0.816116] pnp 00:00: [mem 0xffa7c000-0xffa7ffff window]
[    0.816189] pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 (active)
[    0.818838] pnp 00:01: [io  0x0060]
[    0.818843] pnp 00:01: [io  0x0064]
[    0.818846] pnp 00:01: [io  0x0062-0x0063]
[    0.818850] pnp 00:01: [io  0x0065-0x006f]
[    0.818854] pnp 00:01: [io  0x00e0-0x00ef]
[    0.818857] pnp 00:01: [io  0x0800-0x085f]
[    0.818861] pnp 00:01: [io  0x0c00-0x0c7f]
[    0.818865] pnp 00:01: [io  0x0860-0x08ff]
[    0.818990] system 00:01: [io  0x0800-0x085f] could not be reserved
[    0.818996] system 00:01: [io  0x0c00-0x0c7f] has been reserved
[    0.819001] system 00:01: [io  0x0860-0x08ff] has been reserved
[    0.819008] system 00:01: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.819237] pnp 00:02: [io  0x0080-0x009f]
[    0.819242] pnp 00:02: [io  0x0000-0x001f]
[    0.819246] pnp 00:02: [io  0x00c0-0x00df]
[    0.819250] pnp 00:02: [dma 4]
[    0.819313] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.819474] pnp 00:03: [io  0x00f0-0x00ff]
[    0.819487] pnp 00:03: [irq 13]
[    0.819549] pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
[    0.819709] pnp 00:04: [io  0x0061]
[    0.819770] pnp 00:04: Plug and Play ACPI device, IDs PNP0800 (active)
[    0.819949] pnp 00:05: [io  0x0070-0x007f]
[    0.819959] pnp 00:05: [irq 8]
[    0.820045] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.848051] pnp 00:06: [mem 0x00000000-0x0009ffff]
[    0.848057] pnp 00:06: [mem 0x00100000-0x00ffffff]
[    0.848062] pnp 00:06: [mem 0x01000000-0x7fe88bff]
[    0.848066] pnp 00:06: [mem 0x000f0000-0x000fffff]
[    0.848070] pnp 00:06: [mem 0x000c0000-0x000d3fff]
[    0.848074] pnp 00:06: [mem 0xfec00000-0xfecfffff]
[    0.848078] pnp 00:06: [mem 0xfee00000-0xfeefffff]
[    0.848083] pnp 00:06: [mem 0xfed20000-0xfed9ffff]
[    0.848087] pnp 00:06: [mem 0xffb00000-0xffbfffff]
[    0.848091] pnp 00:06: [mem 0xffc00000-0xffffffff]
[    0.848215] system 00:06: [mem 0x00000000-0x0009ffff] could not be reserved
[    0.848223] system 00:06: [mem 0x00100000-0x00ffffff] could not be reserved
[    0.848229] system 00:06: [mem 0x01000000-0x7fe88bff] could not be reserved
[    0.848234] system 00:06: [mem 0x000f0000-0x000fffff] could not be reserved
[    0.848240] system 00:06: [mem 0x000c0000-0x000d3fff] could not be reserved
[    0.848246] system 00:06: [mem 0xfec00000-0xfecfffff] could not be reserved
[    0.848251] system 00:06: [mem 0xfee00000-0xfeefffff] has been reserved
[    0.848256] system 00:06: [mem 0xfed20000-0xfed9ffff] has been reserved
[    0.848261] system 00:06: [mem 0xffb00000-0xffbfffff] has been reserved
[    0.848266] system 00:06: [mem 0xffc00000-0xffffffff] has been reserved
[    0.848272] system 00:06: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.851121] pnp 00:07: [mem 0xf0000000-0xf3ffffff]
[    0.851126] pnp 00:07: [mem 0xfeda0000-0xfedacfff]
[    0.851130] pnp 00:07: [io  0x0100-0x01fe]
[    0.851134] pnp 00:07: [io  0x0200-0x0277]
[    0.851137] pnp 00:07: [io  0x0280-0x02e7]
[    0.851141] pnp 00:07: [io  0x02e8-0x02ef]
[    0.851144] pnp 00:07: [io  0x02f0-0x02f7]
[    0.851148] pnp 00:07: [io  0x02f8-0x02ff]
[    0.851152] pnp 00:07: [io  0x0300-0x0377]
[    0.851155] pnp 00:07: [io  0x0380-0x03bb]
[    0.851159] pnp 00:07: [io  0x03c0-0x03e7]
[    0.851162] pnp 00:07: [io  0x03f6-0x03f7]
[    0.851166] pnp 00:07: [io  0x0400-0x04cf]
[    0.851170] pnp 00:07: [io  0x04d2-0x057f]
[    0.851173] pnp 00:07: [io  0x0580-0x0677]
[    0.851177] pnp 00:07: [io  0x0680-0x0777]
[    0.851180] pnp 00:07: [io  0x0780-0x07bb]
[    0.851184] pnp 00:07: [io  0x07c0-0x07ff]
[    0.851187] pnp 00:07: [io  0x08e0-0x08ff]
[    0.851191] pnp 00:07: [io  0x0900-0x09fe]
[    0.851195] pnp 00:07: [io  0x0a00-0x0afe]
[    0.851198] pnp 00:07: [io  0x0b00-0x0bfe]
[    0.851202] pnp 00:07: [io  0x0c80-0x0caf]
[    0.851205] pnp 00:07: [io  0x0cb0-0x0cbf]
[    0.851209] pnp 00:07: [io  0x0cc0-0x0cf7]
[    0.851213] pnp 00:07: [io  0x0d00-0x0dfe]
[    0.851216] pnp 00:07: [io  0x0e00-0x0efe]
[    0.851220] pnp 00:07: [io  0x0f00-0x0ffe]
[    0.851223] pnp 00:07: [io  0x2000-0x20fe]
[    0.851227] pnp 00:07: [io  0x2100-0x21fe]
[    0.851231] pnp 00:07: [io  0x2200-0x22fe]
[    0.851234] pnp 00:07: [io  0x2300-0x23fe]
[    0.851238] pnp 00:07: [io  0x2400-0x24fe]
[    0.851241] pnp 00:07: [io  0x2500-0x25fe]
[    0.851245] pnp 00:07: [io  0x2600-0x26fe]
[    0.851249] pnp 00:07: [io  0x2700-0x27fe]
[    0.851252] pnp 00:07: [io  0x2800-0x28fe]
[    0.851256] pnp 00:07: [io  0x2900-0x29fe]
[    0.851259] pnp 00:07: [io  0x2a00-0x2afe]
[    0.851263] pnp 00:07: [io  0x2b00-0x2bfe]
[    0.851266] pnp 00:07: [io  0x2c00-0x2cfe]
[    0.851270] pnp 00:07: [io  0x2d00-0x2dfe]
[    0.851274] pnp 00:07: [io  0x2e00-0x2efe]
[    0.851277] pnp 00:07: [io  0x2f00-0x2ffe]
[    0.851281] pnp 00:07: [io  0x5000-0x50fe]
[    0.851284] pnp 00:07: [io  0x5100-0x51fe]
[    0.851288] pnp 00:07: [io  0x5200-0x52fe]
[    0.851291] pnp 00:07: [io  0x5300-0x53fe]
[    0.851295] pnp 00:07: [io  0x5400-0x54fe]
[    0.851299] pnp 00:07: [io  0x5500-0x55fe]
[    0.851302] pnp 00:07: [io  0x5600-0x56fe]
[    0.851306] pnp 00:07: [io  0x5700-0x57fe]
[    0.851309] pnp 00:07: [io  0x5800-0x58fe]
[    0.851313] pnp 00:07: [io  0x5900-0x59fe]
[    0.851316] pnp 00:07: [io  0x5a00-0x5afe]
[    0.851320] pnp 00:07: [io  0x5b00-0x5bfe]
[    0.851323] pnp 00:07: [io  0x5c00-0x5cfe]
[    0.851327] pnp 00:07: [io  0x5d00-0x5dfe]
[    0.851333] pnp 00:07: [io  0x5e00-0x5efe]
[    0.851337] pnp 00:07: [io  0x5f00-0x5ffe]
[    0.851340] pnp 00:07: [io  0x6000-0x60fe]
[    0.851344] pnp 00:07: [io  0x6100-0x61fe]
[    0.851347] pnp 00:07: [io  0x6200-0x62fe]
[    0.851351] pnp 00:07: [io  0x6300-0x63fe]
[    0.851354] pnp 00:07: [io  0x6400-0x64fe]
[    0.851358] pnp 00:07: [io  0x6500-0x65fe]
[    0.851361] pnp 00:07: [io  0x6600-0x66fe]
[    0.851365] pnp 00:07: [io  0x6700-0x67fe]
[    0.851368] pnp 00:07: [io  0x6800-0x68fe]
[    0.851372] pnp 00:07: [io  0x6900-0x69fe]
[    0.851375] pnp 00:07: [io  0x6a00-0x6afe]
[    0.851379] pnp 00:07: [io  0x6b00-0x6bfe]
[    0.851382] pnp 00:07: [io  0x6c00-0x6cfe]
[    0.851386] pnp 00:07: [io  0x6d00-0x6dfe]
[    0.851389] pnp 00:07: [io  0x6e00-0x6efe]
[    0.851393] pnp 00:07: [io  0x6f00-0x6ffe]
[    0.851396] pnp 00:07: [io  0xa000-0xa0fe]
[    0.851400] pnp 00:07: [io  0xa100-0xa1fe]
[    0.851403] pnp 00:07: [io  0xa200-0xa2fe]
[    0.851407] pnp 00:07: [io  0xa300-0xa3fe]
[    0.851410] pnp 00:07: [io  0xa400-0xa4fe]
[    0.851414] pnp 00:07: [io  0xa500-0xa5fe]
[    0.851417] pnp 00:07: [io  0xa600-0xa6fe]
[    0.851421] pnp 00:07: [io  0xa700-0xa7fe]
[    0.851425] pnp 00:07: [io  0xa800-0xa8fe]
[    0.851428] pnp 00:07: [io  0xa900-0xa9fe]
[    0.851432] pnp 00:07: [io  0xaa00-0xaafe]
[    0.851435] pnp 00:07: [io  0xab00-0xabfe]
[    0.851439] pnp 00:07: [io  0xac00-0xacfe]
[    0.851442] pnp 00:07: [io  0xad00-0xadfe]
[    0.851446] pnp 00:07: [io  0xae00-0xaefe]
[    0.851449] pnp 00:07: [io  0xaf00-0xaffe]
[    0.851861] system 00:07: [io  0x0100-0x01fe] could not be reserved
[    0.851868] system 00:07: [io  0x0200-0x0277] has been reserved
[    0.851873] system 00:07: [io  0x0280-0x02e7] has been reserved
[    0.851877] system 00:07: [io  0x02e8-0x02ef] has been reserved
[    0.851882] system 00:07: [io  0x02f0-0x02f7] has been reserved
[    0.851887] system 00:07: [io  0x02f8-0x02ff] has been reserved
[    0.851893] system 00:07: [io  0x0300-0x0377] could not be reserved
[    0.851898] system 00:07: [io  0x0380-0x03bb] has been reserved
[    0.851903] system 00:07: [io  0x03c0-0x03e7] could not be reserved
[    0.851909] system 00:07: [io  0x03f6-0x03f7] could not be reserved
[    0.851914] system 00:07: [io  0x0400-0x04cf] has been reserved
[    0.851918] system 00:07: [io  0x04d2-0x057f] has been reserved
[    0.851923] system 00:07: [io  0x0580-0x0677] has been reserved
[    0.851928] system 00:07: [io  0x0680-0x0777] has been reserved
[    0.851932] system 00:07: [io  0x0780-0x07bb] has been reserved
[    0.851937] system 00:07: [io  0x07c0-0x07ff] has been reserved
[    0.851942] system 00:07: [io  0x08e0-0x08ff] has been reserved
[    0.851947] system 00:07: [io  0x0900-0x09fe] has been reserved
[    0.851952] system 00:07: [io  0x0a00-0x0afe] has been reserved
[    0.851957] system 00:07: [io  0x0b00-0x0bfe] has been reserved
[    0.851961] system 00:07: [io  0x0c80-0x0caf] has been reserved
[    0.851966] system 00:07: [io  0x0cb0-0x0cbf] has been reserved
[    0.851971] system 00:07: [io  0x0cc0-0x0cf7] has been reserved
[    0.851976] system 00:07: [io  0x0d00-0x0dfe] has been reserved
[    0.851981] system 00:07: [io  0x0e00-0x0efe] has been reserved
[    0.851986] system 00:07: [io  0x0f00-0x0ffe] has been reserved
[    0.851991] system 00:07: [io  0x2000-0x20fe] has been reserved
[    0.851995] system 00:07: [io  0x2100-0x21fe] has been reserved
[    0.852000] system 00:07: [io  0x2200-0x22fe] has been reserved
[    0.852033] system 00:07: [io  0x2300-0x23fe] has been reserved
[    0.852039] system 00:07: [io  0x2400-0x24fe] has been reserved
[    0.852044] system 00:07: [io  0x2500-0x25fe] has been reserved
[    0.852049] system 00:07: [io  0x2600-0x26fe] has been reserved
[    0.852053] system 00:07: [io  0x2700-0x27fe] has been reserved
[    0.852058] system 00:07: [io  0x2800-0x28fe] has been reserved
[    0.852063] system 00:07: [io  0x2900-0x29fe] has been reserved
[    0.852068] system 00:07: [io  0x2a00-0x2afe] has been reserved
[    0.852072] system 00:07: [io  0x2b00-0x2bfe] has been reserved
[    0.852077] system 00:07: [io  0x2c00-0x2cfe] has been reserved
[    0.852082] system 00:07: [io  0x2d00-0x2dfe] has been reserved
[    0.852086] system 00:07: [io  0x2e00-0x2efe] has been reserved
[    0.852091] system 00:07: [io  0x2f00-0x2ffe] has been reserved
[    0.852096] system 00:07: [io  0x5000-0x50fe] has been reserved
[    0.852101] system 00:07: [io  0x5100-0x51fe] has been reserved
[    0.852106] system 00:07: [io  0x5200-0x52fe] has been reserved
[    0.852110] system 00:07: [io  0x5300-0x53fe] has been reserved
[    0.852115] system 00:07: [io  0x5400-0x54fe] has been reserved
[    0.852120] system 00:07: [io  0x5500-0x55fe] has been reserved
[    0.852125] system 00:07: [io  0x5600-0x56fe] has been reserved
[    0.852130] system 00:07: [io  0x5700-0x57fe] has been reserved
[    0.852135] system 00:07: [io  0x5800-0x58fe] has been reserved
[    0.852140] system 00:07: [io  0x5900-0x59fe] has been reserved
[    0.852145] system 00:07: [io  0x5a00-0x5afe] has been reserved
[    0.852150] system 00:07: [io  0x5b00-0x5bfe] has been reserved
[    0.852155] system 00:07: [io  0x5c00-0x5cfe] has been reserved
[    0.852160] system 00:07: [io  0x5d00-0x5dfe] has been reserved
[    0.852165] system 00:07: [io  0x5e00-0x5efe] has been reserved
[    0.852170] system 00:07: [io  0x5f00-0x5ffe] has been reserved
[    0.852175] system 00:07: [io  0x6000-0x60fe] has been reserved
[    0.852180] system 00:07: [io  0x6100-0x61fe] has been reserved
[    0.852185] system 00:07: [io  0x6200-0x62fe] has been reserved
[    0.852190] system 00:07: [io  0x6300-0x63fe] has been reserved
[    0.852195] system 00:07: [io  0x6400-0x64fe] has been reserved
[    0.852201] system 00:07: [io  0x6500-0x65fe] has been reserved
[    0.852206] system 00:07: [io  0x6600-0x66fe] has been reserved
[    0.852211] system 00:07: [io  0x6700-0x67fe] has been reserved
[    0.852216] system 00:07: [io  0x6800-0x68fe] has been reserved
[    0.852221] system 00:07: [io  0x6900-0x69fe] has been reserved
[    0.852227] system 00:07: [io  0x6a00-0x6afe] has been reserved
[    0.852232] system 00:07: [io  0x6b00-0x6bfe] has been reserved
[    0.852237] system 00:07: [io  0x6c00-0x6cfe] has been reserved
[    0.852242] system 00:07: [io  0x6d00-0x6dfe] has been reserved
[    0.852248] system 00:07: [io  0x6e00-0x6efe] has been reserved
[    0.852253] system 00:07: [io  0x6f00-0x6ffe] has been reserved
[    0.852258] system 00:07: [io  0xa000-0xa0fe] has been reserved
[    0.852264] system 00:07: [io  0xa100-0xa1fe] has been reserved
[    0.852269] system 00:07: [io  0xa200-0xa2fe] has been reserved
[    0.852274] system 00:07: [io  0xa300-0xa3fe] has been reserved
[    0.852280] system 00:07: [io  0xa400-0xa4fe] has been reserved
[    0.852285] system 00:07: [io  0xa500-0xa5fe] has been reserved
[    0.852291] system 00:07: [io  0xa600-0xa6fe] has been reserved
[    0.852296] system 00:07: [io  0xa700-0xa7fe] has been reserved
[    0.852302] system 00:07: [io  0xa800-0xa8fe] has been reserved
[    0.852307] system 00:07: [io  0xa900-0xa9fe] has been reserved
[    0.852313] system 00:07: [io  0xaa00-0xaafe] has been reserved
[    0.852318] system 00:07: [io  0xab00-0xabfe] has been reserved
[    0.852324] system 00:07: [io  0xac00-0xacfe] has been reserved
[    0.852330] system 00:07: [io  0xad00-0xadfe] has been reserved
[    0.852338] system 00:07: [io  0xae00-0xaefe] has been reserved
[    0.852344] system 00:07: [io  0xaf00-0xaffe] has been reserved
[    0.852349] system 00:07: [mem 0xf0000000-0xf3ffffff] has been reserved
[    0.852354] system 00:07: [mem 0xfeda0000-0xfedacfff] has been reserved
[    0.852360] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.852372] pnp: PnP ACPI: found 8 devices
[    0.852375] ACPI: ACPI bus type pnp unregistered
[    0.852381] PnPBIOS: Disabled by ACPI PNP
[    0.891731] PCI: max bus depth: 1 pci_try_num: 2
[    0.891771] pci 0000:00:1f.2: BAR 5: assigned [mem 0x80000000-0x800003ff]
[    0.891782] pci 0000:00:1c.0: BAR 15: assigned [mem 0x80100000-0x802fffff 64bit pref]
[    0.891791] pci 0000:00:1c.0: BAR 13: assigned [io  0x1000-0x1fff]
[    0.891797] pci 0000:00:01.0: PCI bridge to [bus 01-01]
[    0.891802] pci 0000:00:01.0:   bridge window [io  0xd000-0xdfff]
[    0.891808] pci 0000:00:01.0:   bridge window [mem 0xefd00000-0xefefffff]
[    0.891814] pci 0000:00:01.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.891821] pci 0000:00:1c.0: PCI bridge to [bus 02-02]
[    0.891826] pci 0000:00:1c.0:   bridge window [io  0x1000-0x1fff]
[    0.891833] pci 0000:00:1c.0:   bridge window [mem 0xefc00000-0xefcfffff]
[    0.891839] pci 0000:00:1c.0:   bridge window [mem 0x80100000-0x802fffff 64bit pref]
[    0.891848] pci 0000:00:1e.0: PCI bridge to [bus 03-03]
[    0.891852] pci 0000:00:1e.0:   bridge window [io  0xc000-0xcfff]
[    0.891859] pci 0000:00:1e.0:   bridge window [mem 0xefa00000-0xefbfffff]
[    0.891891] pci 0000:00:01.0: setting latency timer to 64
[    0.891905] pci 0000:00:1c.0: setting latency timer to 64
[    0.891915] pci 0000:00:1e.0: setting latency timer to 64
[    0.891921] pci_bus 0000:00: resource 0 [io  0x0000-0xffff]
[    0.891925] pci_bus 0000:00: resource 1 [mem 0x00000000-0xfffffffff]
[    0.891929] pci_bus 0000:01: resource 0 [io  0xd000-0xdfff]
[    0.891932] pci_bus 0000:01: resource 1 [mem 0xefd00000-0xefefffff]
[    0.891936] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.891939] pci_bus 0000:02: resource 0 [io  0x1000-0x1fff]
[    0.891942] pci_bus 0000:02: resource 1 [mem 0xefc00000-0xefcfffff]
[    0.891946] pci_bus 0000:02: resource 2 [mem 0x80100000-0x802fffff 64bit pref]
[    0.891949] pci_bus 0000:03: resource 0 [io  0xc000-0xcfff]
[    0.891952] pci_bus 0000:03: resource 1 [mem 0xefa00000-0xefbfffff]
[    0.891956] pci_bus 0000:03: resource 4 [io  0x0000-0xffff]
[    0.891959] pci_bus 0000:03: resource 5 [mem 0x00000000-0xfffffffff]
[    0.892074] NET: Registered protocol family 2
[    0.895017] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[    0.895551] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.896126] TCP bind hash table entries: 65536 (order: 8, 1835008 bytes)
[    0.896971] TCP: Hash tables configured (established 131072 bind 65536)
[    0.896975] TCP reno registered
[    0.896982] UDP hash table entries: 512 (order: 3, 32768 bytes)
[    0.897004] UDP-Lite hash table entries: 512 (order: 3, 32768 bytes)
[    0.897210] NET: Registered protocol family 1
[    0.897465] pci 0000:01:00.0: Boot video device
[    0.897493] pci 0000:03:08.0: Firmware left e100 interrupts enabled; disabling
[    0.897505] PCI: CLS 64 bytes, default 64
[    0.897624] Unpacking initramfs...
[    1.281877] Freeing initrd memory: 10020k freed
[    1.287413] Simple Boot Flag at 0x7a set to 0x1
[    1.288119] audit: initializing netlink socket (disabled)
[    1.288144] type=2000 audit(1571936577.284:1): initialized
[    1.305346] highmem bounce pool size: 64 pages
[    1.305356] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    1.305612] VFS: Disk quotas dquot_6.5.2
[    1.305677] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    1.305807] msgmni has been set to 1730
[    1.306158] alg: No test for stdrng (krng)
[    1.306218] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    1.306224] io scheduler noop registered
[    1.306227] io scheduler deadline registered
[    1.306251] io scheduler cfq registered (default)
[    1.306419] pcieport 0000:00:01.0: setting latency timer to 64
[    1.306469] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
[    1.306563] pcieport 0000:00:1c.0: setting latency timer to 64
[    1.306613] pcieport 0000:00:1c.0: irq 41 for MSI/MSI-X
[    1.306782] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    1.306834] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    1.306838] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    1.307642] ERST: Table is not found!
[    1.307647] GHES: HEST is not enabled!
[    1.307677] isapnp: Scanning for PnP cards...
[    1.660966] isapnp: No Plug & Play device found
[    1.661071] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    1.708347] Linux agpgart interface v0.103
[    1.708986] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    1.711858] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.711870] serio: i8042 AUX port at 0x60,0x64 irq 12
[    1.712185] mousedev: PS/2 mouse device common for all mice
[    1.712261] rtc_cmos 00:05: RTC can wake from S4
[    1.712445] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
[    1.712520] rtc0: alarms up to one day, 242 bytes nvram, hpet irqs
[    1.712546] cpuidle: using governor ladder
[    1.712550] cpuidle: using governor menu
[    1.713086] TCP cubic registered
[    1.713159] NET: Registered protocol family 10
[    1.714511] Mobile IPv6
[    1.714516] NET: Registered protocol family 17
[    1.714526] Registering the dns_resolver key type
[    1.714568] Using IPI No-Shortcut mode
[    1.714771] PM: Hibernation image not present or could not be loaded.
[    1.714794] registered taskstats version 1
[    1.715172] rtc_cmos 00:05: setting system clock to 2019-10-24 17:02:57 UTC (1571936577)
[    1.715256] Initializing network drop monitor service
[    1.715475] Freeing unused kernel memory: 728k freed
[    1.715939] Write protecting the kernel text: 2860k
[    1.716034] Write protecting the kernel read-only data: 1076k
[    1.716038] NX-protecting the kernel data: 3284k
[    1.740294] udevd[57]: starting version 175
[    1.819136] usbcore: registered new interface driver usbfs
[    1.819186] usbcore: registered new interface driver hub
[    1.867098] usbcore: registered new device driver usb
[    1.892370] SCSI subsystem initialized
[    1.913385] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.913455] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[    1.913462] ehci_hcd 0000:00:1d.7: EHCI Host Controller
[    1.913512] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1
[    1.913544] ehci_hcd 0000:00:1d.7: using broken periodic workaround
[    1.913557] ehci_hcd 0000:00:1d.7: debug port 1
[    1.917455] ehci_hcd 0000:00:1d.7: cache line size of 64 is not supported
[    1.934528] ehci_hcd 0000:00:1d.7: irq 21, io mem 0xffa80800
[    1.952399] uhci_hcd: USB Universal Host Controller Interface driver
[    1.955816] via_rhine: v1.10-LK1.5.1 2010-10-09 Written by Donald Becker
[    1.961170] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[    1.961262] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    1.961268] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.961272] usb usb1: Product: EHCI Host Controller
[    1.961275] usb usb1: Manufacturer: Linux 3.2.0-4-rt-686-pae ehci_hcd
[    1.961278] usb usb1: SerialNumber: 0000:00:1d.7
[    1.964601] e100: Intel(R) PRO/100 Network Driver, 3.5.24-k2-NAPI
[    1.964605] e100: Copyright(c) 1999-2006 Intel Corporation
[    1.980880] hub 1-0:1.0: USB hub found
[    1.980894] hub 1-0:1.0: 8 ports detected
[    1.981104] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[    1.981110] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[    1.981128] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    1.990302] uhci_hcd 0000:00:1d.0: irq 21, io base 0x0000ff80
[    1.990382] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[    1.990387] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.990391] usb usb2: Product: UHCI Host Controller
[    1.990394] usb usb2: Manufacturer: Linux 3.2.0-4-rt-686-pae uhci_hcd
[    1.990398] usb usb2: SerialNumber: 0000:00:1d.0
[    1.990648] hub 2-0:1.0: USB hub found
[    1.990661] hub 2-0:1.0: 2 ports detected
[    1.990836] uhci_hcd 0000:00:1d.1: setting latency timer to 64
[    1.990841] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[    1.990859] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
[    1.990981] libata version 3.00 loaded.
[    1.995977] uhci_hcd 0000:00:1d.1: irq 22, io base 0x0000ff60
[    1.996111] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[    1.996116] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.996120] usb usb3: Product: UHCI Host Controller
[    1.996123] usb usb3: Manufacturer: Linux 3.2.0-4-rt-686-pae uhci_hcd
[    1.996126] usb usb3: SerialNumber: 0000:00:1d.1
[    1.996374] hub 3-0:1.0: USB hub found
[    1.996386] hub 3-0:1.0: 2 ports detected
[    1.996546] ata_piix 0000:00:1f.1: version 2.13
[    1.996621] ata_piix 0000:00:1f.1: setting latency timer to 64
[    2.005841] via-rhine 0000:03:02.0: eth0: VIA Rhine III at 0x1cc00, 00:0d:88:b5:36:50, IRQ 18
[    2.006570] via-rhine 0000:03:02.0: eth0: MII PHY found at address 1, status 0x7869 advertising 05e1 Link c1e1
[    2.021261] scsi0 : ata_piix
[    2.025404] scsi1 : ata_piix
[    2.025517] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xffa0 irq 14
[    2.025522] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xffa8 irq 15
[    2.025610] uhci_hcd 0000:00:1d.2: setting latency timer to 64
[    2.025616] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[    2.025636] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
[    2.028473] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000ff40
[    2.028547] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[    2.028553] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.028556] usb usb4: Product: UHCI Host Controller
[    2.028559] usb usb4: Manufacturer: Linux 3.2.0-4-rt-686-pae uhci_hcd
[    2.028562] usb usb4: SerialNumber: 0000:00:1d.2
[    2.028806] hub 4-0:1.0: USB hub found
[    2.028818] hub 4-0:1.0: 2 ports detected
[    2.028986] ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
[    2.029093] ata1: port disabled--ignoring
[    2.029143] ata2: port disabled--ignoring
[    2.071526] e100 0000:03:08.0: eth1: addr 0xefaff000, irq 20, MAC addr 00:12:3f:cc:36:c4
[    2.184060] ata_piix 0000:00:1f.2: setting latency timer to 64
[    2.185073] scsi2 : ata_piix
[    2.185317] scsi3 : ata_piix
[    2.185429] ata3: SATA max UDMA/133 cmd 0xfe00 ctl 0xfe10 bmdma 0xfea0 irq 20
[    2.185434] ata4: SATA max UDMA/133 cmd 0xfe20 ctl 0xfe30 bmdma 0xfea8 irq 20
[    2.185895] uhci_hcd 0000:00:1d.3: setting latency timer to 64
[    2.185901] uhci_hcd 0000:00:1d.3: UHCI Host Controller
[    2.185921] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
[    2.186401] uhci_hcd 0000:00:1d.3: irq 23, io base 0x0000ff20
[    2.186475] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
[    2.186480] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.186483] usb usb5: Product: UHCI Host Controller
[    2.186487] usb usb5: Manufacturer: Linux 3.2.0-4-rt-686-pae uhci_hcd
[    2.186490] usb usb5: SerialNumber: 0000:00:1d.3
[    2.186731] hub 5-0:1.0: USB hub found
[    2.186743] hub 5-0:1.0: 2 ports detected
[    2.284029] Refined TSC clocksource calibration: 2992.499 MHz.
[    2.284040] Switching to clocksource tsc
[    2.356407] ata3.00: ATA-9: Intenso SSD SATAIII, S0222A0, max UDMA/133
[    2.356414] ata3.00: 250069680 sectors, multi 1: LBA48 NCQ (depth 0/32)
[    2.373505] ata3.00: configured for UDMA/133
[    2.373701] scsi 2:0:0:0: Direct-Access     ATA      Intenso SSD SATA S022 PQ: 0 ANSI: 5
[    2.391055] sd 2:0:0:0: [sda] 250069680 512-byte logical blocks: (128 GB/119 GiB)
[    2.391249] sd 2:0:0:0: [sda] Write Protect is off
[    2.391255] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.391316] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.393037]  sda: sda1 sda2 < sda5 >
[    2.393955] sd 2:0:0:0: [sda] Attached SCSI disk
[    2.397676] sd 2:0:0:0: Attached scsi generic sg0 type 0
[    2.492264] PM: Starting manual resume from disk
[    2.492272] PM: Hibernation image partition 8:5 present
[    2.492275] PM: Looking for hibernation image.
[    2.492631] PM: Image not found (code -22)
[    2.492635] PM: Hibernation image not present or could not be loaded.
[    2.529596] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[    2.532034] usb 2-1: new low-speed USB device number 2 using uhci_hcd
[    2.859381] usb 2-1: New USB device found, idVendor=046d, idProduct=c30e
[    2.859388] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.859393] usb 2-1: Product: HID compliant keyboard
[    2.859396] usb 2-1: Manufacturer: Logitech
[    2.906570] udevd[321]: starting version 175
[    3.108041] usb 2-2: new low-speed USB device number 3 using uhci_hcd
[    3.131689] intel_rng: Firmware space is locked read-only. If you can't or
[    3.131693] intel_rng: don't want to disable this in firmware setup, and if
[    3.131694] intel_rng: you are certain that your system has a functional
[    3.131696] intel_rng: RNG, try using the 'no_fwh_detect' option.
[    3.149087] iTCO_vendor_support: vendor-support=0
[    3.150109] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.07
[    3.150304] iTCO_wdt: Found a ICH7 or ICH7R TCO device (Version=2, TCOBASE=0x0860)
[    3.150413] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    3.210085] [drm] Initialized drm 1.1.0 20060810
[    3.215109] leds_ss4200: no LED devices found
[    3.216184] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    3.216195] ACPI: Power Button [VBTN]
[    3.216319] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    3.216327] ACPI: Power Button [PWRF]
[    3.296385] usb 2-2: New USB device found, idVendor=045e, idProduct=0095
[    3.296391] usb 2-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.296396] usb 2-2: Product: Microsoft IntelliMouse\xffffffc2\xffffffae\xffffffae Explorer
[    3.296399] usb 2-2: Manufacturer: Microsoft
[    3.296572] input: PC Speaker as /devices/platform/pcspkr/input/input2
[    3.368299] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
[    3.444960] snd_hda_intel 0000:01:00.1: irq 42 for MSI/MSI-X
[    3.448811] snd_hda_intel 0000:01:00.1: setting latency timer to 64
[    3.540720] [drm] radeon kernel modesetting enabled.
[    3.557756] input: Logitech HID compliant keyboard as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1:1.0/input/input3
[    3.557869] generic-usb 0003:046D:C30E.0001: input,hidraw0: USB HID v1.10 Keyboard [Logitech HID compliant keyboard] on usb-0000:00:1d.0-1/input0
[    3.565480] HDMI status: Codec=0 Pin=3 Presence_Detect=0 ELD_Valid=0
[    3.565670] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card0/input4
[    3.566881] [drm:radeon_pci_probe] *ERROR* radeon kernel modesetting for R600 or later requires firmware-linux-nonfree.
[    3.684575] input: Logitech HID compliant keyboard as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1:1.1/input/input5
[    3.685216] generic-usb 0003:046D:C30E.0002: input,hidraw1: USB HID v1.10 Device [Logitech HID compliant keyboard] on usb-0000:00:1d.0-1/input1
[    3.717016] input: Microsoft Microsoft IntelliMouse\xffffffc2\xffffffae\xffffffae Explorer as /devices/pci0000:00/0000:00:1d.0/usb2/2-2/2-2:1.0/input/input6
[    3.718622] generic-usb 0003:045E:0095.0003: input,hidraw2: USB HID v1.11 Mouse [Microsoft Microsoft IntelliMouse\xffffffc2\xffffffae\xffffffae Explorer] on usb-0000:00:1d.0-2/input0
[    3.718670] usbcore: registered new interface driver usbhid
[    3.718674] usbhid: USB HID core driver
[    4.137552] Adding 4188156k swap on /dev/sda5.  Priority:-1 extents:1 across:4188156k SS
[    4.162844] EXT4-fs (sda1): re-mounted. Opts: (null)
[    4.236214] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
[    4.341861] loop: module loaded
[    5.818906] RPC: Registered named UNIX socket transport module.
[    5.818912] RPC: Registered udp transport module.
[    5.818915] RPC: Registered tcp transport module.
[    5.818918] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    5.829433] FS-Cache: Loaded
[    5.845510] FS-Cache: Netfs 'nfs' registered for caching
[    5.854994] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[    7.196515] Bluetooth: Core ver 2.16
[    7.196916] NET: Registered protocol family 31
[    7.196921] Bluetooth: HCI device and connection manager initialized
[    7.196926] Bluetooth: HCI socket layer initialized
[    7.196930] Bluetooth: L2CAP socket layer initialized
[    7.196945] Bluetooth: SCO socket layer initialized
[    7.205178] Bluetooth: RFCOMM TTY layer initialized
[    7.205190] Bluetooth: RFCOMM socket layer initialized
[    7.205194] Bluetooth: RFCOMM ver 1.11
[    7.207310] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    7.207316] Bluetooth: BNEP filters: protocol multicast
[    7.945534] via-rhine 0000:03:02.0: eth0: link up, 100Mbps, full-duplex, lpa 0xC1E1
[    7.985945] ADDRCONF(NETDEV_UP): eth1: link is not ready
[    7.988162] e100 0000:03:08.0: eth1: NIC Link is Up 100 Mbps Full Duplex
[    7.988426] ADDRCONF(NETDEV_CHANGE): eth1: link becomes ready
[   18.320030] eth0: no IPv6 routers present
[   18.432044] eth1: no IPv6 routers present
[  572.170822] ip_tables: (C) 2000-2006 Netfilter Core Team

Please Log in or Create an account to join the conversation.

More
24 Oct 2019 17:24 #148716 by andypugh
That looks to be the old version of carousel, without the jog buttons.

What happens if you just delete pcalc from bcd in the new version?
The following user(s) said Thank You: CNCDoc

Please Log in or Create an account to join the conversation.

More
24 Oct 2019 17:50 #148721 by CNCDoc
When a use my loadrt on sim VMC_toolchange:

Print file information:
RUN_IN_PLACE=no
LINUXCNC_DIR=
LINUXCNC_BIN_DIR=/usr/bin
LINUXCNC_TCL_DIR=/usr/lib/tcltk/linuxcnc
LINUXCNC_SCRIPT_DIR=
LINUXCNC_RTLIB_DIR=/usr/lib/linuxcnc/modules
LINUXCNC_CONFIG_DIR=
LINUXCNC_LANG_DIR=/usr/share/linuxcnc/tcl/msgs
INIVAR=inivar
HALCMD=halcmd
LINUXCNC_EMCSH=/usr/bin/wish8.5
LINUXCNC - 2.7.14
Machine configuration directory is '/home/cnc/linuxcnc/configs/VMC_toolchange'
Machine configuration file is 'vmc_graycode.ini'
INIFILE=/home/cnc/linuxcnc/configs/VMC_toolchange/vmc_graycode.ini
PARAMETER_FILE=vmc.var
TASK=milltask
HALUI=halui
DISPLAY=axis
Starting LinuxCNC...
Starting LinuxCNC server program: linuxcncsvr
Loading Real Time OS, RTAPI, and HAL_LIB modules
Starting LinuxCNC IO program: io
Starting HAL User Interface program: halui
Found file(REL): ./vmc.hal
Found file(REL): ./sim_vmc.hal
Found file(REL): ./spindle.hal
Found file(REL): ./toolchange_gray.hal
Starting TASK program: milltask
Starting DISPLAY program: axis
USRMOT: ERROR: command timeout
USRMOT: ERROR: command timeout
USRMOT: ERROR: command timeout
USRMOT: ERROR: command timeout
USRMOT: ERROR: command timeout
waiting for s.axes
waiting for s.axes
waiting for s.axes
waiting for s.axes
waiting for s.axes
waiting for s.axes
waiting for s.axes
waiting for s.axes
waiting for s.axes
Shutting down and cleaning up LinuxCNC...
Killing task linuxcncsvr, PID=7367
USRMOT: ERROR: command timeout
Killing task milltask, PID=7415
USRMOT: ERROR: command timeout
USRMOT: ERROR: command timeout
emcMotionInit: ini_hal_init fail
Timeout, trying kill -9
Removing HAL_LIB, RTAPI, and Real Time OS modules
Removing NML shared memory segments

Debug file information:
Note: Using POSIX realtime
rtapi_app: caught signal 11 - dumping core
A configuration error is preventing LinuxCNC from starting.
More information may be available when running from a terminal.
7367
  PID TTY      STAT   TIME COMMAND
7415
  PID TTY      STAT   TIME COMMAND
 7415 ?        S      0:00 milltask -ini /home/cnc/linuxcnc/configs/VMC_toolchange/vmc_graycode.ini
  PID TTY      STAT   TIME COMMAND
 7415 ?        S      0:00 milltask -ini /home/cnc/linuxcnc/configs/VMC_toolchange/vmc_graycode.ini
  PID TTY      STAT   TIME COMMAND
 7415 ?        S      0:00 milltask -ini /home/cnc/linuxcnc/configs/VMC_toolchange/vmc_graycode.ini
  PID TTY      STAT   TIME COMMAND
 7415 ?        S      0:00 milltask -ini /home/cnc/linuxcnc/configs/VMC_toolchange/vmc_graycode.ini
  PID TTY      STAT   TIME COMMAND
 7415 ?        S      0:00 milltask -ini /home/cnc/linuxcnc/configs/VMC_toolchange/vmc_graycode.ini
  PID TTY      STAT   TIME COMMAND
 7415 ?        S      0:00 milltask -ini /home/cnc/linuxcnc/configs/VMC_toolchange/vmc_graycode.ini
  PID TTY      STAT   TIME COMMAND
 7415 ?        S      0:00 milltask -ini /home/cnc/linuxcnc/configs/VMC_toolchange/vmc_graycode.ini
  PID TTY      STAT   TIME COMMAND
 7415 ?        S      0:00 milltask -ini /home/cnc/linuxcnc/configs/VMC_toolchange/vmc_graycode.ini
  PID TTY      STAT   TIME COMMAND
 7415 ?        S      0:00 milltask -ini /home/cnc/linuxcnc/configs/VMC_toolchange/vmc_graycode.ini
  PID TTY      STAT   TIME COMMAND
 7415 ?        S      0:00 milltask -ini /home/cnc/linuxcnc/configs/VMC_toolchange/vmc_graycode.ini
  PID TTY      STAT   TIME COMMAND
 7415 ?        S      0:00 milltask -ini /home/cnc/linuxcnc/configs/VMC_toolchange/vmc_graycode.ini
  PID TTY      STAT   TIME COMMAND
 7415 ?        S      0:00 milltask -ini /home/cnc/linuxcnc/configs/VMC_toolchange/vmc_graycode.ini
  PID TTY      STAT   TIME COMMAND
 7415 ?        S      0:00 milltask -ini /home/cnc/linuxcnc/configs/VMC_toolchange/vmc_graycode.ini
  PID TTY      STAT   TIME COMMAND
 7415 ?        S      0:00 milltask -ini /home/cnc/linuxcnc/configs/VMC_toolchange/vmc_graycode.ini
  PID TTY      STAT   TIME COMMAND
 7415 ?        S      0:00 milltask -ini /home/cnc/linuxcnc/configs/VMC_toolchange/vmc_graycode.ini
HAL: ERROR: duplicate component name 'inihal'
ini_hal_init: ERROR: hal_init() failed
  PID TTY      STAT   TIME COMMAND
 7415 ?        S      0:00 milltask -ini /home/cnc/linuxcnc/configs/VMC_toolchange/vmc_graycode.ini
  PID TTY      STAT   TIME COMMAND
 7415 ?        S      0:00 milltask -ini /home/cnc/linuxcnc/configs/VMC_toolchange/vmc_graycode.ini
  PID TTY      STAT   TIME COMMAND
 7415 ?        S      0:00 milltask -ini /home/cnc/linuxcnc/configs/VMC_toolchange/vmc_graycode.ini
  PID TTY      STAT   TIME COMMAND
 7415 ?        S      0:00 milltask -ini /home/cnc/linuxcnc/configs/VMC_toolchange/vmc_graycode.ini
/usr/bin/linuxcnc: rad 496:  7415 Dödad                  $EMCTASK -ini "$INIFILE"
  PID TTY      STAT   TIME COMMAND
Stopping realtime threads
Unloading hal components
Waited 3 seconds for master.  giving up.
Note: Using POSIX realtime
carousel: not loaded
<commandline>:0: exit value: 255
<commandline>:0: rmmod failed, returned -1
Note: Using POSIX realtime
edge: not loaded
<commandline>:0: exit value: 255
<commandline>:0: rmmod failed, returned -1
Note: Using POSIX realtime
orient: not loaded
<commandline>:0: exit value: 255
<commandline>:0: rmmod failed, returned -1
Note: Using POSIX realtime
pid: not loaded
<commandline>:0: exit value: 255
<commandline>:0: rmmod failed, returned -1
Note: Using POSIX realtime
scale: not loaded
<commandline>:0: exit value: 255
<commandline>:0: rmmod failed, returned -1
Note: Using POSIX realtime
near: not loaded
<commandline>:0: exit value: 255
<commandline>:0: rmmod failed, returned -1
Note: Using POSIX realtime
conv_float_s32: not loaded
<commandline>:0: exit value: 255
<commandline>:0: rmmod failed, returned -1
Note: Using POSIX realtime
conv_s32_float: not loaded
<commandline>:0: exit value: 255
<commandline>:0: rmmod failed, returned -1
Note: Using POSIX realtime
bitslice: not loaded
<commandline>:0: exit value: 255
<commandline>:0: rmmod failed, returned -1
Note: Using POSIX realtime
bin2gray: not loaded
<commandline>:0: exit value: 255
<commandline>:0: rmmod failed, returned -1
Note: Using POSIX realtime
conv_float_u32: not loaded
<commandline>:0: exit value: 255
<commandline>:0: rmmod failed, returned -1
Note: Using POSIX realtime
limit2: not loaded
<commandline>:0: exit value: 255
<commandline>:0: rmmod failed, returned -1
Note: Using POSIX realtime
sum2: not loaded
<commandline>:0: exit value: 255
<commandline>:0: rmmod failed, returned -1
Note: Using POSIX realtime
mux4: not loaded
<commandline>:0: exit value: 255
<commandline>:0: rmmod failed, returned -1
Note: Using POSIX realtime
mux2: not loaded
<commandline>:0: exit value: 255
<commandline>:0: rmmod failed, returned -1
Note: Using POSIX realtime
wcomp: not loaded
<commandline>:0: exit value: 255
<commandline>:0: rmmod failed, returned -1
Note: Using POSIX realtime
motmod: not loaded
<commandline>:0: exit value: 255
<commandline>:0: rmmod failed, returned -1
Note: Using POSIX realtime
trivkins: not loaded
<commandline>:0: exit value: 255
<commandline>:0: rmmod failed, returned -1
<commandline>:0: unloadrt failed
Note: Using POSIX realtime

Kernel message information:
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 3.2.0-4-rt-686-pae (debian-kernel@lists.debian.org) (gcc version 4.6.3 (Debian 4.6.3-14) ) #1 SMP PREEMPT RT Debian 3.2.78-1
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 00000000000a0000 (usable)
[    0.000000]  BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 000000007fe88c00 (usable)
[    0.000000]  BIOS-e820: 000000007fe88c00 - 000000007fe8ac00 (ACPI NVS)
[    0.000000]  BIOS-e820: 000000007fe8ac00 - 000000007fe8cc00 (ACPI data)
[    0.000000]  BIOS-e820: 000000007fe8cc00 - 0000000080000000 (reserved)
[    0.000000]  BIOS-e820: 00000000f0000000 - 00000000f4000000 (reserved)
[    0.000000]  BIOS-e820: 00000000fec00000 - 00000000fed00400 (reserved)
[    0.000000]  BIOS-e820: 00000000fed20000 - 00000000feda0000 (reserved)
[    0.000000]  BIOS-e820: 00000000fee00000 - 00000000fef00000 (reserved)
[    0.000000]  BIOS-e820: 00000000ffb00000 - 0000000100000000 (reserved)
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.3 present.
[    0.000000] DMI: Dell Inc.                 Dell DM051                   /0WG261, BIOS A04 02/03/2006
[    0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
[    0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
[    0.000000] last_pfn = 0x7fe88 max_arch_pfn = 0x1000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-D3FFF write-protect
[    0.000000]   D4000-EFFFF uncachable
[    0.000000]   F0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask F80000000 write-back
[    0.000000]   1 base 07FF00000 mask FFFF00000 uncachable
[    0.000000]   2 disabled
[    0.000000]   3 disabled
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] found SMP MP-table at [c00fe710] fe710
[    0.000000] initial memory mapped : 0 - 01a00000
[    0.000000] Base memory trampoline at [c009b000] 9b000 size 16384
[    0.000000] init_memory_mapping: 0000000000000000-00000000379fe000
[    0.000000]  0000000000 - 0000200000 page 4k
[    0.000000]  0000200000 - 0037800000 page 2M
[    0.000000]  0037800000 - 00379fe000 page 4k
[    0.000000] kernel direct mapping tables up to 379fe000 @ 19f9000-1a00000
[    0.000000] RAMDISK: 36c5e000 - 37627000
[    0.000000] ACPI: RSDP 0x00000000000FEB00 00024 (v02 DELL  )
[    0.000000] ACPI: XSDT 0x00000000000FD25D 0005C (v01 DELL   DM051    00000007 ASL  00000061)
[    0.000000] ACPI: FACP 0x00000000000FD355 000F4 (v03 DELL   DM051    00000007 ASL  00000061)
[    0.000000] ACPI: DSDT 0x00000000FFFC74FC 02D0E (v01 DELL   dt_ex    00001000 INTL 20050309)
[    0.000000] ACPI: FACS 0x000000007FE88C00 00040
[    0.000000] ACPI: SSDT 0x00000000FFFCA32B 000AC (v01 DELL   st_ex    00001000 INTL 20050309)
[    0.000000] ACPI: APIC 0x00000000000FD449 00072 (v01 DELL   DM051    00000007 ASL  00000061)
[    0.000000] ACPI: BOOT 0x00000000000FD4BB 00028 (v01 DELL   DM051    00000007 ASL  00000061)
[    0.000000] ACPI: ASF! 0x00000000000FD4E3 00067 (v16 DELL   DM051    00000007 ASL  00000061)
[    0.000000] ACPI: MCFG 0x00000000000FD54A 0003E (v01 DELL   DM051    00000007 ASL  00000061)
[    0.000000] ACPI: HPET 0x00000000000FD588 00038 (v01 DELL   DM051    00000007 ASL  00000061)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] 1156MB HIGHMEM available.
[    0.000000] 889MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 379fe000
[    0.000000]   low ram: 0 - 379fe000
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000010 -> 0x00001000
[    0.000000]   Normal   0x00001000 -> 0x000379fe
[    0.000000]   HighMem  0x000379fe -> 0x0007fe88
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[2] active PFN ranges
[    0.000000]     0: 0x00000010 -> 0x000000a0
[    0.000000]     0: 0x00000100 -> 0x0007fe88
[    0.000000] On node 0 totalpages: 523800
[    0.000000] free_area_init_node: node 0, pgdat c14133c0, node_mem_map f5c5e200
[    0.000000]   DMA zone: 32 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 3952 pages, LIFO batch:0
[    0.000000]   Normal zone: 1748 pages used for memmap
[    0.000000]   Normal zone: 221994 pages, LIFO batch:31
[    0.000000]   HighMem zone: 2314 pages used for memmap
[    0.000000]   HighMem zone: 293760 pages, LIFO batch:31
[    0.000000] Using APIC driver default
[    0.000000] ACPI: PM-Timer IO Port: 0x808
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x06] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x05] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x07] disabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high level lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x08] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] SMP: Allowing 4 CPUs, 3 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
[    0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
[    0.000000] Allocating PCI resources starting at 80000000 (gap: 80000000:70000000)
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:32 nr_cpumask_bits:32 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] PERCPU: Embedded 93 pages/cpu @f786e000 s360128 r0 d20800 u380928
[    0.000000] pcpu-alloc: s360128 r0 d20800 u380928 alloc=93*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 519706
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.2.0-4-rt-686-pae root=UUID=38f0a84a-d6b1-48cf-bcca-8f62173e25f9 ro quiet
[    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Initializing CPU#0
[    0.000000] Initializing HighMem for node 0 (000379fe:0007fe88)
[    0.000000] Memory: 2060332k/2095648k available (2859k kernel code, 34868k reserved, 1343k data, 728k init, 1184296k highmem)
[    0.000000] virtual kernel memory layout:
[    0.000000]     fixmap  : 0xffd36000 - 0xfffff000   (2852 kB)
[    0.000000]     pkmap   : 0xffa00000 - 0xffc00000   (2048 kB)
[    0.000000]     vmalloc : 0xf81fe000 - 0xff9fe000   ( 120 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xf79fe000   ( 889 MB)
[    0.000000]       .init : 0xc141b000 - 0xc14d1000   ( 728 kB)
[    0.000000]       .data : 0xc12cad60 - 0xc141aa40   (1343 kB)
[    0.000000]       .text : 0xc1000000 - 0xc12cad60   (2859 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000000] Preemptible hierarchical RCU implementation.
[    0.000000] NR_IRQS:2304 nr_irqs:712 16
[    0.000000] CPU 0 irqstacks, hard=f580a000 soft=f580c000
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] hpet clockevent registered
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Detected 2992.345 MHz processor.
[    0.004003] Calibrating delay loop (skipped), value calculated using timer frequency.. 5984.69 BogoMIPS (lpj=11969380)
[    0.004008] pid_max: default: 32768 minimum: 301
[    0.004079] Security Framework initialized
[    0.004086] AppArmor: AppArmor disabled by boot time parameter
[    0.004113] Mount-cache hash table entries: 512
[    0.008020] Initializing cgroup subsys cpuacct
[    0.008027] Initializing cgroup subsys memory
[    0.008044] Initializing cgroup subsys devices
[    0.008047] Initializing cgroup subsys freezer
[    0.008049] Initializing cgroup subsys net_cls
[    0.008052] Initializing cgroup subsys blkio
[    0.008062] Initializing cgroup subsys perf_event
[    0.008113] CPU: Physical Processor ID: 0
[    0.008115] CPU: Processor Core ID: 0
[    0.008118] mce: CPU supports 4 MCE banks
[    0.008132] CPU0: Thermal monitoring enabled (TM1)
[    0.008138] using mwait in idle threads.
[    0.008217] SMP alternatives: switching to UP code
[    0.012029] ACPI: Core revision 20110623
[    0.079832] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.080225] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.119919] CPU0: Intel(R) Pentium(R) 4 CPU 3.00GHz stepping 03
[    0.120006] Performance Events: Netburst events, Netburst P4/Xeon PMU driver.
[    0.120006] ... version:                0
[    0.120006] ... bit width:              40
[    0.120006] ... generic registers:      18
[    0.120006] ... value mask:             000000ffffffffff
[    0.120006] ... max period:             0000007fffffffff
[    0.120006] ... fixed-purpose events:   0
[    0.120006] ... event mask:             000000000003ffff
[    0.136276] NMI watchdog enabled, takes one hw-pmu counter.
[    0.140027] Brought up 1 CPUs
[    0.140032] Total of 1 processors activated (5984.69 BogoMIPS).
[    0.141302] devtmpfs: initialized
[    0.141720] PM: Registering ACPI NVS region at 7fe88c00 (8192 bytes)
[    0.142078] print_constraints: dummy: 
[    0.142204] NET: Registered protocol family 16
[    0.142428] ACPI: bus type pci registered
[    0.142572] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf0000000-0xf3ffffff] (base 0xf0000000)
[    0.142578] PCI: MMCONFIG at [mem 0xf0000000-0xf3ffffff] reserved in E820
[    0.142582] PCI: Using MMCONFIG for extended config space
[    0.142585] PCI: Using configuration type 1 for base access
[    0.144160] bio: create slab <bio-0> at 0
[    0.144357] ACPI: Added _OSI(Module Device)
[    0.144362] ACPI: Added _OSI(Processor Device)
[    0.144366] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.144370] ACPI: Added _OSI(Processor Aggregator Device)
[    0.145407] ACPI: EC: Look up EC in DSDT
[    0.164055] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.174578] ACPI: Interpreter enabled
[    0.174600] ACPI: (supports S0 S1 S3 S4 S5)
[    0.174667] ACPI: Using IOAPIC for interrupt routing
[    0.234649] ACPI: No dock devices found.
[    0.234654] HEST: Table not found.
[    0.234663] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
[    0.248072] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.272065] pci_root PNP0A03:00: host bridge window [io  0x0000-0x0cf7] (ignored)
[    0.272072] pci_root PNP0A03:00: host bridge window [io  0x0d00-0xffff] (ignored)
[    0.272077] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
[    0.272081] pci_root PNP0A03:00: host bridge window [mem 0x000c0000-0x000effff] (ignored)
[    0.272085] pci_root PNP0A03:00: host bridge window [mem 0x000f0000-0x000fffff] (ignored)
[    0.272090] pci_root PNP0A03:00: host bridge window [mem 0x80000000-0xefffffff] (ignored)
[    0.272094] pci_root PNP0A03:00: host bridge window [mem 0xf4000000-0xfebfffff] (ignored)
[    0.272098] pci_root PNP0A03:00: host bridge window [mem 0xffa80800-0xffa80bff] (ignored)
[    0.272103] pci_root PNP0A03:00: host bridge window [mem 0xffa7c000-0xffa7ffff] (ignored)
[    0.272128] pci 0000:00:00.0: [8086:2770] type 0 class 0x000600
[    0.272197] pci 0000:00:01.0: [8086:2771] type 1 class 0x000604
[    0.272261] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.272325] pci 0000:00:1c.0: [8086:27d0] type 1 class 0x000604
[    0.272415] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.272451] pci 0000:00:1d.0: [8086:27c8] type 0 class 0x000c03
[    0.272501] pci 0000:00:1d.0: reg 20: [io  0xff80-0xff9f]
[    0.272546] pci 0000:00:1d.1: [8086:27c9] type 0 class 0x000c03
[    0.272595] pci 0000:00:1d.1: reg 20: [io  0xff60-0xff7f]
[    0.272636] pci 0000:00:1d.2: [8086:27ca] type 0 class 0x000c03
[    0.272685] pci 0000:00:1d.2: reg 20: [io  0xff40-0xff5f]
[    0.272729] pci 0000:00:1d.3: [8086:27cb] type 0 class 0x000c03
[    0.272778] pci 0000:00:1d.3: reg 20: [io  0xff20-0xff3f]
[    0.272829] pci 0000:00:1d.7: [8086:27cc] type 0 class 0x000c03
[    0.272853] pci 0000:00:1d.7: reg 10: [mem 0xffa80800-0xffa80bff]
[    0.272952] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[    0.272984] pci 0000:00:1e.0: [8086:244e] type 1 class 0x000604
[    0.273066] pci 0000:00:1f.0: [8086:27b8] type 0 class 0x000601
[    0.273162] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0c00 (mask 007f)
[    0.273168] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at 00e0 (mask 0007)
[    0.273224] pci 0000:00:1f.1: [8086:27df] type 0 class 0x000101
[    0.273241] pci 0000:00:1f.1: reg 10: [io  0x01f0-0x01f7]
[    0.273254] pci 0000:00:1f.1: reg 14: [io  0x03f4-0x03f7]
[    0.273266] pci 0000:00:1f.1: reg 18: [io  0x0170-0x0177]
[    0.273278] pci 0000:00:1f.1: reg 1c: [io  0x0374-0x0377]
[    0.273290] pci 0000:00:1f.1: reg 20: [io  0xffa0-0xffaf]
[    0.273336] pci 0000:00:1f.2: [8086:27c0] type 0 class 0x000101
[    0.273354] pci 0000:00:1f.2: reg 10: [io  0xfe00-0xfe07]
[    0.273365] pci 0000:00:1f.2: reg 14: [io  0xfe10-0xfe13]
[    0.273376] pci 0000:00:1f.2: reg 18: [io  0xfe20-0xfe27]
[    0.273387] pci 0000:00:1f.2: reg 1c: [io  0xfe30-0xfe33]
[    0.273398] pci 0000:00:1f.2: reg 20: [io  0xfea0-0xfeaf]
[    0.273409] pci 0000:00:1f.2: reg 24: [mem 0x00000000-0x000003ff]
[    0.273448] pci 0000:00:1f.2: PME# supported from D3hot
[    0.273472] pci 0000:00:1f.3: [8086:27da] type 0 class 0x000c05
[    0.273532] pci 0000:00:1f.3: reg 20: [io  0xece0-0xecff]
[    0.273625] pci 0000:01:00.0: [1002:9598] type 0 class 0x000300
[    0.273645] pci 0000:01:00.0: reg 10: [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.273660] pci 0000:01:00.0: reg 18: [mem 0xefdf0000-0xefdfffff 64bit]
[    0.273671] pci 0000:01:00.0: reg 20: [io  0xdc00-0xdcff]
[    0.273690] pci 0000:01:00.0: reg 30: [mem 0xefe00000-0xefe1ffff pref]
[    0.273733] pci 0000:01:00.0: supports D1 D2
[    0.273765] pci 0000:01:00.1: [1002:aa20] type 0 class 0x000403
[    0.273785] pci 0000:01:00.1: reg 10: [mem 0xefdec000-0xefdeffff 64bit]
[    0.273863] pci 0000:01:00.1: supports D1 D2
[    0.280041] pci 0000:00:01.0: PCI bridge to [bus 01-01]
[    0.280048] pci 0000:00:01.0:   bridge window [io  0xd000-0xdfff]
[    0.280054] pci 0000:00:01.0:   bridge window [mem 0xefd00000-0xefefffff]
[    0.280061] pci 0000:00:01.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.280115] pci 0000:00:1c.0: PCI bridge to [bus 02-02]
[    0.280128] pci 0000:00:1c.0:   bridge window [mem 0xefc00000-0xefcfffff]
[    0.280177] pci 0000:03:02.0: [1106:3106] type 0 class 0x000200
[    0.280200] pci 0000:03:02.0: reg 10: [io  0xcc00-0xccff]
[    0.280213] pci 0000:03:02.0: reg 14: [mem 0xefafef00-0xefafefff]
[    0.280265] pci 0000:03:02.0: reg 30: [mem 0xefb00000-0xefb0ffff pref]
[    0.280301] pci 0000:03:02.0: supports D1 D2
[    0.280305] pci 0000:03:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.280341] pci 0000:03:08.0: [8086:27dc] type 0 class 0x000200
[    0.280363] pci 0000:03:08.0: reg 10: [mem 0xefaff000-0xefafffff]
[    0.280376] pci 0000:03:08.0: reg 14: [io  0xc8c0-0xc8ff]
[    0.280455] pci 0000:03:08.0: supports D1 D2
[    0.280458] pci 0000:03:08.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.280503] pci 0000:00:1e.0: PCI bridge to [bus 03-03] (subtractive decode)
[    0.280508] pci 0000:00:1e.0:   bridge window [io  0xc000-0xcfff]
[    0.280514] pci 0000:00:1e.0:   bridge window [mem 0xefa00000-0xefbfffff]
[    0.280523] pci 0000:00:1e.0:   bridge window [io  0x0000-0xffff] (subtractive decode)
[    0.280528] pci 0000:00:1e.0:   bridge window [mem 0x00000000-0xfffffffff] (subtractive decode)
[    0.280546] pci_bus 0000:00: on NUMA node 0
[    0.280554] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.281732] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCI4._PRT]
[    0.282473] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCI2._PRT]
[    0.282902] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCI1._PRT]
[    0.283391]  pci0000:00: Requesting ACPI _OSC control (0x1d)
[    0.283398]  pci0000:00: ACPI _OSC request failed (AE_NOT_FOUND), returned control mask: 0x1d
[    0.283401] ACPI _OSC control for PCIe not granted, disabling ASPM
[    0.786791] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 *11 12 15)
[    0.787260] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *9 10 11 12 15)
[    0.787770] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 *5 6 7 9 10 11 12 15)
[    0.788273] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 11 12 15) *0, disabled.
[    0.788751] ACPI: PCI Interrupt Link [LNKE] (IRQs *3 4 5 6 7 9 10 11 12 15)
[    0.789261] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 *10 11 12 15)
[    0.789724] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 *9 10 11 12 15)
[    0.790216] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 *4 5 6 7 9 10 11 12 15)
[    0.790491] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
[    0.790501] vgaarb: loaded
[    0.790504] vgaarb: bridge control possible 0000:01:00.0
[    0.790611] PCI: Using ACPI for IRQ routing
[    0.792455] PCI: pci_cache_line_size set to 64 bytes
[    0.792569] reserve RAM buffer: 000000007fe88c00 - 000000007fffffff 
[    0.792804] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
[    0.792813] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.792821] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
[    0.800106] Switching to clocksource hpet
[    0.804238] pnp: PnP ACPI init
[    0.804265] ACPI: bus type pnp registered
[    0.816062] pnp 00:00: [bus 00-ff]
[    0.816069] pnp 00:00: [io  0x0cf8-0x0cff]
[    0.816074] pnp 00:00: [io  0x0000-0x0cf7 window]
[    0.816079] pnp 00:00: [io  0x0d00-0xffff window]
[    0.816084] pnp 00:00: [mem 0x000a0000-0x000bffff window]
[    0.816089] pnp 00:00: [mem 0x000c0000-0x000effff window]
[    0.816093] pnp 00:00: [mem 0x000f0000-0x000fffff window]
[    0.816098] pnp 00:00: [mem 0x80000000-0xefffffff window]
[    0.816107] pnp 00:00: [mem 0xf4000000-0xfebfffff window]
[    0.816112] pnp 00:00: [mem 0xffa80800-0xffa80bff window]
[    0.816116] pnp 00:00: [mem 0xffa7c000-0xffa7ffff window]
[    0.816189] pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 (active)
[    0.818838] pnp 00:01: [io  0x0060]
[    0.818843] pnp 00:01: [io  0x0064]
[    0.818846] pnp 00:01: [io  0x0062-0x0063]
[    0.818850] pnp 00:01: [io  0x0065-0x006f]
[    0.818854] pnp 00:01: [io  0x00e0-0x00ef]
[    0.818857] pnp 00:01: [io  0x0800-0x085f]
[    0.818861] pnp 00:01: [io  0x0c00-0x0c7f]
[    0.818865] pnp 00:01: [io  0x0860-0x08ff]
[    0.818990] system 00:01: [io  0x0800-0x085f] could not be reserved
[    0.818996] system 00:01: [io  0x0c00-0x0c7f] has been reserved
[    0.819001] system 00:01: [io  0x0860-0x08ff] has been reserved
[    0.819008] system 00:01: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.819237] pnp 00:02: [io  0x0080-0x009f]
[    0.819242] pnp 00:02: [io  0x0000-0x001f]
[    0.819246] pnp 00:02: [io  0x00c0-0x00df]
[    0.819250] pnp 00:02: [dma 4]
[    0.819313] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.819474] pnp 00:03: [io  0x00f0-0x00ff]
[    0.819487] pnp 00:03: [irq 13]
[    0.819549] pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
[    0.819709] pnp 00:04: [io  0x0061]
[    0.819770] pnp 00:04: Plug and Play ACPI device, IDs PNP0800 (active)
[    0.819949] pnp 00:05: [io  0x0070-0x007f]
[    0.819959] pnp 00:05: [irq 8]
[    0.820045] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.848051] pnp 00:06: [mem 0x00000000-0x0009ffff]
[    0.848057] pnp 00:06: [mem 0x00100000-0x00ffffff]
[    0.848062] pnp 00:06: [mem 0x01000000-0x7fe88bff]
[    0.848066] pnp 00:06: [mem 0x000f0000-0x000fffff]
[    0.848070] pnp 00:06: [mem 0x000c0000-0x000d3fff]
[    0.848074] pnp 00:06: [mem 0xfec00000-0xfecfffff]
[    0.848078] pnp 00:06: [mem 0xfee00000-0xfeefffff]
[    0.848083] pnp 00:06: [mem 0xfed20000-0xfed9ffff]
[    0.848087] pnp 00:06: [mem 0xffb00000-0xffbfffff]
[    0.848091] pnp 00:06: [mem 0xffc00000-0xffffffff]
[    0.848215] system 00:06: [mem 0x00000000-0x0009ffff] could not be reserved
[    0.848223] system 00:06: [mem 0x00100000-0x00ffffff] could not be reserved
[    0.848229] system 00:06: [mem 0x01000000-0x7fe88bff] could not be reserved
[    0.848234] system 00:06: [mem 0x000f0000-0x000fffff] could not be reserved
[    0.848240] system 00:06: [mem 0x000c0000-0x000d3fff] could not be reserved
[    0.848246] system 00:06: [mem 0xfec00000-0xfecfffff] could not be reserved
[    0.848251] system 00:06: [mem 0xfee00000-0xfeefffff] has been reserved
[    0.848256] system 00:06: [mem 0xfed20000-0xfed9ffff] has been reserved
[    0.848261] system 00:06: [mem 0xffb00000-0xffbfffff] has been reserved
[    0.848266] system 00:06: [mem 0xffc00000-0xffffffff] has been reserved
[    0.848272] system 00:06: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.851121] pnp 00:07: [mem 0xf0000000-0xf3ffffff]
[    0.851126] pnp 00:07: [mem 0xfeda0000-0xfedacfff]
[    0.851130] pnp 00:07: [io  0x0100-0x01fe]
[    0.851134] pnp 00:07: [io  0x0200-0x0277]
[    0.851137] pnp 00:07: [io  0x0280-0x02e7]
[    0.851141] pnp 00:07: [io  0x02e8-0x02ef]
[    0.851144] pnp 00:07: [io  0x02f0-0x02f7]
[    0.851148] pnp 00:07: [io  0x02f8-0x02ff]
[    0.851152] pnp 00:07: [io  0x0300-0x0377]
[    0.851155] pnp 00:07: [io  0x0380-0x03bb]
[    0.851159] pnp 00:07: [io  0x03c0-0x03e7]
[    0.851162] pnp 00:07: [io  0x03f6-0x03f7]
[    0.851166] pnp 00:07: [io  0x0400-0x04cf]
[    0.851170] pnp 00:07: [io  0x04d2-0x057f]
[    0.851173] pnp 00:07: [io  0x0580-0x0677]
[    0.851177] pnp 00:07: [io  0x0680-0x0777]
[    0.851180] pnp 00:07: [io  0x0780-0x07bb]
[    0.851184] pnp 00:07: [io  0x07c0-0x07ff]
[    0.851187] pnp 00:07: [io  0x08e0-0x08ff]
[    0.851191] pnp 00:07: [io  0x0900-0x09fe]
[    0.851195] pnp 00:07: [io  0x0a00-0x0afe]
[    0.851198] pnp 00:07: [io  0x0b00-0x0bfe]
[    0.851202] pnp 00:07: [io  0x0c80-0x0caf]
[    0.851205] pnp 00:07: [io  0x0cb0-0x0cbf]
[    0.851209] pnp 00:07: [io  0x0cc0-0x0cf7]
[    0.851213] pnp 00:07: [io  0x0d00-0x0dfe]
[    0.851216] pnp 00:07: [io  0x0e00-0x0efe]
[    0.851220] pnp 00:07: [io  0x0f00-0x0ffe]
[    0.851223] pnp 00:07: [io  0x2000-0x20fe]
[    0.851227] pnp 00:07: [io  0x2100-0x21fe]
[    0.851231] pnp 00:07: [io  0x2200-0x22fe]
[    0.851234] pnp 00:07: [io  0x2300-0x23fe]
[    0.851238] pnp 00:07: [io  0x2400-0x24fe]
[    0.851241] pnp 00:07: [io  0x2500-0x25fe]
[    0.851245] pnp 00:07: [io  0x2600-0x26fe]
[    0.851249] pnp 00:07: [io  0x2700-0x27fe]
[    0.851252] pnp 00:07: [io  0x2800-0x28fe]
[    0.851256] pnp 00:07: [io  0x2900-0x29fe]
[    0.851259] pnp 00:07: [io  0x2a00-0x2afe]
[    0.851263] pnp 00:07: [io  0x2b00-0x2bfe]
[    0.851266] pnp 00:07: [io  0x2c00-0x2cfe]
[    0.851270] pnp 00:07: [io  0x2d00-0x2dfe]
[    0.851274] pnp 00:07: [io  0x2e00-0x2efe]
[    0.851277] pnp 00:07: [io  0x2f00-0x2ffe]
[    0.851281] pnp 00:07: [io  0x5000-0x50fe]
[    0.851284] pnp 00:07: [io  0x5100-0x51fe]
[    0.851288] pnp 00:07: [io  0x5200-0x52fe]
[    0.851291] pnp 00:07: [io  0x5300-0x53fe]
[    0.851295] pnp 00:07: [io  0x5400-0x54fe]
[    0.851299] pnp 00:07: [io  0x5500-0x55fe]
[    0.851302] pnp 00:07: [io  0x5600-0x56fe]
[    0.851306] pnp 00:07: [io  0x5700-0x57fe]
[    0.851309] pnp 00:07: [io  0x5800-0x58fe]
[    0.851313] pnp 00:07: [io  0x5900-0x59fe]
[    0.851316] pnp 00:07: [io  0x5a00-0x5afe]
[    0.851320] pnp 00:07: [io  0x5b00-0x5bfe]
[    0.851323] pnp 00:07: [io  0x5c00-0x5cfe]
[    0.851327] pnp 00:07: [io  0x5d00-0x5dfe]
[    0.851333] pnp 00:07: [io  0x5e00-0x5efe]
[    0.851337] pnp 00:07: [io  0x5f00-0x5ffe]
[    0.851340] pnp 00:07: [io  0x6000-0x60fe]
[    0.851344] pnp 00:07: [io  0x6100-0x61fe]
[    0.851347] pnp 00:07: [io  0x6200-0x62fe]
[    0.851351] pnp 00:07: [io  0x6300-0x63fe]
[    0.851354] pnp 00:07: [io  0x6400-0x64fe]
[    0.851358] pnp 00:07: [io  0x6500-0x65fe]
[    0.851361] pnp 00:07: [io  0x6600-0x66fe]
[    0.851365] pnp 00:07: [io  0x6700-0x67fe]
[    0.851368] pnp 00:07: [io  0x6800-0x68fe]
[    0.851372] pnp 00:07: [io  0x6900-0x69fe]
[    0.851375] pnp 00:07: [io  0x6a00-0x6afe]
[    0.851379] pnp 00:07: [io  0x6b00-0x6bfe]
[    0.851382] pnp 00:07: [io  0x6c00-0x6cfe]
[    0.851386] pnp 00:07: [io  0x6d00-0x6dfe]
[    0.851389] pnp 00:07: [io  0x6e00-0x6efe]
[    0.851393] pnp 00:07: [io  0x6f00-0x6ffe]
[    0.851396] pnp 00:07: [io  0xa000-0xa0fe]
[    0.851400] pnp 00:07: [io  0xa100-0xa1fe]
[    0.851403] pnp 00:07: [io  0xa200-0xa2fe]
[    0.851407] pnp 00:07: [io  0xa300-0xa3fe]
[    0.851410] pnp 00:07: [io  0xa400-0xa4fe]
[    0.851414] pnp 00:07: [io  0xa500-0xa5fe]
[    0.851417] pnp 00:07: [io  0xa600-0xa6fe]
[    0.851421] pnp 00:07: [io  0xa700-0xa7fe]
[    0.851425] pnp 00:07: [io  0xa800-0xa8fe]
[    0.851428] pnp 00:07: [io  0xa900-0xa9fe]
[    0.851432] pnp 00:07: [io  0xaa00-0xaafe]
[    0.851435] pnp 00:07: [io  0xab00-0xabfe]
[    0.851439] pnp 00:07: [io  0xac00-0xacfe]
[    0.851442] pnp 00:07: [io  0xad00-0xadfe]
[    0.851446] pnp 00:07: [io  0xae00-0xaefe]
[    0.851449] pnp 00:07: [io  0xaf00-0xaffe]
[    0.851861] system 00:07: [io  0x0100-0x01fe] could not be reserved
[    0.851868] system 00:07: [io  0x0200-0x0277] has been reserved
[    0.851873] system 00:07: [io  0x0280-0x02e7] has been reserved
[    0.851877] system 00:07: [io  0x02e8-0x02ef] has been reserved
[    0.851882] system 00:07: [io  0x02f0-0x02f7] has been reserved
[    0.851887] system 00:07: [io  0x02f8-0x02ff] has been reserved
[    0.851893] system 00:07: [io  0x0300-0x0377] could not be reserved
[    0.851898] system 00:07: [io  0x0380-0x03bb] has been reserved
[    0.851903] system 00:07: [io  0x03c0-0x03e7] could not be reserved
[    0.851909] system 00:07: [io  0x03f6-0x03f7] could not be reserved
[    0.851914] system 00:07: [io  0x0400-0x04cf] has been reserved
[    0.851918] system 00:07: [io  0x04d2-0x057f] has been reserved
[    0.851923] system 00:07: [io  0x0580-0x0677] has been reserved
[    0.851928] system 00:07: [io  0x0680-0x0777] has been reserved
[    0.851932] system 00:07: [io  0x0780-0x07bb] has been reserved
[    0.851937] system 00:07: [io  0x07c0-0x07ff] has been reserved
[    0.851942] system 00:07: [io  0x08e0-0x08ff] has been reserved
[    0.851947] system 00:07: [io  0x0900-0x09fe] has been reserved
[    0.851952] system 00:07: [io  0x0a00-0x0afe] has been reserved
[    0.851957] system 00:07: [io  0x0b00-0x0bfe] has been reserved
[    0.851961] system 00:07: [io  0x0c80-0x0caf] has been reserved
[    0.851966] system 00:07: [io  0x0cb0-0x0cbf] has been reserved
[    0.851971] system 00:07: [io  0x0cc0-0x0cf7] has been reserved
[    0.851976] system 00:07: [io  0x0d00-0x0dfe] has been reserved
[    0.851981] system 00:07: [io  0x0e00-0x0efe] has been reserved
[    0.851986] system 00:07: [io  0x0f00-0x0ffe] has been reserved
[    0.851991] system 00:07: [io  0x2000-0x20fe] has been reserved
[    0.851995] system 00:07: [io  0x2100-0x21fe] has been reserved
[    0.852000] system 00:07: [io  0x2200-0x22fe] has been reserved
[    0.852033] system 00:07: [io  0x2300-0x23fe] has been reserved
[    0.852039] system 00:07: [io  0x2400-0x24fe] has been reserved
[    0.852044] system 00:07: [io  0x2500-0x25fe] has been reserved
[    0.852049] system 00:07: [io  0x2600-0x26fe] has been reserved
[    0.852053] system 00:07: [io  0x2700-0x27fe] has been reserved
[    0.852058] system 00:07: [io  0x2800-0x28fe] has been reserved
[    0.852063] system 00:07: [io  0x2900-0x29fe] has been reserved
[    0.852068] system 00:07: [io  0x2a00-0x2afe] has been reserved
[    0.852072] system 00:07: [io  0x2b00-0x2bfe] has been reserved
[    0.852077] system 00:07: [io  0x2c00-0x2cfe] has been reserved
[    0.852082] system 00:07: [io  0x2d00-0x2dfe] has been reserved
[    0.852086] system 00:07: [io  0x2e00-0x2efe] has been reserved
[    0.852091] system 00:07: [io  0x2f00-0x2ffe] has been reserved
[    0.852096] system 00:07: [io  0x5000-0x50fe] has been reserved
[    0.852101] system 00:07: [io  0x5100-0x51fe] has been reserved
[    0.852106] system 00:07: [io  0x5200-0x52fe] has been reserved
[    0.852110] system 00:07: [io  0x5300-0x53fe] has been reserved
[    0.852115] system 00:07: [io  0x5400-0x54fe] has been reserved
[    0.852120] system 00:07: [io  0x5500-0x55fe] has been reserved
[    0.852125] system 00:07: [io  0x5600-0x56fe] has been reserved
[    0.852130] system 00:07: [io  0x5700-0x57fe] has been reserved
[    0.852135] system 00:07: [io  0x5800-0x58fe] has been reserved
[    0.852140] system 00:07: [io  0x5900-0x59fe] has been reserved
[    0.852145] system 00:07: [io  0x5a00-0x5afe] has been reserved
[    0.852150] system 00:07: [io  0x5b00-0x5bfe] has been reserved
[    0.852155] system 00:07: [io  0x5c00-0x5cfe] has been reserved
[    0.852160] system 00:07: [io  0x5d00-0x5dfe] has been reserved
[    0.852165] system 00:07: [io  0x5e00-0x5efe] has been reserved
[    0.852170] system 00:07: [io  0x5f00-0x5ffe] has been reserved
[    0.852175] system 00:07: [io  0x6000-0x60fe] has been reserved
[    0.852180] system 00:07: [io  0x6100-0x61fe] has been reserved
[    0.852185] system 00:07: [io  0x6200-0x62fe] has been reserved
[    0.852190] system 00:07: [io  0x6300-0x63fe] has been reserved
[    0.852195] system 00:07: [io  0x6400-0x64fe] has been reserved
[    0.852201] system 00:07: [io  0x6500-0x65fe] has been reserved
[    0.852206] system 00:07: [io  0x6600-0x66fe] has been reserved
[    0.852211] system 00:07: [io  0x6700-0x67fe] has been reserved
[    0.852216] system 00:07: [io  0x6800-0x68fe] has been reserved
[    0.852221] system 00:07: [io  0x6900-0x69fe] has been reserved
[    0.852227] system 00:07: [io  0x6a00-0x6afe] has been reserved
[    0.852232] system 00:07: [io  0x6b00-0x6bfe] has been reserved
[    0.852237] system 00:07: [io  0x6c00-0x6cfe] has been reserved
[    0.852242] system 00:07: [io  0x6d00-0x6dfe] has been reserved
[    0.852248] system 00:07: [io  0x6e00-0x6efe] has been reserved
[    0.852253] system 00:07: [io  0x6f00-0x6ffe] has been reserved
[    0.852258] system 00:07: [io  0xa000-0xa0fe] has been reserved
[    0.852264] system 00:07: [io  0xa100-0xa1fe] has been reserved
[    0.852269] system 00:07: [io  0xa200-0xa2fe] has been reserved
[    0.852274] system 00:07: [io  0xa300-0xa3fe] has been reserved
[    0.852280] system 00:07: [io  0xa400-0xa4fe] has been reserved
[    0.852285] system 00:07: [io  0xa500-0xa5fe] has been reserved
[    0.852291] system 00:07: [io  0xa600-0xa6fe] has been reserved
[    0.852296] system 00:07: [io  0xa700-0xa7fe] has been reserved
[    0.852302] system 00:07: [io  0xa800-0xa8fe] has been reserved
[    0.852307] system 00:07: [io  0xa900-0xa9fe] has been reserved
[    0.852313] system 00:07: [io  0xaa00-0xaafe] has been reserved
[    0.852318] system 00:07: [io  0xab00-0xabfe] has been reserved
[    0.852324] system 00:07: [io  0xac00-0xacfe] has been reserved
[    0.852330] system 00:07: [io  0xad00-0xadfe] has been reserved
[    0.852338] system 00:07: [io  0xae00-0xaefe] has been reserved
[    0.852344] system 00:07: [io  0xaf00-0xaffe] has been reserved
[    0.852349] system 00:07: [mem 0xf0000000-0xf3ffffff] has been reserved
[    0.852354] system 00:07: [mem 0xfeda0000-0xfedacfff] has been reserved
[    0.852360] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.852372] pnp: PnP ACPI: found 8 devices
[    0.852375] ACPI: ACPI bus type pnp unregistered
[    0.852381] PnPBIOS: Disabled by ACPI PNP
[    0.891731] PCI: max bus depth: 1 pci_try_num: 2
[    0.891771] pci 0000:00:1f.2: BAR 5: assigned [mem 0x80000000-0x800003ff]
[    0.891782] pci 0000:00:1c.0: BAR 15: assigned [mem 0x80100000-0x802fffff 64bit pref]
[    0.891791] pci 0000:00:1c.0: BAR 13: assigned [io  0x1000-0x1fff]
[    0.891797] pci 0000:00:01.0: PCI bridge to [bus 01-01]
[    0.891802] pci 0000:00:01.0:   bridge window [io  0xd000-0xdfff]
[    0.891808] pci 0000:00:01.0:   bridge window [mem 0xefd00000-0xefefffff]
[    0.891814] pci 0000:00:01.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.891821] pci 0000:00:1c.0: PCI bridge to [bus 02-02]
[    0.891826] pci 0000:00:1c.0:   bridge window [io  0x1000-0x1fff]
[    0.891833] pci 0000:00:1c.0:   bridge window [mem 0xefc00000-0xefcfffff]
[    0.891839] pci 0000:00:1c.0:   bridge window [mem 0x80100000-0x802fffff 64bit pref]
[    0.891848] pci 0000:00:1e.0: PCI bridge to [bus 03-03]
[    0.891852] pci 0000:00:1e.0:   bridge window [io  0xc000-0xcfff]
[    0.891859] pci 0000:00:1e.0:   bridge window [mem 0xefa00000-0xefbfffff]
[    0.891891] pci 0000:00:01.0: setting latency timer to 64
[    0.891905] pci 0000:00:1c.0: setting latency timer to 64
[    0.891915] pci 0000:00:1e.0: setting latency timer to 64
[    0.891921] pci_bus 0000:00: resource 0 [io  0x0000-0xffff]
[    0.891925] pci_bus 0000:00: resource 1 [mem 0x00000000-0xfffffffff]
[    0.891929] pci_bus 0000:01: resource 0 [io  0xd000-0xdfff]
[    0.891932] pci_bus 0000:01: resource 1 [mem 0xefd00000-0xefefffff]
[    0.891936] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.891939] pci_bus 0000:02: resource 0 [io  0x1000-0x1fff]
[    0.891942] pci_bus 0000:02: resource 1 [mem 0xefc00000-0xefcfffff]
[    0.891946] pci_bus 0000:02: resource 2 [mem 0x80100000-0x802fffff 64bit pref]
[    0.891949] pci_bus 0000:03: resource 0 [io  0xc000-0xcfff]
[    0.891952] pci_bus 0000:03: resource 1 [mem 0xefa00000-0xefbfffff]
[    0.891956] pci_bus 0000:03: resource 4 [io  0x0000-0xffff]
[    0.891959] pci_bus 0000:03: resource 5 [mem 0x00000000-0xfffffffff]
[    0.892074] NET: Registered protocol family 2
[    0.895017] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[    0.895551] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.896126] TCP bind hash table entries: 65536 (order: 8, 1835008 bytes)
[    0.896971] TCP: Hash tables configured (established 131072 bind 65536)
[    0.896975] TCP reno registered
[    0.896982] UDP hash table entries: 512 (order: 3, 32768 bytes)
[    0.897004] UDP-Lite hash table entries: 512 (order: 3, 32768 bytes)
[    0.897210] NET: Registered protocol family 1
[    0.897465] pci 0000:01:00.0: Boot video device
[    0.897493] pci 0000:03:08.0: Firmware left e100 interrupts enabled; disabling
[    0.897505] PCI: CLS 64 bytes, default 64
[    0.897624] Unpacking initramfs...
[    1.281877] Freeing initrd memory: 10020k freed
[    1.287413] Simple Boot Flag at 0x7a set to 0x1
[    1.288119] audit: initializing netlink socket (disabled)
[    1.288144] type=2000 audit(1571936577.284:1): initialized
[    1.305346] highmem bounce pool size: 64 pages
[    1.305356] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    1.305612] VFS: Disk quotas dquot_6.5.2
[    1.305677] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    1.305807] msgmni has been set to 1730
[    1.306158] alg: No test for stdrng (krng)
[    1.306218] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    1.306224] io scheduler noop registered
[    1.306227] io scheduler deadline registered
[    1.306251] io scheduler cfq registered (default)
[    1.306419] pcieport 0000:00:01.0: setting latency timer to 64
[    1.306469] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
[    1.306563] pcieport 0000:00:1c.0: setting latency timer to 64
[    1.306613] pcieport 0000:00:1c.0: irq 41 for MSI/MSI-X
[    1.306782] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    1.306834] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    1.306838] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    1.307642] ERST: Table is not found!
[    1.307647] GHES: HEST is not enabled!
[    1.307677] isapnp: Scanning for PnP cards...
[    1.660966] isapnp: No Plug & Play device found
[    1.661071] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    1.708347] Linux agpgart interface v0.103
[    1.708986] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    1.711858] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.711870] serio: i8042 AUX port at 0x60,0x64 irq 12
[    1.712185] mousedev: PS/2 mouse device common for all mice
[    1.712261] rtc_cmos 00:05: RTC can wake from S4
[    1.712445] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
[    1.712520] rtc0: alarms up to one day, 242 bytes nvram, hpet irqs
[    1.712546] cpuidle: using governor ladder
[    1.712550] cpuidle: using governor menu
[    1.713086] TCP cubic registered
[    1.713159] NET: Registered protocol family 10
[    1.714511] Mobile IPv6
[    1.714516] NET: Registered protocol family 17
[    1.714526] Registering the dns_resolver key type
[    1.714568] Using IPI No-Shortcut mode
[    1.714771] PM: Hibernation image not present or could not be loaded.
[    1.714794] registered taskstats version 1
[    1.715172] rtc_cmos 00:05: setting system clock to 2019-10-24 17:02:57 UTC (1571936577)
[    1.715256] Initializing network drop monitor service
[    1.715475] Freeing unused kernel memory: 728k freed
[    1.715939] Write protecting the kernel text: 2860k
[    1.716034] Write protecting the kernel read-only data: 1076k
[    1.716038] NX-protecting the kernel data: 3284k
[    1.740294] udevd[57]: starting version 175
[    1.819136] usbcore: registered new interface driver usbfs
[    1.819186] usbcore: registered new interface driver hub
[    1.867098] usbcore: registered new device driver usb
[    1.892370] SCSI subsystem initialized
[    1.913385] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.913455] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[    1.913462] ehci_hcd 0000:00:1d.7: EHCI Host Controller
[    1.913512] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1
[    1.913544] ehci_hcd 0000:00:1d.7: using broken periodic workaround
[    1.913557] ehci_hcd 0000:00:1d.7: debug port 1
[    1.917455] ehci_hcd 0000:00:1d.7: cache line size of 64 is not supported
[    1.934528] ehci_hcd 0000:00:1d.7: irq 21, io mem 0xffa80800
[    1.952399] uhci_hcd: USB Universal Host Controller Interface driver
[    1.955816] via_rhine: v1.10-LK1.5.1 2010-10-09 Written by Donald Becker
[    1.961170] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[    1.961262] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    1.961268] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.961272] usb usb1: Product: EHCI Host Controller
[    1.961275] usb usb1: Manufacturer: Linux 3.2.0-4-rt-686-pae ehci_hcd
[    1.961278] usb usb1: SerialNumber: 0000:00:1d.7
[    1.964601] e100: Intel(R) PRO/100 Network Driver, 3.5.24-k2-NAPI
[    1.964605] e100: Copyright(c) 1999-2006 Intel Corporation
[    1.980880] hub 1-0:1.0: USB hub found
[    1.980894] hub 1-0:1.0: 8 ports detected
[    1.981104] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[    1.981110] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[    1.981128] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    1.990302] uhci_hcd 0000:00:1d.0: irq 21, io base 0x0000ff80
[    1.990382] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[    1.990387] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.990391] usb usb2: Product: UHCI Host Controller
[    1.990394] usb usb2: Manufacturer: Linux 3.2.0-4-rt-686-pae uhci_hcd
[    1.990398] usb usb2: SerialNumber: 0000:00:1d.0
[    1.990648] hub 2-0:1.0: USB hub found
[    1.990661] hub 2-0:1.0: 2 ports detected
[    1.990836] uhci_hcd 0000:00:1d.1: setting latency timer to 64
[    1.990841] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[    1.990859] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
[    1.990981] libata version 3.00 loaded.
[    1.995977] uhci_hcd 0000:00:1d.1: irq 22, io base 0x0000ff60
[    1.996111] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[    1.996116] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.996120] usb usb3: Product: UHCI Host Controller
[    1.996123] usb usb3: Manufacturer: Linux 3.2.0-4-rt-686-pae uhci_hcd
[    1.996126] usb usb3: SerialNumber: 0000:00:1d.1
[    1.996374] hub 3-0:1.0: USB hub found
[    1.996386] hub 3-0:1.0: 2 ports detected
[    1.996546] ata_piix 0000:00:1f.1: version 2.13
[    1.996621] ata_piix 0000:00:1f.1: setting latency timer to 64
[    2.005841] via-rhine 0000:03:02.0: eth0: VIA Rhine III at 0x1cc00, 00:0d:88:b5:36:50, IRQ 18
[    2.006570] via-rhine 0000:03:02.0: eth0: MII PHY found at address 1, status 0x7869 advertising 05e1 Link c1e1
[    2.021261] scsi0 : ata_piix
[    2.025404] scsi1 : ata_piix
[    2.025517] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xffa0 irq 14
[    2.025522] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xffa8 irq 15
[    2.025610] uhci_hcd 0000:00:1d.2: setting latency timer to 64
[    2.025616] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[    2.025636] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
[    2.028473] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000ff40
[    2.028547] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[    2.028553] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.028556] usb usb4: Product: UHCI Host Controller
[    2.028559] usb usb4: Manufacturer: Linux 3.2.0-4-rt-686-pae uhci_hcd
[    2.028562] usb usb4: SerialNumber: 0000:00:1d.2
[    2.028806] hub 4-0:1.0: USB hub found
[    2.028818] hub 4-0:1.0: 2 ports detected
[    2.028986] ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
[    2.029093] ata1: port disabled--ignoring
[    2.029143] ata2: port disabled--ignoring
[    2.071526] e100 0000:03:08.0: eth1: addr 0xefaff000, irq 20, MAC addr 00:12:3f:cc:36:c4
[    2.184060] ata_piix 0000:00:1f.2: setting latency timer to 64
[    2.185073] scsi2 : ata_piix
[    2.185317] scsi3 : ata_piix
[    2.185429] ata3: SATA max UDMA/133 cmd 0xfe00 ctl 0xfe10 bmdma 0xfea0 irq 20
[    2.185434] ata4: SATA max UDMA/133 cmd 0xfe20 ctl 0xfe30 bmdma 0xfea8 irq 20
[    2.185895] uhci_hcd 0000:00:1d.3: setting latency timer to 64
[    2.185901] uhci_hcd 0000:00:1d.3: UHCI Host Controller
[    2.185921] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
[    2.186401] uhci_hcd 0000:00:1d.3: irq 23, io base 0x0000ff20
[    2.186475] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
[    2.186480] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.186483] usb usb5: Product: UHCI Host Controller
[    2.186487] usb usb5: Manufacturer: Linux 3.2.0-4-rt-686-pae uhci_hcd
[    2.186490] usb usb5: SerialNumber: 0000:00:1d.3
[    2.186731] hub 5-0:1.0: USB hub found
[    2.186743] hub 5-0:1.0: 2 ports detected
[    2.284029] Refined TSC clocksource calibration: 2992.499 MHz.
[    2.284040] Switching to clocksource tsc
[    2.356407] ata3.00: ATA-9: Intenso SSD SATAIII, S0222A0, max UDMA/133
[    2.356414] ata3.00: 250069680 sectors, multi 1: LBA48 NCQ (depth 0/32)
[    2.373505] ata3.00: configured for UDMA/133
[    2.373701] scsi 2:0:0:0: Direct-Access     ATA      Intenso SSD SATA S022 PQ: 0 ANSI: 5
[    2.391055] sd 2:0:0:0: [sda] 250069680 512-byte logical blocks: (128 GB/119 GiB)
[    2.391249] sd 2:0:0:0: [sda] Write Protect is off
[    2.391255] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.391316] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.393037]  sda: sda1 sda2 < sda5 >
[    2.393955] sd 2:0:0:0: [sda] Attached SCSI disk
[    2.397676] sd 2:0:0:0: Attached scsi generic sg0 type 0
[    2.492264] PM: Starting manual resume from disk
[    2.492272] PM: Hibernation image partition 8:5 present
[    2.492275] PM: Looking for hibernation image.
[    2.492631] PM: Image not found (code -22)
[    2.492635] PM: Hibernation image not present or could not be loaded.
[    2.529596] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[    2.532034] usb 2-1: new low-speed USB device number 2 using uhci_hcd
[    2.859381] usb 2-1: New USB device found, idVendor=046d, idProduct=c30e
[    2.859388] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.859393] usb 2-1: Product: HID compliant keyboard
[    2.859396] usb 2-1: Manufacturer: Logitech
[    2.906570] udevd[321]: starting version 175
[    3.108041] usb 2-2: new low-speed USB device number 3 using uhci_hcd
[    3.131689] intel_rng: Firmware space is locked read-only. If you can't or
[    3.131693] intel_rng: don't want to disable this in firmware setup, and if
[    3.131694] intel_rng: you are certain that your system has a functional
[    3.131696] intel_rng: RNG, try using the 'no_fwh_detect' option.
[    3.149087] iTCO_vendor_support: vendor-support=0
[    3.150109] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.07
[    3.150304] iTCO_wdt: Found a ICH7 or ICH7R TCO device (Version=2, TCOBASE=0x0860)
[    3.150413] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    3.210085] [drm] Initialized drm 1.1.0 20060810
[    3.215109] leds_ss4200: no LED devices found
[    3.216184] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    3.216195] ACPI: Power Button [VBTN]
[    3.216319] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    3.216327] ACPI: Power Button [PWRF]
[    3.296385] usb 2-2: New USB device found, idVendor=045e, idProduct=0095
[    3.296391] usb 2-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.296396] usb 2-2: Product: Microsoft IntelliMouse\xffffffc2\xffffffae\xffffffae Explorer
[    3.296399] usb 2-2: Manufacturer: Microsoft
[    3.296572] input: PC Speaker as /devices/platform/pcspkr/input/input2
[    3.368299] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
[    3.444960] snd_hda_intel 0000:01:00.1: irq 42 for MSI/MSI-X
[    3.448811] snd_hda_intel 0000:01:00.1: setting latency timer to 64
[    3.540720] [drm] radeon kernel modesetting enabled.
[    3.557756] input: Logitech HID compliant keyboard as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1:1.0/input/input3
[    3.557869] generic-usb 0003:046D:C30E.0001: input,hidraw0: USB HID v1.10 Keyboard [Logitech HID compliant keyboard] on usb-0000:00:1d.0-1/input0
[    3.565480] HDMI status: Codec=0 Pin=3 Presence_Detect=0 ELD_Valid=0
[    3.565670] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card0/input4
[    3.566881] [drm:radeon_pci_probe] *ERROR* radeon kernel modesetting for R600 or later requires firmware-linux-nonfree.
[    3.684575] input: Logitech HID compliant keyboard as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1:1.1/input/input5
[    3.685216] generic-usb 0003:046D:C30E.0002: input,hidraw1: USB HID v1.10 Device [Logitech HID compliant keyboard] on usb-0000:00:1d.0-1/input1
[    3.717016] input: Microsoft Microsoft IntelliMouse\xffffffc2\xffffffae\xffffffae Explorer as /devices/pci0000:00/0000:00:1d.0/usb2/2-2/2-2:1.0/input/input6
[    3.718622] generic-usb 0003:045E:0095.0003: input,hidraw2: USB HID v1.11 Mouse [Microsoft Microsoft IntelliMouse\xffffffc2\xffffffae\xffffffae Explorer] on usb-0000:00:1d.0-2/input0
[    3.718670] usbcore: registered new interface driver usbhid
[    3.718674] usbhid: USB HID core driver
[    4.137552] Adding 4188156k swap on /dev/sda5.  Priority:-1 extents:1 across:4188156k SS
[    4.162844] EXT4-fs (sda1): re-mounted. Opts: (null)
[    4.236214] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
[    4.341861] loop: module loaded
[    5.818906] RPC: Registered named UNIX socket transport module.
[    5.818912] RPC: Registered udp transport module.
[    5.818915] RPC: Registered tcp transport module.
[    5.818918] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    5.829433] FS-Cache: Loaded
[    5.845510] FS-Cache: Netfs 'nfs' registered for caching
[    5.854994] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[    7.196515] Bluetooth: Core ver 2.16
[    7.196916] NET: Registered protocol family 31
[    7.196921] Bluetooth: HCI device and connection manager initialized
[    7.196926] Bluetooth: HCI socket layer initialized
[    7.196930] Bluetooth: L2CAP socket layer initialized
[    7.196945] Bluetooth: SCO socket layer initialized
[    7.205178] Bluetooth: RFCOMM TTY layer initialized
[    7.205190] Bluetooth: RFCOMM socket layer initialized
[    7.205194] Bluetooth: RFCOMM ver 1.11
[    7.207310] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    7.207316] Bluetooth: BNEP filters: protocol multicast
[    7.945534] via-rhine 0000:03:02.0: eth0: link up, 100Mbps, full-duplex, lpa 0xC1E1
[    7.985945] ADDRCONF(NETDEV_UP): eth1: link is not ready
[    7.988162] e100 0000:03:08.0: eth1: NIC Link is Up 100 Mbps Full Duplex
[    7.988426] ADDRCONF(NETDEV_CHANGE): eth1: link becomes ready
[   18.320030] eth0: no IPv6 routers present
[   18.432044] eth1: no IPv6 routers present
[  572.170822] ip_tables: (C) 2000-2006 Netfilter Core Team

Please Log in or Create an account to join the conversation.

More
24 Oct 2019 18:03 - 24 Oct 2019 18:18 #148724 by CNCDoc
With the latest carousel and your proposed changes work!

Wondering why the jog function doesn't want to get started?



File Attachment:

File Name: carousel_2...4-2.comp
File Size:14 KB
Attachments:
Last edit: 24 Oct 2019 18:18 by CNCDoc.

Please Log in or Create an account to join the conversation.

Time to create page: 0.294 seconds
Powered by Kunena Forum