follow me

使ってみる。LINUX IMAGE FOR SD for Intel Galileo

Intel GalileoのmicroSDを使ってみます。
Intel GalileoはmicroSDからブートする事ができます。
現時点、Intelの配布しているイメージ以外は見当たりませんが、各種ディストリは出てくるのではないかと期待しています。
イメージの入手は、IntelのサイトからLINUX IMAGE FOR SD for Intel Galileoをダウンロードします。
7zip形式なので、解答できるツールを用意しておきましょう。

普通に、microSDに全てのファイルを書き込んでIntel Galileoで起動するだけです。
ブートローダーとか気にする必要はありません。


microSDから起動した場合は、作ったスケッチは保持されます。
microSD無しで使った場合は、再起動するとスケッチが消えてしまいますが、microSDから起動している場合には、microSD内に記録される様です。
また、SSHがデフォルトで起動した状態になるので、直接Ethernet経由でLinuxにアクセスできます。(ユーザはroot、パス無しで入れます。)
IPはDHCPで取得する設定になっています。

Kernelはこんな感じ。
root@clanton:~# uname -a
Linux clanton 3.8.7-yocto-standard #1 Tue Oct 1 00:09:01 IST 2013 i586 GNU/Linux
ファイルシステムは、ファイルがrootfsになっている形で、/media/realrootにmicroSD自体がマウントされた形になります。
root@clanton:~# df -h
Filesystem                Size      Used Available Use% Mounted on
rootfs                  295.1M    135.8M    144.3M  48% /
none                    113.3M      4.0K    113.3M   0% /dev
/dev/mmcblk0p1            7.4G    303.5M      7.1G   4% /media/realroot
/dev/loop0              295.1M    135.8M    144.3M  48% /
/dev/mmcblk0p1            7.4G    303.5M      7.1G   4% /media/mmcblk0p1
tmpfs                   114.2M    116.0K    114.1M   0% /var/volatile
tmpfs                   114.2M         0    114.2M   0% /media/ram
起動時のログは、こんな。
root@clanton:~# dmesg
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 3.8.7-yocto-standard (clntonsw@irsswdev001) (gcc version 4.7.2 (GCC) ) #1 Tue Oct 1 00:09:01 IST 2013
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000096fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000097000-0x0000000000097fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000098000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000000f0defff] usable
[    0.000000] BIOS-e820: [mem 0x000000000f0df000-0x000000000f11efff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000000f11f000-0x000000000f1defff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000f1df000-0x000000000fedefff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000000fedf000-0x000000000feeefff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000feef000-0x000000000feeffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff800000-0x00000000ffffffff] reserved
[    0.000000] Early serial console at MMIO32 0x8010f000 (options '115200n8')
[    0.000000] bootconsole [uart0] enabled
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.31 by EKI
[    0.000000] efi:  SMBIOS=0xfeee000  ACPI=0xf11e000  ACPI 2.0=0xf11e014 
[    0.000000] efi: mem00: type=7, attr=0xf, range=[0x0000000000000000-0x0000000000095000) (0MB)
[    0.000000] efi: mem01: type=2, attr=0xf, range=[0x0000000000095000-0x0000000000097000) (0MB)
[    0.000000] efi: mem02: type=0, attr=0xf, range=[0x0000000000097000-0x0000000000098000) (0MB)
[    0.000000] efi: mem03: type=7, attr=0xf, range=[0x0000000000098000-0x00000000000a0000) (0MB)
[    0.000000] efi: mem04: type=2, attr=0xf, range=[0x0000000000100000-0x0000000000301000) (2MB)
[    0.000000] efi: mem05: type=7, attr=0xf, range=[0x0000000000301000-0x0000000001ede000) (27MB)
[    0.000000] efi: mem06: type=4, attr=0xf, range=[0x0000000001ede000-0x0000000002000000) (1MB)
[    0.000000] efi: mem07: type=7, attr=0xf, range=[0x0000000002000000-0x000000000c0e0000) (160MB)
[    0.000000] efi: mem08: type=4, attr=0xf, range=[0x000000000c0e0000-0x000000000c100000) (0MB)
[    0.000000] efi: mem09: type=7, attr=0xf, range=[0x000000000c100000-0x000000000d9df000) (24MB)
[    0.000000] efi: mem10: type=2, attr=0xf, range=[0x000000000d9df000-0x000000000df40000) (5MB)
[    0.000000] efi: mem11: type=4, attr=0xf, range=[0x000000000df40000-0x000000000df84000) (0MB)
[    0.000000] efi: mem12: type=2, attr=0xf, range=[0x000000000df84000-0x000000000df87000) (0MB)
[    0.000000] efi: mem13: type=1, attr=0xf, range=[0x000000000df87000-0x000000000dfc8000) (0MB)
[    0.000000] efi: mem14: type=4, attr=0xf, range=[0x000000000dfc8000-0x000000000e458000) (4MB)
[    0.000000] efi: mem15: type=3, attr=0xf, range=[0x000000000e458000-0x000000000e45f000) (0MB)
[    0.000000] efi: mem16: type=4, attr=0xf, range=[0x000000000e45f000-0x000000000e4b9000) (0MB)
[    0.000000] efi: mem17: type=3, attr=0xf, range=[0x000000000e4b9000-0x000000000e4c6000) (0MB)
[    0.000000] efi: mem18: type=4, attr=0xf, range=[0x000000000e4c6000-0x000000000e4c8000) (0MB)
[    0.000000] efi: mem19: type=3, attr=0xf, range=[0x000000000e4c8000-0x000000000e4ca000) (0MB)
[    0.000000] efi: mem20: type=4, attr=0xf, range=[0x000000000e4ca000-0x000000000e4cd000) (0MB)
[    0.000000] efi: mem21: type=3, attr=0xf, range=[0x000000000e4cd000-0x000000000e4d2000) (0MB)
[    0.000000] efi: mem22: type=4, attr=0xf, range=[0x000000000e4d2000-0x000000000e4d3000) (0MB)
[    0.000000] efi: mem23: type=3, attr=0xf, range=[0x000000000e4d3000-0x000000000e4e7000) (0MB)
[    0.000000] efi: mem24: type=4, attr=0xf, range=[0x000000000e4e7000-0x000000000e4e8000) (0MB)
[    0.000000] efi: mem25: type=3, attr=0xf, range=[0x000000000e4e8000-0x000000000e4ee000) (0MB)
[    0.000000] efi: mem26: type=4, attr=0xf, range=[0x000000000e4ee000-0x000000000e4ef000) (0MB)
[    0.000000] efi: mem27: type=3, attr=0xf, range=[0x000000000e4ef000-0x000000000e520000) (0MB)
[    0.000000] efi: mem28: type=4, attr=0xf, range=[0x000000000e520000-0x000000000e534000) (0MB)
[    0.000000] efi: mem29: type=3, attr=0xf, range=[0x000000000e534000-0x000000000e539000) (0MB)
[    0.000000] efi: mem30: type=4, attr=0xf, range=[0x000000000e539000-0x000000000e53a000) (0MB)
[    0.000000] efi: mem31: type=3, attr=0xf, range=[0x000000000e53a000-0x000000000e54b000) (0MB)
[    0.000000] efi: mem32: type=4, attr=0xf, range=[0x000000000e54b000-0x000000000e55b000) (0MB)
[    0.000000] efi: mem33: type=3, attr=0xf, range=[0x000000000e55b000-0x000000000e567000) (0MB)
[    0.000000] efi: mem34: type=4, attr=0xf, range=[0x000000000e567000-0x000000000e57c000) (0MB)
[    0.000000] efi: mem35: type=3, attr=0xf, range=[0x000000000e57c000-0x000000000e57e000) (0MB)
[    0.000000] efi: mem36: type=4, attr=0xf, range=[0x000000000e57e000-0x000000000e5ad000) (0MB)
[    0.000000] efi: mem37: type=3, attr=0xf, range=[0x000000000e5ad000-0x000000000e5b6000) (0MB)
[    0.000000] efi: mem38: type=4, attr=0xf, range=[0x000000000e5b6000-0x000000000e5c2000) (0MB)
[    0.000000] efi: mem39: type=3, attr=0xf, range=[0x000000000e5c2000-0x000000000e5d0000) (0MB)
[    0.000000] efi: mem40: type=4, attr=0xf, range=[0x000000000e5d0000-0x000000000e5d3000) (0MB)
[    0.000000] efi: mem41: type=3, attr=0xf, range=[0x000000000e5d3000-0x000000000e5ec000) (0MB)
[    0.000000] efi: mem42: type=4, attr=0xf, range=[0x000000000e5ec000-0x000000000e710000) (1MB)
[    0.000000] efi: mem43: type=3, attr=0xf, range=[0x000000000e710000-0x000000000e726000) (0MB)
[    0.000000] efi: mem44: type=4, attr=0xf, range=[0x000000000e726000-0x000000000e728000) (0MB)
[    0.000000] efi: mem45: type=3, attr=0xf, range=[0x000000000e728000-0x000000000e72f000) (0MB)
[    0.000000] efi: mem46: type=4, attr=0xf, range=[0x000000000e72f000-0x000000000e734000) (0MB)
[    0.000000] efi: mem47: type=3, attr=0xf, range=[0x000000000e734000-0x000000000e735000) (0MB)
[    0.000000] efi: mem48: type=4, attr=0xf, range=[0x000000000e735000-0x000000000e736000) (0MB)
[    0.000000] efi: mem49: type=3, attr=0xf, range=[0x000000000e736000-0x000000000e752000) (0MB)
[    0.000000] efi: mem50: type=4, attr=0xf, range=[0x000000000e752000-0x000000000e753000) (0MB)
[    0.000000] efi: mem51: type=3, attr=0xf, range=[0x000000000e753000-0x000000000e759000) (0MB)
[    0.000000] efi: mem52: type=4, attr=0xf, range=[0x000000000e759000-0x000000000e774000) (0MB)
[    0.000000] efi: mem53: type=3, attr=0xf, range=[0x000000000e774000-0x000000000e776000) (0MB)
[    0.000000] efi: mem54: type=4, attr=0xf, range=[0x000000000e776000-0x000000000e777000) (0MB)
[    0.000000] efi: mem55: type=3, attr=0xf, range=[0x000000000e777000-0x000000000e77b000) (0MB)
[    0.000000] efi: mem56: type=4, attr=0xf, range=[0x000000000e77b000-0x000000000e77c000) (0MB)
[    0.000000] efi: mem57: type=3, attr=0xf, range=[0x000000000e77c000-0x000000000e785000) (0MB)
[    0.000000] efi: mem58: type=4, attr=0xf, range=[0x000000000e785000-0x000000000e789000) (0MB)
[    0.000000] efi: mem59: type=3, attr=0xf, range=[0x000000000e789000-0x000000000e78d000) (0MB)
[    0.000000] efi: mem60: type=4, attr=0xf, range=[0x000000000e78d000-0x000000000e79f000) (0MB)
[    0.000000] efi: mem61: type=3, attr=0xf, range=[0x000000000e79f000-0x000000000e7a1000) (0MB)
[    0.000000] efi: mem62: type=4, attr=0xf, range=[0x000000000e7a1000-0x000000000e7a9000) (0MB)
[    0.000000] efi: mem63: type=3, attr=0xf, range=[0x000000000e7a9000-0x000000000e7af000) (0MB)
[    0.000000] efi: mem64: type=4, attr=0xf, range=[0x000000000e7af000-0x000000000e7b7000) (0MB)
[    0.000000] efi: mem65: type=3, attr=0xf, range=[0x000000000e7b7000-0x000000000e7bb000) (0MB)
[    0.000000] efi: mem66: type=4, attr=0xf, range=[0x000000000e7bb000-0x000000000e7cc000) (0MB)
[    0.000000] efi: mem67: type=3, attr=0xf, range=[0x000000000e7cc000-0x000000000e7d1000) (0MB)
[    0.000000] efi: mem68: type=4, attr=0xf, range=[0x000000000e7d1000-0x000000000f0df000) (9MB)
[    0.000000] efi: mem69: type=9, attr=0xf, range=[0x000000000f0df000-0x000000000f11f000) (0MB)
[    0.000000] efi: mem70: type=5, attr=0x800000000000000f, range=[0x000000000f11f000-0x000000000f17f000) (0MB)
[    0.000000] efi: mem71: type=6, attr=0x800000000000000f, range=[0x000000000f17f000-0x000000000f1df000) (0MB)
[    0.000000] efi: mem72: type=10, attr=0xf, range=[0x000000000f1df000-0x000000000fedf000) (13MB)
[    0.000000] efi: mem73: type=0, attr=0xf, range=[0x000000000fedf000-0x000000000feef000) (0MB)
[    0.000000] efi: mem74: type=4, attr=0xf, range=[0x000000000feef000-0x000000000fef0000) (0MB)
[    0.000000] efi: mem75: type=11, attr=0x8000000000000000, range=[0x00000000e0000000-0x00000000f0000000) (256MB)
[    0.000000] efi: mem76: type=11, attr=0x8000000000000000, range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
[    0.000000] efi: mem77: type=11, attr=0x8000000000000001, range=[0x00000000ff800000-0x0000000100000000) (8MB)
[    0.000000] e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0xfef0 max_arch_pfn = 0x1000000
[    0.000000] Scan for SMP in [mem 0x00000000-0x000003ff]
[    0.000000] Scan for SMP in [mem 0x0009fc00-0x0009ffff]
[    0.000000] Scan for SMP in [mem 0x000f0000-0x000fffff]
[    0.000000] Scan for SMP in [mem 0x000aaaa0-0x000aae9f]
[    0.000000] initial memory mapped: [mem 0x00000000-0x01ffffff]
[    0.000000] Base memory trampoline at [c009b000] 9b000 size 16384
[    0.000000] init_memory_mapping: [mem 0x00000000-0x0feeffff]
[    0.000000]  [mem 0x00000000-0x001fffff] page 4k
[    0.000000]  [mem 0x00200000-0x0fdfffff] page 2M
[    0.000000]  [mem 0x0fe00000-0x0feeffff] page 4k
[    0.000000] kernel direct mapping tables up to 0xfeeffff @ [mem 0x01ed8000-0x01eddfff]
[    0.000000] RAMDISK: [mem 0x0d9df000-0x0db3efff]
[    0.000000] ACPI: RSDP 0f11e014 00024 (v02 INTEL )
[    0.000000] ACPI: XSDT 0f11d0e8 0006C (v01 INTEL  TIANO    00000003      01000013)
[    0.000000] ACPI: FACP 0f11b000 000F4 (v03 INTEL  TIANO    00000003 INTL 0100000D)
[    0.000000] ACPI: DSDT 0f113000 015A2 (v01 INTEL  ClantonN 00000003 INTL 20081031)
[    0.000000] ACPI: FACS 0f2c7000 00040
[    0.000000] ACPI: UEFI 0fcd5000 00042 (v01                 00000000      00000000)
[    0.000000] ACPI: APIC 0f11c000 0005A (v01 INTEL  TIANO    00000001 MSFT 00000000)
[    0.000000] ACPI: HPET 0f11a000 00038 (v01                 00000001      00000000)
[    0.000000] ACPI: MCFG 0f119000 0003C (v01                 00000001      00000000)
[    0.000000] ACPI: SSDT 0f118000 004D8 (v01 SsgPmm  Cpu0Cst 00000011 INTL 20081031)
[    0.000000] ACPI: SSDT 0f117000 0043F (v01 SsgPmm  Cpu0Ist 00000012 INTL 20081031)
[    0.000000] ACPI: SSDT 0f116000 0013B (v01 SsgPmm  Cpu0Tst 00000013 INTL 20081031)
[    0.000000] ACPI: SSDT 0f115000 00056 (v01 SsgPmm    CpuPm 00000010 INTL 20081031)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] mapped APIC to         ffffb000 (        fee00000)
[    0.000000] 0MB HIGHMEM available.
[    0.000000] 254MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 0fef0000
[    0.000000]   low ram: 0 - 0fef0000
[    0.000000] Zone ranges:
[    0.000000]   Normal   [mem 0x00010000-0x0feeffff]
[    0.000000]   HighMem  empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x00010000-0x00096fff]
[    0.000000]   node   0: [mem 0x00098000-0x0009ffff]
[    0.000000]   node   0: [mem 0x00100000-0x0f0defff]
[    0.000000]   node   0: [mem 0x0feef000-0x0feeffff]
[    0.000000] On node 0 totalpages: 61551
[    0.000000] free_area_init_node: node 0, pgdat c1484720, node_mem_map cdd40200
[    0.000000]   Normal zone: 510 pages used for memmap
[    0.000000]   Normal zone: 0 pages reserved
[    0.000000]   Normal zone: 61041 pages, LIFO batch:15
[    0.000000] Using APIC driver default
[    0.000000] ACPI: PM-Timer IO Port: 0x1008
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] mapped APIC to         ffffb000 (        fee00000)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: Assigned apic_id 1
[    0.000000] IOAPIC[0]: apic_id 1, 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] Int: type 0, pol 0, trig 0, bus 00, IRQ 00, APIC ID 1, APIC INT 02
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] Int: type 0, pol 1, trig 3, bus 00, IRQ 09, APIC ID 1, APIC INT 09
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 01, APIC ID 1, APIC INT 01
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 03, APIC ID 1, APIC INT 03
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 04, APIC ID 1, APIC INT 04
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 05, APIC ID 1, APIC INT 05
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 06, APIC ID 1, APIC INT 06
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 07, APIC ID 1, APIC INT 07
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 08, APIC ID 1, APIC INT 08
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0a, APIC ID 1, APIC INT 0a
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0b, APIC ID 1, APIC INT 0b
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0c, APIC ID 1, APIC INT 0c
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0d, APIC ID 1, APIC INT 0d
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0e, APIC ID 1, APIC INT 0e
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0f, APIC ID 1, APIC INT 0f
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] mapped IOAPIC to ffffa000 (fec00000)
[    0.000000] nr_irqs_gsi: 40
[    0.000000] e820: [mem 0x0fef0000-0xdfffffff] available for PCI devices
[    0.000000] pcpu-alloc: s0 r0 d32768 u32768 alloc=1*32768
[    0.000000] pcpu-alloc: [0] 0 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 61041
[    0.000000] Kernel command line: root=/dev/ram0 console=ttyS1,115200n8 earlycon=uart8250,mmio32,0x8010f000,115200n8 reboot=efi,warm apic=debug rw LABEL=boot debugshell=5 efi_main=0x0000000148eb3269 jmp_code32=0x0000000180ab28f9
[    0.000000] PID hash table entries: 1024 (order: 0, 4096 bytes)
[    0.000000] Dentry cache hash table entries: 32768 (order: 5, 131072 bytes)
[    0.000000] Inode-cache hash table entries: 16384 (order: 4, 65536 bytes)
[    0.000000] __ex_table already sorted, skipping sort
[    0.000000] Initializing CPU#0
[    0.000000] Initializing HighMem for node 0 (00000000:00000000)
[    0.000000] Memory: 213068k/261056k available (3098k kernel code, 33136k reserved, 1547k data, 272k init, 0k highmem)
[    0.000000] virtual kernel memory layout:
[    0.000000]     fixmap  : 0xfffa2000 - 0xfffff000   ( 372 kB)
[    0.000000]     pkmap   : 0xffc00000 - 0xffe00000   (2048 kB)
[    0.000000]     vmalloc : 0xd06f0000 - 0xffbfe000   ( 757 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xcfef0000   ( 254 MB)
[    0.000000]       .init : 0xc148a000 - 0xc14ce000   ( 272 kB)
[    0.000000]       .data : 0xc1306812 - 0xc1489480   (1547 kB)
[    0.000000]       .text : 0xc1000000 - 0xc1306812   (3098 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000000] SLUB: Genslabs=15, HWalign=32, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
[    0.000000] NR_IRQS:2304 nr_irqs:256 16
[    0.000000] CPU 0 irqstacks, hard=c0090000 soft=c0092000
[    0.000000] spurious 8259A interrupt: IRQ7.
[    0.000000] Console: colour dummy device 80x25
[    0.000000] Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar
[    0.000000] ... MAX_LOCKDEP_SUBCLASSES:  8
[    0.000000] ... MAX_LOCK_DEPTH:          48
[    0.000000] ... MAX_LOCKDEP_KEYS:        8191
[    0.000000] ... CLASSHASH_SIZE:          4096
[    0.000000] ... MAX_LOCKDEP_ENTRIES:     16384
[    0.000000] ... MAX_LOCKDEP_CHAINS:      32768
[    0.000000] ... CHAINHASH_SIZE:          16384
[    0.000000]  memory used by lock dependency info: 3567 kB
[    0.000000]  per task-struct memory footprint: 1152 bytes
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 399.088 MHz processor
[    0.010015] Calibrating delay loop (skipped), value calculated using timer frequency.. 798.17 BogoMIPS (lpj=3990880)
[    0.010136] pid_max: default: 32768 minimum: 301
[    0.408063] Security Framework initialized
[    0.408336] Mount-cache hash table entries: 512
[    0.417566] Initializing cgroup subsys cpuacct
[    0.417736] Initializing cgroup subsys freezer
[    0.418536] Intel Pentium with F0 0F bug - workaround enabled.
[    0.418795] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[    0.418795] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0
[    0.418795] tlb_flushall_shift: 6
[    0.418938] CPU: Intel 05/09 (fam: 05, model: 09, stepping: 00)
[    0.419173] ACPI: Core revision 20121018
[    0.510501] Performance Events: no PMU driver, software events only.
[    0.515423] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.515503] Getting VERSION: 30010
[    0.515558] Getting VERSION: 30010
[    0.515611] Getting ID: 0
[    0.515659] Getting ID: f000000
[    0.515711] Getting LVT0: 700
[    0.515761] Getting LVT1: 400
[    0.515829] enabled ExtINT on CPU#0
[    0.516223] ENABLING IO-APIC IRQs
[    0.516279] Synchronizing Arb IDs.
[    0.516329] init IO_APIC IRQs
[    0.516360]  apic 1 pin 0 not connected
[    0.516664] IOAPIC[0]: Set routing entry (1-1 -> 0x31 -> IRQ 1 Mode:0 Active:0 Dest:1)
[    0.516784] IOAPIC[0]: Set routing entry (1-2 -> 0x30 -> IRQ 0 Mode:0 Active:0 Dest:1)
[    0.516894] IOAPIC[0]: Set routing entry (1-3 -> 0x33 -> IRQ 3 Mode:0 Active:0 Dest:1)
[    0.517004] IOAPIC[0]: Set routing entry (1-4 -> 0x34 -> IRQ 4 Mode:0 Active:0 Dest:1)
[    0.517115] IOAPIC[0]: Set routing entry (1-5 -> 0x35 -> IRQ 5 Mode:0 Active:0 Dest:1)
[    0.517225] IOAPIC[0]: Set routing entry (1-6 -> 0x36 -> IRQ 6 Mode:0 Active:0 Dest:1)
[    0.517334] IOAPIC[0]: Set routing entry (1-7 -> 0x37 -> IRQ 7 Mode:0 Active:0 Dest:1)
[    0.517444] IOAPIC[0]: Set routing entry (1-8 -> 0x38 -> IRQ 8 Mode:0 Active:0 Dest:1)
[    0.517553] IOAPIC[0]: Set routing entry (1-9 -> 0x39 -> IRQ 9 Mode:1 Active:0 Dest:1)
[    0.517662] IOAPIC[0]: Set routing entry (1-10 -> 0x3a -> IRQ 10 Mode:0 Active:0 Dest:1)
[    0.517771] IOAPIC[0]: Set routing entry (1-11 -> 0x3b -> IRQ 11 Mode:0 Active:0 Dest:1)
[    0.517881] IOAPIC[0]: Set routing entry (1-12 -> 0x3c -> IRQ 12 Mode:0 Active:0 Dest:1)
[    0.517990] IOAPIC[0]: Set routing entry (1-13 -> 0x3d -> IRQ 13 Mode:0 Active:0 Dest:1)
[    0.518101] IOAPIC[0]: Set routing entry (1-14 -> 0x3e -> IRQ 14 Mode:0 Active:0 Dest:1)
[    0.518211] IOAPIC[0]: Set routing entry (1-15 -> 0x3f -> IRQ 15 Mode:0 Active:0 Dest:1)
[    0.518289]  apic 1 pin 16 not connected
[    0.518325]  apic 1 pin 17 not connected
[    0.518354]  apic 1 pin 18 not connected
[    0.518381]  apic 1 pin 19 not connected
[    0.518408]  apic 1 pin 20 not connected
[    0.518435]  apic 1 pin 21 not connected
[    0.518462]  apic 1 pin 22 not connected
[    0.518489]  apic 1 pin 23 not connected
[    0.518680] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.618814] Using local APIC timer interrupts.
[    0.618814] calibrating APIC timer ...
[    0.620000] ... lapic delta = 2494187
[    0.620000] ... PM-Timer delta = 357949
[    0.620000] ... PM-Timer result ok
[    0.620000] ..... delta 2494187
[    0.620000] ..... mult: 107124515
[    0.620000] ..... calibration result: 3990699
[    0.620000] ..... CPU clock speed is 399.0699 MHz.
[    0.620000] ..... host bus clock speed is 399.0699 MHz.
[    0.620000] devtmpfs: initialized
[    0.623256] PM: Registering ACPI NVS region [mem 0x0f1df000-0x0fedefff] (13631488 bytes)
[    0.629306] RTC time:  0:00:14, date: 01/01/01
[    0.632064] NET: Registered protocol family 16
[    0.658035] ACPI: bus type pci registered
[    0.660583] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.660704] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[    0.660783] PCI: Using MMCONFIG for extended config space
[    0.660854] PCI: Using configuration type 1 for base access
[    0.810142] bio: create slab  at 0
[    0.814744] ACPI: Added _OSI(Module Device)
[    0.814838] ACPI: Added _OSI(Processor Device)
[    0.814921] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.815008] ACPI: Added _OSI(Processor Aggregator Device)
[    0.834713] ACPI: EC: Look up EC in DSDT
[    0.897970] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.906155] ACPI: Interpreter enabled
[    0.906221] ACPI: (supports S0 S3 S5)
[    0.907047] ACPI: Using IOAPIC for interrupt routing
[    1.071184] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    1.076812] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    1.076976] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    1.097107] PCI host bridge to bus 0000:00
[    1.097226] pci_bus 0000:00: root bus resource [bus 00-ff]
[    1.097324] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
[    1.097420] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
[    1.097517] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    1.097619] pci_bus 0000:00: root bus resource [mem 0x10000000-0xfebfffff]
[    1.097882] pci_bus 0000:00: scanning bus
[    1.098595] pci 0000:00:00.0: [8086:0958] type 00 class 0x060000
[    1.098723] pci 0000:00:00.0: calling quirk_mmio_always_on+0x0/0x10
[    1.100688] pci 0000:00:14.0: [8086:08a7] type 00 class 0x080501
[    1.100883] pci 0000:00:14.0: reg 10: [mem 0x90010000-0x90010fff]
[    1.101537] pci 0000:00:14.0: PME# supported from D0 D3hot
[    1.102091] pci 0000:00:14.0: PME# disabled
[    1.102364] pci 0000:00:14.1: [8086:0936] type 00 class 0x070002
[    1.102551] pci 0000:00:14.1: reg 10: [mem 0x9000f000-0x9000ffff]
[    1.102672] pci 0000:00:14.1: reg 14: [mem 0x9000e000-0x9000efff]
[    1.103274] pci 0000:00:14.1: PME# supported from D0 D3hot
[    1.103364] pci 0000:00:14.1: PME# disabled
[    1.103622] pci 0000:00:14.2: [8086:0939] type 00 class 0x0c03fe
[    1.103808] pci 0000:00:14.2: reg 10: [mem 0x90004000-0x90005fff]
[    1.104460] pci 0000:00:14.2: PME# supported from D0 D3hot
[    1.104549] pci 0000:00:14.2: PME# disabled
[    1.104822] pci 0000:00:14.3: [8086:0939] type 00 class 0x0c0320
[    1.105023] pci 0000:00:14.3: reg 10: [mem 0x9000d000-0x9000dfff]
[    1.105716] pci 0000:00:14.3: PME# supported from D0 D1 D2 D3hot D3cold
[    1.105807] pci 0000:00:14.3: PME# disabled
[    1.106079] pci 0000:00:14.4: [8086:093a] type 00 class 0x0c0310
[    1.106265] pci 0000:00:14.4: reg 10: [mem 0x9000c000-0x9000cfff]
[    1.106917] pci 0000:00:14.4: PME# supported from D0 D3hot
[    1.107005] pci 0000:00:14.4: PME# disabled
[    1.107267] pci 0000:00:14.5: [8086:0936] type 00 class 0x070002
[    1.107454] pci 0000:00:14.5: reg 10: [mem 0x9000b000-0x9000bfff]
[    1.107575] pci 0000:00:14.5: reg 14: [mem 0x9000a000-0x9000afff]
[    1.108177] pci 0000:00:14.5: PME# supported from D0 D3hot
[    1.108268] pci 0000:00:14.5: PME# disabled
[    1.108528] pci 0000:00:14.6: [8086:0937] type 00 class 0x020000
[    1.108714] pci 0000:00:14.6: reg 10: [mem 0x90002000-0x90003fff]
[    1.109366] pci 0000:00:14.6: PME# supported from D0 D3hot
[    1.109455] pci 0000:00:14.6: PME# disabled
[    1.109754] pci 0000:00:14.7: [8086:0937] type 00 class 0x020000
[    1.109943] pci 0000:00:14.7: reg 10: [mem 0x90000000-0x90001fff]
[    1.110674] pci 0000:00:14.7: PME# supported from D0 D3hot
[    1.110766] pci 0000:00:14.7: PME# disabled
[    1.111029] pci 0000:00:15.0: [8086:0935] type 00 class 0x0c8000
[    1.111215] pci 0000:00:15.0: reg 10: [mem 0x90009000-0x90009fff]
[    1.111867] pci 0000:00:15.0: PME# supported from D0 D3hot
[    1.111956] pci 0000:00:15.0: PME# disabled
[    1.112218] pci 0000:00:15.1: [8086:0935] type 00 class 0x0c8000
[    1.112406] pci 0000:00:15.1: reg 10: [mem 0x90008000-0x90008fff]
[    1.113058] pci 0000:00:15.1: PME# supported from D0 D3hot
[    1.113149] pci 0000:00:15.1: PME# disabled
[    1.113409] pci 0000:00:15.2: [8086:0934] type 00 class 0x0c8000
[    1.113594] pci 0000:00:15.2: reg 10: [mem 0x90007000-0x90007fff]
[    1.113714] pci 0000:00:15.2: reg 14: [mem 0x90006000-0x90006fff]
[    1.114316] pci 0000:00:15.2: PME# supported from D0 D3hot
[    1.114404] pci 0000:00:15.2: PME# disabled
[    1.114726] pci 0000:00:17.0: [8086:11c3] type 01 class 0x060400
[    1.115126] pci 0000:00:17.0: calling pci_fixup_transparent_bridge+0x0/0x30
[    1.115511] pci 0000:00:17.0: PME# supported from D0 D3hot D3cold
[    1.115598] pci 0000:00:17.0: PME# disabled
[    1.115881] pci 0000:00:17.1: [8086:11c4] type 01 class 0x060400
[    1.116277] pci 0000:00:17.1: calling pci_fixup_transparent_bridge+0x0/0x30
[    1.116662] pci 0000:00:17.1: PME# supported from D0 D3hot D3cold
[    1.116749] pci 0000:00:17.1: PME# disabled
[    1.117149] pci 0000:00:1f.0: [8086:095e] type 00 class 0x060100
[    1.117713] pci_bus 0000:00: fixups for bus
[    1.117796] pci 0000:00:17.0: scanning [bus 01-01] behind bridge, pass 0
[    1.118178] pci_bus 0000:01: scanning bus
[    1.118253] pci_bus 0000:01: fixups for bus
[    1.118307] pci 0000:00:17.0: PCI bridge to [bus 01]
[    1.118459] pci_bus 0000:01: bus scan returning with max=01
[    1.118541] pci 0000:00:17.1: scanning [bus 02-02] behind bridge, pass 0
[    1.118957] pci_bus 0000:02: scanning bus
[    1.119033] pci_bus 0000:02: fixups for bus
[    1.119087] pci 0000:00:17.1: PCI bridge to [bus 02]
[    1.119238] pci_bus 0000:02: bus scan returning with max=02
[    1.119323] pci 0000:00:17.0: scanning [bus 01-01] behind bridge, pass 1
[    1.119413] pci 0000:00:17.1: scanning [bus 02-02] behind bridge, pass 1
[    1.119491] pci_bus 0000:00: bus scan returning with max=02
[    1.119540] pci_bus 0000:00: on NUMA node 0
[    1.120387] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX0._PRT]
[    1.122933] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX1._PRT]
[    1.129079]  pci0000:00: ACPI _OSC support notification failed, disabling PCIe ASPM
[    1.129185]  pci0000:00: Unable to request _OSC control (_OSC support mask: 0x08)
[    1.195906] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
[    1.199860] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
[    1.204384] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
[    1.208327] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
[    1.212388] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
[    1.216342] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
[    1.220457] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
[    1.224407] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
[    1.235874] vgaarb: loaded
[    1.241426] SCSI subsystem initialized
[    1.253632] PCI: Using ACPI for IRQ routing
[    1.282517] PCI: pci_cache_line_size set to 32 bytes
[    1.282672] pci 0000:00:14.0: BAR 0: reserving [mem 0x90010000-0x90010fff flags 0x40200] (d=0, p=0)
[    1.282784] pci 0000:00:14.1: BAR 0: reserving [mem 0x9000f000-0x9000ffff flags 0x40200] (d=0, p=0)
[    1.282862] pci 0000:00:14.1: BAR 1: reserving [mem 0x9000e000-0x9000efff flags 0x40200] (d=0, p=0)
[    1.282962] pci 0000:00:14.2: BAR 0: reserving [mem 0x90004000-0x90005fff flags 0x40200] (d=0, p=0)
[    1.283067] pci 0000:00:14.3: BAR 0: reserving [mem 0x9000d000-0x9000dfff flags 0x40200] (d=0, p=0)
[    1.283172] pci 0000:00:14.4: BAR 0: reserving [mem 0x9000c000-0x9000cfff flags 0x40200] (d=0, p=0)
[    1.283278] pci 0000:00:14.5: BAR 0: reserving [mem 0x9000b000-0x9000bfff flags 0x40200] (d=0, p=0)
[    1.283355] pci 0000:00:14.5: BAR 1: reserving [mem 0x9000a000-0x9000afff flags 0x40200] (d=0, p=0)
[    1.283516] pci 0000:00:15.2: BAR 0: reserving [mem 0x90007000-0x90007fff flags 0x40200] (d=0, p=0)
[    1.283594] pci 0000:00:15.2: BAR 1: reserving [mem 0x90006000-0x90006fff flags 0x40200] (d=0, p=0)
[    1.283846] pci 0000:00:14.6: BAR 0: reserving [mem 0x90002000-0x90003fff flags 0x40200] (d=1, p=1)
[    1.283952] pci 0000:00:14.7: BAR 0: reserving [mem 0x90000000-0x90001fff flags 0x40200] (d=1, p=1)
[    1.284056] pci 0000:00:15.0: BAR 0: reserving [mem 0x90009000-0x90009fff flags 0x40200] (d=1, p=1)
[    1.284161] pci 0000:00:15.1: BAR 0: reserving [mem 0x90008000-0x90008fff flags 0x40200] (d=1, p=1)
[    1.284323] e820: reserve RAM buffer [mem 0x00097000-0x0009ffff]
[    1.284383] e820: reserve RAM buffer [mem 0x0f0df000-0x0fffffff]
[    1.284439] e820: reserve RAM buffer [mem 0x0fef0000-0x0fffffff]
[    1.294356] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
[    1.294471] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    1.294581] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
[    1.298533] Switching to clocksource hpet
[    1.298533] pnp: PnP ACPI init
[    1.298533] ACPI: bus type pnp registered
[    1.302031] system 00:00: [mem 0xe0000000-0xefffffff] has been reserved
[    1.302166] system 00:00: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    1.302288] system 00:00: [mem 0x000c0000-0x000dffff] has been reserved
[    1.302418] system 00:00: [mem 0x000e0000-0x000fffff] could not be reserved
[    1.302544] system 00:00: [mem 0xff800000-0xffffffff] has been reserved
[    1.303103] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.315498] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    1.318222] pnp 00:02: Plug and Play ACPI device, IDs PNP0800 (active)
[    1.332230] system 00:03: [io  0x1000-0x100f] has been reserved
[    1.332357] system 00:03: [io  0x1010-0x101f] has been reserved
[    1.332477] system 00:03: [io  0x1100-0x113f] has been reserved
[    1.332599] system 00:03: [io  0x1080-0x10bf] has been reserved
[    1.332720] system 00:03: [io  0x1040-0x107f] has been reserved
[    1.332842] system 00:03: [io  0x1020-0x103f] has been reserved
[    1.332965] system 00:03: [io  0x1140-0x117f] has been reserved
[    1.333130] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.336658] IOAPIC[0]: Set routing entry (1-8 -> 0x38 -> IRQ 8 Mode:0 Active:0 Dest:1)
[    1.339069] pnp 00:04: Plug and Play ACPI device, IDs PNP0103 (active)
[    1.343263] pnp 00:05: Plug and Play ACPI device, IDs PNP0003 (active)
[    1.343522] pnp: PnP ACPI: found 6 devices
[    1.343600] ACPI: ACPI bus type pnp unregistered
[    1.560244] pci 0000:00:17.0: bridge window [io  0x1000-0x0fff] to [bus 01] add_size 1000
[    1.560331] pci 0000:00:17.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000
[    1.560404] pci 0000:00:17.0: bridge window [mem 0x00100000-0x000fffff] to [bus 01] add_size 200000
[    1.560533] pci 0000:00:17.1: bridge window [io  0x1000-0x0fff] to [bus 02] add_size 1000
[    1.560610] pci 0000:00:17.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000
[    1.560681] pci 0000:00:17.1: bridge window [mem 0x00100000-0x000fffff] to [bus 02] add_size 200000
[    1.560813] pci 0000:00:17.0: res[8]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
[    1.560876] pci 0000:00:17.0: res[9]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[    1.560933] pci 0000:00:17.1: res[8]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
[    1.560992] pci 0000:00:17.1: res[9]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[    1.561049] pci 0000:00:17.0: res[7]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
[    1.561105] pci 0000:00:17.1: res[7]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
[    1.561199] pci 0000:00:17.0: BAR 8: assigned [mem 0x10000000-0x101fffff]
[    1.561338] pci 0000:00:17.0: BAR 9: assigned [mem 0x10200000-0x103fffff 64bit pref]
[    1.561479] pci 0000:00:17.1: BAR 8: assigned [mem 0x10400000-0x105fffff]
[    1.561617] pci 0000:00:17.1: BAR 9: assigned [mem 0x10600000-0x107fffff 64bit pref]
[    1.561764] pci 0000:00:17.0: BAR 7: assigned [io  0x2000-0x2fff]
[    1.561900] pci 0000:00:17.1: BAR 7: assigned [io  0x3000-0x3fff]
[    1.562034] pci 0000:00:17.0: PCI bridge to [bus 01]
[    1.562145] pci 0000:00:17.0:   bridge window [io  0x2000-0x2fff]
[    1.562273] pci 0000:00:17.0:   bridge window [mem 0x10000000-0x101fffff]
[    1.562402] pci 0000:00:17.0:   bridge window [mem 0x10200000-0x103fffff 64bit pref]
[    1.562545] pci 0000:00:17.1: PCI bridge to [bus 02]
[    1.562652] pci 0000:00:17.1:   bridge window [io  0x3000-0x3fff]
[    1.562780] pci 0000:00:17.1:   bridge window [mem 0x10400000-0x105fffff]
[    1.562907] pci 0000:00:17.1:   bridge window [mem 0x10600000-0x107fffff 64bit pref]
[    1.563182] IOAPIC[0]: Set routing entry (1-20 -> 0x41 -> IRQ 20 Mode:1 Active:1 Dest:1)
[    1.563410] IOAPIC[0]: Set routing entry (1-21 -> 0x51 -> IRQ 21 Mode:1 Active:1 Dest:1)
[    1.563537] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    1.563594] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    1.563646] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    1.563699] pci_bus 0000:00: resource 7 [mem 0x10000000-0xfebfffff]
[    1.563755] pci_bus 0000:01: resource 0 [io  0x2000-0x2fff]
[    1.563809] pci_bus 0000:01: resource 1 [mem 0x10000000-0x101fffff]
[    1.563865] pci_bus 0000:01: resource 2 [mem 0x10200000-0x103fffff 64bit pref]
[    1.563918] pci_bus 0000:02: resource 0 [io  0x3000-0x3fff]
[    1.563971] pci_bus 0000:02: resource 1 [mem 0x10400000-0x105fffff]
[    1.564026] pci_bus 0000:02: resource 2 [mem 0x10600000-0x107fffff 64bit pref]
[    1.564996] NET: Registered protocol family 2
[    1.569626] TCP established hash table entries: 2048 (order: 2, 16384 bytes)
[    1.570355] TCP bind hash table entries: 2048 (order: 4, 73728 bytes)
[    1.572641] TCP: Hash tables configured (established 2048 bind 2048)
[    1.573293] TCP: reno registered
[    1.573415] UDP hash table entries: 256 (order: 2, 20480 bytes)
[    1.574098] UDP-Lite hash table entries: 256 (order: 2, 20480 bytes)
[    1.576428] NET: Registered protocol family 1
[    1.576823] pci 0000:00:14.2: calling quirk_usb_early_handoff+0x0/0x670
[    1.576955] pci 0000:00:14.3: calling quirk_usb_early_handoff+0x0/0x670
[    1.577148] IOAPIC[0]: Set routing entry (1-19 -> 0x61 -> IRQ 19 Mode:1 Active:1 Dest:1)
[    1.577585] pci 0000:00:14.4: calling quirk_usb_early_handoff+0x0/0x670
[    1.577804] IOAPIC[0]: Set routing entry (1-16 -> 0x71 -> IRQ 16 Mode:1 Active:1 Dest:1)
[    1.578141] pci 0000:00:14.6: calling quirk_e100_interrupt+0x0/0x1b0
[    1.578281] pci 0000:00:14.7: calling quirk_e100_interrupt+0x0/0x1b0
[    1.578536] PCI: CLS 0 bytes, default 32
[    1.581165] Trying to unpack rootfs image as initramfs...
[    2.230697] Freeing initrd memory: 1408k freed
[    2.249021] microcode: Intel CPU family 0x5 not supported
[    2.255493] resource map sanity check conflict: 0xfff00000 0x1002fffff 0xff800000 0xffffffff reserved
[    2.255605] ------------[ cut here ]------------
[    2.255721] WARNING: at /build/clntonsw/slave_magnum/meta-clanton/build/compile/yocto_build/tmp/work/clanton-poky-linux-uclibc/linux-yocto-clanton/3.8-r0/linux/arch/x86/mm/ioremap.c:171 __ioremap_caller+0x27a/0x440()
[    2.255883] Info: mapping multiple BARs. Your kernel is fine.
[    2.255945] Modules linked in:
[    2.256034] Pid: 1, comm: swapper Not tainted 3.8.7-yocto-standard #1
[    2.256105] Call Trace:
[    2.256205]  [] warn_slowpath_common+0x5f/0x80
[    2.256321]  [] ? __ioremap_caller+0x27a/0x440
[    2.256431]  [] ? __ioremap_caller+0x27a/0x440
[    2.256545]  [] warn_slowpath_fmt+0x2e/0x30
[    2.256655]  [] __ioremap_caller+0x27a/0x440
[    2.256771]  [] ? intel_cln_board_data_init+0x1a/0x19d
[    2.256880]  [] ? efi_capsule_update_init+0x8d/0x8d
[    2.256991]  [] ioremap_nocache+0x1a/0x20
[    2.257099]  [] ? intel_cln_board_data_init+0x1a/0x19d
[    2.257209]  [] intel_cln_board_data_init+0x1a/0x19d
[    2.257309]  [] ? sysfs_add_file+0x13/0x20
[    2.257399]  [] ? sysfs_create_file+0x1c/0x20
[    2.257500]  [] ? efi_capsule_update_init+0x8d/0x8d
[    2.257599]  [] do_one_initcall+0x10a/0x150
[    2.257694]  [] kernel_init_freeable+0x106/0x1a0
[    2.257788]  [] ? do_early_param+0x7a/0x7a
[    2.257895]  [] kernel_init+0xb/0xd0
[    2.257993]  [] ret_from_kernel_thread+0x1b/0x30
[    2.258099]  [] ? rest_init+0xb0/0xb0
[    2.258251] ---[ end trace 55efd1a0c87a4a91 ]---
[    2.258346] MFH: mfh @ 0xe1008000: id 0x5f4d4648 ver 0x00000001 entries 0x0000000a
[    2.261099] MFH: Warning platform data MFH missing - using hardcoded offsets
[    2.266462] resource map sanity check conflict: 0xfff10000 0x100000075 0xff800000 0xffffffff reserved
[    2.266727] CLN-PLT: Clanton Platform ID = 6
[    2.290160] Intel Clanton side-band driver registered
[    2.294998] IMR setup complete
[    2.297307] eSRAM CTRL 0x047f3f91 block 0x00000000
[    2.297381] eSRAM pages 128
[    2.318758] intel_cln_esram_test_probe/Oct  1 2013/00:07:49 complete OK !!
[    2.337769] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    2.480726] msgmni has been set to 456
[    2.493642] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    2.494029] io scheduler noop registered
[    2.494113] io scheduler deadline registered
[    2.494329] io scheduler cfq registered (default)
[    2.529009] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0
[    2.529896] ACPI: Sleep Button [SLPB]
[    2.532717] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[    2.532898] ACPI: Power Button [PWRB]
[    2.701207] Serial: 8250/16550 driver, 2 ports, IRQ sharing enabled
[    2.714541] IOAPIC[0]: Set routing entry (1-17 -> 0x81 -> IRQ 17 Mode:1 Active:1 Dest:1)
[    2.715006] Setup PCI port: port 0, irq 17, type 2
[    2.762888] 0000:00:14.1: ttyS0 at MMIO 0x9000f000 (irq = 17) is a 16550A
[    2.767230] Setup PCI port: port 0, irq 17, type 2
[    2.791174] 0000:00:14.5: ttyS1 at MMIO 0x9000b000 (irq = 17) is a 16550A
[    2.792404] console [ttyS1] enabled, bootconsole disabled
[    2.805324] Real Time Clock Driver v1.12b
[    2.822682] brd: module loaded
[    2.841670] loop: module loaded
[    2.847334] lpc_sch_probe BIOS_CNTL 0x00000101
[    2.851984] lpc_sch_probe new BIOS_CNTL 0x00000101
[    2.856841] lpc_sch_probe RCBA @ 0xfed1c000
[    2.884655] cpuidle: using governor ladder
[    2.888825] cpuidle: using governor menu
[    2.894476] sdhci: Secure Digital Host Controller Interface driver
[    2.900835] sdhci: Copyright(c) Pierre Ossman
[    2.905824] sdhci-pci 0000:00:14.0: SDHCI controller found [8086:08a7] (rev 10)
[    2.915668] sdhci-pci 0000:00:14.0: setting latency timer to 64
[    2.916992] sdhci-pci 0000:00:14.0: setting latency timer to 64
[    2.960254] mmc0: SDHCI controller on PCI [0000:00:14.0] using ADMA
[    2.973785] sdhci-pltfm: SDHCI platform and OF driver helper
[    2.996167] THRM: critical reset 104 c hot 95 c hardware failover 105 c
[    3.024813] TCP: cubic registered
[    3.028200] NET: Registered protocol family 17
[    3.034506] 
[    3.034506] printing PIC contents
[    3.034565] ... PIC  IMR: ffff
[    3.034595] ... PIC  IRR: 0000
[    3.034623] ... PIC  ISR: 0000
[    3.034650] ... PIC ELCR: 0000
[    3.034683] printing local APIC contents on CPU#0/0:
[    3.034714] ... APIC ID:      00000000 (0)
[    3.038849] ... APIC VERSION: 00030010
[    3.042635] ... APIC TASKPRI: 00000000 (00)
[    3.042666] ... APIC ARBPRI: 00000000 (00)
[    3.042695] ... APIC PROCPRI: 00000000
[    3.042723] ... APIC RRR: 00000000
[    3.042738] ... APIC LDR: 01000000
[    3.042738] ... APIC DFR: ffffffff
[    3.042738] ... APIC SPIV: 000001ff
[    3.042738] ... APIC ISR field:
[    3.042738] 0000000000000000000000000000000000000000000000000000000000000000
[    3.042738] ... APIC TMR field:
[    3.042738] 0000000000000000000000000002000000000000000000000000000000000000
[    3.042738] ... APIC IRR field:
[    3.042738] 0000000000000000000000000000000000000000000000000000000000008000
[    3.042738] ... APIC ESR: 00000000
[    3.042738] ... APIC ICR: 00088500
[    3.042738] ... APIC ICR2: 00000000
[    3.042738] ... APIC LVTT: 000000ef
[    3.042738] ... APIC LVT0: 00010700
[    3.042738] ... APIC LVT1: 00000400
[    3.042738] ... APIC LVTERR: 000000fe
[    3.042738] ... APIC TMICT: 0002c002
[    3.042738] ... APIC TMCCT: 00000000
[    3.042738] ... APIC TDCR: 00000003
[    3.042738] 
[    3.066587] number of MP IRQ sources: 15.
[    3.066630] number of IO-APIC #1 registers: 24.
[    3.066657] testing the IO APIC.......................
[    3.071948] IO APIC #1......
[    3.071988] .... register #00: 01000000
[    3.072017] .......    : physical APIC id: 01
[    3.072042] .......    : Delivery Type: 0
[    3.072068] .......    : LTS          : 0
[    3.072094] .... register #01: 00170020
[    3.072121] .......     : max redirection entries: 17
[    3.072147] .......     : PRQ implemented: 0
[    3.072172] .......     : IO APIC version: 20
[    3.072196] .... IRQ redirection table:
[    3.072221]  NR Dst Mask Trig IRR Pol Stat Dmod Deli Vect:
[    3.072256]  00 00  1    0    0   0   0    0    0    00
[    3.072312]  01 01  0    0    0   0   0    1    1    31
[    3.072366]  02 01  0    0    0   0   0    1    1    30
[    3.072419]  03 01  0    0    0   0   0    1    1    33
[    3.072473]  04 01  0    0    0   0   0    1    1    34
[    3.072526]  05 01  0    0    0   0   0    1    1    35
[    3.072579]  06 01  0    0    0   0   0    1    1    36
[    3.072632]  07 01  0    0    0   0   0    1    1    37
[    3.072686]  08 01  0    0    0   0   0    1    1    38
[    3.072739]  09 01  0    1    0   0   0    1    1    39
[    3.072792]  0a 01  0    0    0   0   0    1    1    3A
[    3.072846]  0b 01  0    0    0   0   0    1    1    3B
[    3.072899]  0c 01  0    0    0   0   0    1    1    3C
[    3.072952]  0d 01  0    0    0   0   0    1    1    3D
[    3.073006]  0e 01  0    0    0   0   0    1    1    3E
[    3.073059]  0f 01  0    0    0   0   0    1    1    3F
[    3.073113]  10 01  0    1    0   1   0    1    1    71
[    3.073167]  11 01  1    1    0   1   0    1    1    81
[    3.073221]  12 00  1    0    0   0   0    0    0    00
[    3.073274]  13 01  1    1    0   1   0    1    1    61
[    3.073327]  14 01  1    1    0   1   0    1    1    41
[    3.073381]  15 01  1    1    0   1   0    1    1    51
[    3.073435]  16 00  1    0    0   0   0    0    0    00
[    3.073488]  17 00  1    0    0   0   0    0    0    00
[    3.073533] IRQ to pin mappings:
[    3.073563] IRQ0 -> 0:2
[    3.073604] IRQ1 -> 0:1
[    3.073646] IRQ3 -> 0:3
[    3.073686] IRQ4 -> 0:4
[    3.073724] IRQ5 -> 0:5
[    3.073764] IRQ6 -> 0:6
[    3.073801] IRQ7 -> 0:7
[    3.073841] IRQ8 -> 0:8
[    3.073878] IRQ9 -> 0:9
[    3.073919] IRQ10 -> 0:10
[    3.073956] IRQ11 -> 0:11
[    3.073997] IRQ12 -> 0:12
[    3.074035] IRQ13 -> 0:13
[    3.074076] IRQ14 -> 0:14
[    3.074114] IRQ15 -> 0:15
[    3.074155] IRQ16 -> 0:16
[    3.074196] IRQ17 -> 0:17
[    3.074236] IRQ19 -> 0:19
[    3.074274] IRQ20 -> 0:20
[    3.074313] IRQ21 -> 0:21
[    3.074353] .................................... done.
[    3.079533] Using IPI Shortcut mode
[    3.096707]   Magic number: 1:0:0
[    3.112756] Freeing unused kernel memory: 272k freed
[    3.120785] Write protecting the kernel text: 3100k
[    3.126849] Write protecting the kernel read-only data: 1284k
[    3.132784] NX-protecting the kernel data: 3044k
[    3.155663] mmc0: new high speed SDHC card at address 0007
[    3.179992] mmcblk0: mmc0:0007 SD08G 7.42 GiB 
[    3.215549]  mmcblk0: p1
[    3.240834] tsc: Refined TSC clocksource calibration: 399.076 MHz
[    3.247171] Switching to clocksource tsc
>[    3.362984] udevd[542]: starting version 182
[   12.998763] kjournald starting.  Commit interval 5 seconds
[   13.008112] EXT3-fs (loop0): using internal journal
[   13.039742] EXT3-fs (loop0): recovery complete
[   13.044488] EXT3-fs (loop0): mounted filesystem with writeback data mode
[   14.517985] IOAPIC[0]: Set routing entry (1-18 -> 0x91 -> IRQ 18 Mode:1 Active:1 Dest:1)
[   14.520265] pch_udc 0000:00:14.2: setting latency timer to 64
[   14.520667] pch_udc 0000:00:14.2: irq 40 for MSI/MSI-X
[   14.521283] pch_udc 0000:00:14.2: enabling Mem-Wr-Inval
[   14.622799] g_serial: Vendor 0x8086 Product 0xbabe
[   14.627747] g_serial gadget: Gadget Serial v2.4
[   14.632885] g_serial gadget: g_serial ready
[   14.723089] stmmaceth 0000:00:14.6: enabling device (0000 -> 0002)
[   14.729498] stmmaceth 0000:00:14.6: enabling bus mastering
[   14.729580] stmmaceth 0000:00:14.6: setting latency timer to 64
[   14.729973] stmmaceth 0000:00:14.6: irq 41 for MSI/MSI-X
[   14.730772] stmmac MSI mode enabled
[   14.734137] Vendor 0x8086 Device 0x0937
[   14.738375] stmmac - user ID: 0x10, Synopsys ID: 0x37
[   14.743630]  DMA HW capability register supported
[   14.748210]  Enhanced/Alternate descriptors
[   14.752750]  RX Checksum Offload Engine supported (type 2)
[   14.758286]  TX Checksum insertion supported
[   14.762712]  Enable RX Mitigation via HW Watchdog Timer
[   14.824263] libphy: stmmac: probed
[   14.827731] eth0: PHY ID 20005c90 at 1 IRQ 0 (stmmac-1:01) active
[   14.936942] ACPI: bus type usb registered
[   14.944587] usbcore: registered new interface driver usbfs
[   14.952464] usbcore: registered new interface driver hub
[   14.960717] usbcore: registered new device driver usb
[   14.987150] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[   15.065246] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[   15.072474] ohci_hcd 0000:00:14.4: enabling bus mastering
[   15.072561] ohci_hcd 0000:00:14.4: setting latency timer to 64
[   15.072627] ohci_hcd 0000:00:14.4: OHCI Host Controller
[   15.079088] ohci_hcd 0000:00:14.4: new USB bus registered, assigned bus number 1
[   15.086964] ohci_hcd 0000:00:14.4: irq 16, io mem 0x9000c000
[   15.172020] hub 1-0:1.0: USB hub found
[   15.176439] hub 1-0:1.0: 2 ports detected
[   15.255340] ehci-pci: EHCI PCI platform driver
[   15.260863] ehci-pci 0000:00:14.3: enabling bus mastering
[   15.260951] ehci-pci 0000:00:14.3: setting latency timer to 64
[   15.261016] ehci-pci 0000:00:14.3: EHCI Host Controller
[   15.266449] ehci-pci 0000:00:14.3: new USB bus registered, assigned bus number 2
[   15.275110] ehci-pci 0000:00:14.3: enabling Mem-Wr-Inval
[   15.275289] ehci-pci 0000:00:14.3: INSNREG01 is 0x007f007f
[   15.282228] ehci-pci 0000:00:14.3: INSNREG01 is 0x007f007f
[   15.289656] ehci-pci 0000:00:14.3: irq 19, io mem 0x9000d000
[   15.310251] ehci-pci 0000:00:14.3: USB 2.0 started, EHCI 1.00
[   15.322656] hub 2-0:1.0: USB hub found
[   15.326675] hub 2-0:1.0: 2 ports detected
[   15.422076] Initializing USB Mass Storage driver...
[   15.429195] usbcore: registered new interface driver usb-storage
[   15.435443] USB Mass Storage support registered.
[   15.636654] intel_cln_gpio_probe UIO addr 0x90006000 internal_addr 0x00000000 size 3765649408 memtype 4096
[   15.658071] intel_cln_gip 0000:00:15.2: setting latency timer to 64
[   15.658473] intel_cln_gip 0000:00:15.2: irq 42 for MSI/MSI-X
[   15.731434] cy8c9540a 0-0020: dev_id=0x40
[   15.915268] at24 0-0050: byte_len looks suspicious (no power of 2)!
[   15.922288] at24 0-0050: 11264 byte at24 EEPROM, writable, 1 bytes/write
[   15.992345] i2c /dev entries driver
[   16.213783] spi_pxa2xx_pci: `0' invalid for parameter `gpio_cs'
[   16.280414] ce4100_spi 0000:00:15.0: enabling device (0000 -> 0002)
[   16.286982] ce4100_spi 0000:00:15.0: enabling bus mastering
[   16.287068] ce4100_spi 0000:00:15.0: setting latency timer to 64
[   16.287486] ce4100_spi 0000:00:15.0: irq 43 for MSI/MSI-X
[   16.291097] ce4100_spi 0000:00:15.1: enabling device (0000 -> 0002)
[   16.297661] ce4100_spi 0000:00:15.1: enabling bus mastering
[   16.297748] ce4100_spi 0000:00:15.1: setting latency timer to 64
[   16.298165] ce4100_spi 0000:00:15.1: irq 44 for MSI/MSI-X
[   16.312274] pxa2xx-spi pxa2xx-spi.0: registered master spi0
[   16.313158] spi_master spi0: will run message pump with realtime priority
[   16.323759] spi spi0.0: 1000000 Hz actual, PIO
[   16.324144] spi spi0.0: setup mode 2, 8 bits/w, 5000000 Hz max --> 0
[   16.328882] pxa2xx-spi pxa2xx-spi.0: registered child spi0.0
[   16.331465] pxa2xx-spi pxa2xx-spi.1: registered master spi1
[   16.332356] spi_master spi1: will run message pump with realtime priority
[   16.339501] spi spi1.0: 5000000 Hz actual, PIO
[   16.339607] spi spi1.0: setup mode 0, 8 bits/w, 50000000 Hz max --> 0
[   16.351451] pxa2xx-spi pxa2xx-spi.1: registered child spi1.0
[   16.659679] cfg80211: Calling CRDA to update world regulatory domain
[   16.702319] Intel(R) Wireless WiFi driver for Linux, in-tree:
[   16.708121] Copyright(c) 2003-2012 Intel Corporation
[   16.974144] Bluetooth: Core ver 2.16
[   16.979617] NET: Registered protocol family 31
[   16.984244] Bluetooth: HCI device and connection manager initialized
[   16.991678] Bluetooth: HCI socket layer initialized
[   16.996690] Bluetooth: L2CAP socket layer initialized
[   17.002199] Bluetooth: SCO socket layer initialized
[   17.024561] usbcore: registered new interface driver btusb
[   17.108411] usbcore: registered new interface driver usbhid
[   17.114169] usbhid: USB HID core driver
[   20.582487] eth0: device MAC address 98:4f:ee:00:3e:83
[   22.590499] libphy: stmmac-1:01 - Link is Up - 100/Full
[   26.132023] NET: Registered protocol family 10
使ってみる。LINUX IMAGE FOR SD for Intel Galileo | 0 件のコメント | アカウント登録
サイト管理者はコメントに関する責任を負いません。