Minnowboard Max

Single or dual core Intel Atom based device, with one Realtek gigabit ethernet port and no WiFi connectivity out of the box. As of September 2014, only the dual core variants are available.

Architecture: x86_64
Vendor: CircuitCo/Intel
Firmware: EFI
CPU: Intel Atom E3825
CPU/Speed 1.33Ghz (dual core)
Flash size: 8192 KiB (system flash)
RAM: 2 GiB
Wireless: None
Ethernet: Realtek RTL8111GS-CG (1-port GigE)
Switch: None
USB: 1×2.0, 1×3.0
Other: GPIO, SATA2, MicroSD

There are _no_ pre-built OpenWrt images that will work with this device. You will need to build your own. The below is known to work with r42668 (anything with a Kernel newer than 3.3 should be okay).

This device uses a x64 CPU and the generic x64 OpenWrt build will work fine on it, with a few changes. The main issue with getting this device to work is its use of EFI, which the OpenWrt build system does not cater for currently. To get it working we're going to need to perform a custom build and change some kernel configuration. So make sure you setup your Buildroot first!

Firstly we'll setup the basics for an x64 build with an appropriate network card driver:

~/openwrt$ make menuconfig
~/openwrt$ # Set the target as x86
~/openwrt$ # Set the subtarget as x86_64
~/openwrt$ # Go to Kernel Modules > Network Devices > Check kmod-r8169

Now we make some changes to the kernel to support EFI stub booting. This effectively allows us to boot without a bootloader:

~/openwrt$ make kernel_menuconfig CONFIG_TARGET=subtarget
~/openwrt$ # Go to Processor Type and Features > Check Symmetric Multi Processing support, EFI runtime service support, Check EFI stub support
~/openwrt$ # Go to Firmware Drivers > EFI Support > Check EFI Variable Support via sysfs

Now build OpenWrt:

~/openwrt$ make V=99

We're not done yet. The 'combined' OpenWrt image that's been built will work fine on a PC with a legacy BIOS, but not an EFI firmware. We now need to manually create our image with a special EFI partition.

Find a spare 256MB USB stick (or greater) and connect it to your PC. The below assumes it is /dev/sdf (you can find what it really is by running 'dmesg' immediately after attaching it)

# Warning - the below will destroy the contents of the USB stick!
~/openwrt# parted /dev/sdf
~/openwrt# (parted) mklabel gpt
~/openwrt# (parted) mkpart ESI fat32 0 64MiB
~/openwrt# (parted) mkpart primary ext4 64MiB 256MiB
~/openwrt# (parted) set 1 boot on
~/openwrt# (parted) quit

Now we format the new partitions (you may need dosfstools on RHEL/CentOS for this):

~/openwrt# mkfs.vfat -F 32 /dev/sdf1
~/openwrt# mkfs.ext4 /dev/sdf2

If all is well, you should have this:

~/openwrt# parted /dev/sdf print
Model:  USB DISK 2.0 (scsi)
Disk /dev/sdf: 3910MB
Sector size (logical/physical): 512B/512B
Partition Table: gpt

Number  Start   End     Size    File system  Name     Flags
 1      17.4kB  67.1MB  67.1MB  fat32        ESI      boot
 2      67.1MB  268MB   201MB   ext4         primary

Let's mount the partitions in preparation for working on them:

~/openwrt# mkdir -p /tmp/sdf1
~/openwrt# mkdir -p /tmp/sdf2
~/openwrt# mount /dev/sdf1 /tmp/sdf1
~/openwrt# mount /dev/sdf2 /tmp/sdf2

Create the boot partition. Note that we're launching our kernel directly from the EFI startup script (supported by the Minnowboard Max). Tweak the kernel params if you need to (this works for me):

~/openwrt# mkdir -p /tmp/sdf1/EFI/BOOT/
~/openwrt# cp -r ~/openwrt/bin/x86_64/openwrt-x86_64-vmlinuz /tmp/sdf1/EFI/BOOT/bootx64.efi
~/openwrt# echo "fs0:\EFI\BOOT\bootx64.efi root=/dev/sda2 rootfstype=ext4 rootwait console=tty0 console=ttyS0,115200n8 noinitrd" > /tmp/sdf1/startup.nsh

Now unpack OpenWrt into the root partition:

 
~/openwrt# tar -zx -C /tmp/sdf2 -f ~/openwrt/bin/x86_64/openwrt-x86_64-rootfs.tar.gz

or

~/openwrt# sudo unsquashfs -f -d /tmp/sdf2 ~/openwrt/bin/x86_64/openwrt-x86-64-rootfs-squashfs.img

Alternatively, you may need to mount the generated squash fs image and copy its contents to the root partition:

~/openwrt# sudo mkdir /tmp/rootfs

~/openwrt# sudo mount ~/openwrt/bin/x86/openwrt-x86-64-rootfs-squashfs.img /tmp/rootfs

~/openwrt# sudo cp -r /tmp/rootfs /tmp/sdf2
~/openwrt# sudo umount /tmp/rootfs

Cleanup safely:

~/openwrt# unmount /dev/sdf1
~/openwrt# unmount /dev/sdf2
~/openwrt# eject /dev/sdf

Unplug the USB stick, connect it to the Minnowboard Max, and it should boot! The HDMI output stops for me after the boot command is executed, but it continues to boot fine. You should be able to ping the device on 192.168.1.1 after a minute or so.

root@OpenWrt:/# dmesg [ 0.000000] Linux version 3.14.18 (sam@dev1.samcrawford.co.uk) (gcc version 4.8.3 (OpenWrt/Linaro GCC 4.8-2014.04 r42668) ) #2 Mon Sep 29 12:02:25 UTC 2014 [ 0.000000] Command line: bootx64.efi root=/dev/sda2 rootfstype=ext4 rootwait console=tty0 noinitrd [ 0.000000] e820: BIOS-provided physical RAM map: [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008efff] usable [ 0.000000] BIOS-e820: [mem 0x000000000008f000-0x000000000008ffff] ACPI NVS [ 0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009dfff] usable [ 0.000000] BIOS-e820: [mem 0x000000000009e000-0x000000000009ffff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable [ 0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000200fffff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000020100000-0x0000000079be4fff] usable [ 0.000000] BIOS-e820: [mem 0x0000000079be5000-0x000000007a4e4fff] reserved [ 0.000000] BIOS-e820: [mem 0x000000007a4e5000-0x000000007a5e4fff] ACPI NVS [ 0.000000] BIOS-e820: [mem 0x000000007a5e5000-0x000000007a624fff] ACPI data [ 0.000000] BIOS-e820: [mem 0x000000007a625000-0x000000007affffff] usable [ 0.000000] BIOS-e820: [mem 0x00000000e00f8000-0x00000000e00f8fff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fed01000-0x00000000fed01fff] reserved [ 0.000000] NX (Execute Disable) protection: active [ 0.000000] efi: EFI v2.40 by EDK II [ 0.000000] efi: ACPI=0x7a624000 ACPI 2.0=0x7a624014 SMBIOS=0x79ce0000 [ 0.000000] efi: mem00: type=7, attr=0xf, range=[0x0000000000000000-0x0000000000001000) (0MB) [ 0.000000] efi: mem01: type=2, attr=0xf, range=[0x0000000000001000-0x0000000000007000) (0MB) [ 0.000000] efi: mem02: type=7, attr=0xf, range=[0x0000000000007000-0x000000000008f000) (0MB) [ 0.000000] efi: mem03: type=10, attr=0xf, range=[0x000000000008f000-0x0000000000090000) (0MB) [ 0.000000] efi: mem04: type=7, attr=0xf, range=[0x0000000000090000-0x000000000009e000) (0MB) [ 0.000000] efi: mem05: type=0, attr=0xf, range=[0x000000000009e000-0x00000000000a0000) (0MB) [ 0.000000] efi: mem06: type=7, attr=0xf, range=[0x0000000000100000-0x0000000001000000) (15MB) [ 0.000000] efi: mem07: type=2, attr=0xf, range=[0x0000000001000000-0x0000000001772000) (7MB) [ 0.000000] efi: mem08: type=7, attr=0xf, range=[0x0000000001772000-0x0000000020000000) (488MB) [ 0.000000] efi: mem09: type=0, attr=0xf, range=[0x0000000020000000-0x0000000020100000) (1MB) [ 0.000000] efi: mem10: type=7, attr=0xf, range=[0x0000000020100000-0x0000000071000000) (1295MB) [ 0.000000] efi: mem11: type=4, attr=0xf, range=[0x0000000071000000-0x0000000071020000) (0MB) [ 0.000000] efi: mem12: type=7, attr=0xf, range=[0x0000000071020000-0x0000000076573000) (85MB) [ 0.000000] efi: mem13: type=1, attr=0xf, range=[0x0000000076573000-0x0000000076ce5000) (7MB) [ 0.000000] efi: mem14: type=7, attr=0xf, range=[0x0000000076ce5000-0x00000000780b2000) (19MB) [ 0.000000] efi: mem15: type=4, attr=0xf, range=[0x00000000780b2000-0x000000007816f000) (0MB) [ 0.000000] efi: mem16: type=7, attr=0xf, range=[0x000000007816f000-0x00000000781b9000) (0MB) [ 0.000000] efi: mem17: type=4, attr=0xf, range=[0x00000000781b9000-0x00000000791e5000) (16MB) [ 0.000000] efi: mem18: type=7, attr=0xf, range=[0x00000000791e5000-0x000000007979b000) (5MB) [ 0.000000] efi: mem19: type=3, attr=0xf, range=[0x000000007979b000-0x00000000799e5000) (2MB) [ 0.000000] efi: mem20: type=7, attr=0xf, range=[0x00000000799e5000-0x0000000079ac2000) (0MB) [ 0.000000] efi: mem21: type=2, attr=0xf, range=[0x0000000079ac2000-0x0000000079ac3000) (0MB) [ 0.000000] efi: mem22: type=7, attr=0xf, range=[0x0000000079ac3000-0x0000000079ac5000) (0MB) [ 0.000000] efi: mem23: type=2, attr=0xf, range=[0x0000000079ac5000-0x0000000079ae5000) (0MB) [ 0.000000] efi: mem24: type=7, attr=0xf, range=[0x0000000079ae5000-0x0000000079b28000) (0MB) [ 0.000000] efi: mem25: type=1, attr=0xf, range=[0x0000000079b28000-0x0000000079be5000) (0MB) [ 0.000000] efi: mem26: type=6, attr=0x800000000000000f, range=[0x0000000079be5000-0x0000000079ce5000) (1MB) [ 0.000000] efi: mem27: type=5, attr=0x800000000000000f, range=[0x0000000079ce5000-0x0000000079ee5000) (2MB) [ 0.000000] efi: mem28: type=0, attr=0xf, range=[0x0000000079ee5000-0x000000007a4e5000) (6MB) [ 0.000000] efi: mem29: type=10, attr=0xf, range=[0x000000007a4e5000-0x000000007a5e5000) (1MB) [ 0.000000] efi: mem30: type=9, attr=0xf, range=[0x000000007a5e5000-0x000000007a625000) (0MB) [ 0.000000] efi: mem31: type=4, attr=0xf, range=[0x000000007a625000-0x000000007b000000) (9MB) [ 0.000000] efi: mem32: type=11, attr=0x8000000000000001, range=[0x00000000e00f8000-0x00000000e00f9000) (0MB) [ 0.000000] efi: mem33: type=11, attr=0x8000000000000001, range=[0x00000000fed01000-0x00000000fed02000) (0MB) [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable [ 0.000000] No AGP bridge found [ 0.000000] e820: last_pfn = 0x7b000 max_arch_pfn = 0x400000000 [ 0.000000] MTRR default type: uncachable [ 0.000000] MTRR fixed ranges enabled: [ 0.000000] 00000-9FFFF write-back [ 0.000000] A0000-FFFFF write-protect [ 0.000000] MTRR variable ranges enabled: [ 0.000000] 0 base 0FFD00000 mask FFFD00000 write-protect [ 0.000000] 1 base 000000000 mask FC0000000 write-back [ 0.000000] 2 base 040000000 mask FE0000000 write-back [ 0.000000] 3 base 060000000 mask FF0000000 write-back [ 0.000000] 4 base 070000000 mask FF8000000 write-back [ 0.000000] 5 base 078000000 mask FFC000000 write-back [ 0.000000] 6 base 07BE00000 mask FFFE00000 uncachable [ 0.000000] 7 disabled [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 [ 0.000000] Base memory trampoline at [ffff880000098000] 98000 size 24576 [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff] [ 0.000000] [mem 0x00000000-0x000fffff] page 4k [ 0.000000] BRK [0x015b8000, 0x015b8fff] PGTABLE [ 0.000000] BRK [0x015b9000, 0x015b9fff] PGTABLE [ 0.000000] BRK [0x015ba000, 0x015bafff] PGTABLE [ 0.000000] init_memory_mapping: [mem 0x79400000-0x795fffff] [ 0.000000] [mem 0x79400000-0x795fffff] page 2M [ 0.000000] BRK [0x015bb000, 0x015bbfff] PGTABLE [ 0.000000] init_memory_mapping: [mem 0x78000000-0x793fffff] [ 0.000000] [mem 0x78000000-0x793fffff] page 2M [ 0.000000] init_memory_mapping: [mem 0x00100000-0x1fffffff] [ 0.000000] [mem 0x00100000-0x001fffff] page 4k [ 0.000000] [mem 0x00200000-0x1fffffff] page 2M [ 0.000000] init_memory_mapping: [mem 0x20100000-0x77ffffff] [ 0.000000] [mem 0x20100000-0x201fffff] page 4k [ 0.000000] [mem 0x20200000-0x77ffffff] page 2M [ 0.000000] BRK [0x015bc000, 0x015bcfff] PGTABLE [ 0.000000] init_memory_mapping: [mem 0x79600000-0x79be4fff] [ 0.000000] [mem 0x79600000-0x799fffff] page 2M [ 0.000000] [mem 0x79a00000-0x79be4fff] page 4k [ 0.000000] BRK [0x015bd000, 0x015bdfff] PGTABLE [ 0.000000] init_memory_mapping: [mem 0x7a625000-0x7affffff] [ 0.000000] [mem 0x7a625000-0x7a7fffff] page 4k [ 0.000000] [mem 0x7a800000-0x7affffff] page 2M [ 0.000000] ACPI: RSDP 000000007a624014 000024 (v02 INTEL ) [ 0.000000] ACPI: XSDT 000000007a6230e8 000084 (v01 INTEL EDK2 00000003 01000013) [ 0.000000] ACPI: FACP 000000007a622000 00010C (v05 INTEL EDK2 00000003 VLV2 0100000D) [ 0.000000] ACPI: DSDT 000000007a614000 009453 (v02 INTEL EDK2 00000003 VLV2 0100000D) [ 0.000000] ACPI: FACS 000000007a57b000 000040 [ 0.000000] ACPI: UEFI 000000007a57e000 000042 (v01 INTEL EDK2 00000002 01000013) [ 0.000000] ACPI: HPET 000000007a621000 000038 (v01 INTEL EDK2 00000003 VLV2 0100000D) [ 0.000000] ACPI: LPIT 000000007a620000 000104 (v01 INTEL EDK2 00000003 VLV2 0100000D) [ 0.000000] ACPI: APIC 000000007a61f000 000084 (v03 INTEL EDK2 00000003 VLV2 0100000D) [ 0.000000] ACPI: MCFG 000000007a61e000 00003C (v01 INTEL EDK2 00000003 VLV2 0100000D) [ 0.000000] ACPI: SSDT 000000007a613000 000763 (v01 PmRef CpuPm 00003000 INTL 20120518) [ 0.000000] ACPI: SSDT 000000007a612000 000261 (v01 PmRef Cpu0Tst 00003000 INTL 20120518) [ 0.000000] ACPI: SSDT 000000007a611000 00017A (v01 PmRef ApTst 00003000 INTL 20120518) [ 0.000000] ACPI: CSRT 000000007a610000 00014C (v00 INTEL EDK2 00000005 INTL 20120624) [ 0.000000] ACPI: SSDT 000000007a60f000 0003E6 (v01 Intel_ IsctTabl 00001000 INTL 20120518) [ 0.000000] ACPI: FPDT 000000007a60e000 000044 (v01 INTEL EDK2 00000002 01000013) [ 0.000000] ACPI: Local APIC address 0xfee00000 [ 0.000000] Zone ranges: [ 0.000000] DMA [mem 0x00001000-0x00ffffff] [ 0.000000] DMA32 [mem 0x01000000-0xffffffff] [ 0.000000] Normal empty [ 0.000000] Movable zone start for each node [ 0.000000] Early memory node ranges [ 0.000000] node 0: [mem 0x00001000-0x0008efff] [ 0.000000] node 0: [mem 0x00090000-0x0009dfff] [ 0.000000] node 0: [mem 0x00100000-0x1fffffff] [ 0.000000] node 0: [mem 0x20100000-0x79be4fff] [ 0.000000] node 0: [mem 0x7a625000-0x7affffff] [ 0.000000] On node 0 totalpages: 500828 [ 0.000000] DMA zone: 64 pages used for memmap [ 0.000000] DMA zone: 21 pages reserved [ 0.000000] DMA zone: 3996 pages, LIFO batch:0 [ 0.000000] DMA32 zone: 7808 pages used for memmap [ 0.000000] DMA32 zone: 496832 pages, LIFO batch:31 [ 0.000000] ACPI: PM-Timer IO Port: 0x408 [ 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[0x02] disabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x04] enabled) [ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 2/0x4 ignored. [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x06] disabled) [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high level lint[0x1]) [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high level lint[0x1]) [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high level lint[0x1]) [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x04] high level lint[0x1]) [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) [ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-86 [ 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] nr_irqs_gsi: 103 [ 0.000000] e820: [mem 0x80000000-0xe00f7fff] available for PCI devices [ 0.000000] Booting paravirtualized kernel on bare hardware [ 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: 492935 [ 0.000000] Kernel command line: bootx64.efi root=/dev/sda2 rootfstype=ext4 rootwait console=tty0 noinitrd [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes) [ 0.000000] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes) [ 0.000000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes) [ 0.000000] Checking aperture... [ 0.000000] No AGP bridge found [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing! [ 0.000000] Memory: 1931504K/2003312K available (3279K kernel code, 398K rwdata, 1092K rodata, 624K init, 452K bss, 71808K reserved) [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1 [ 0.000000] NR_IRQS:4352 nr_irqs:256 16 [ 0.000000] Console: colour dummy device 80x25 [ 0.000000] console [tty0] enabled [ 0.000000] hpet clockevent registered [ 0.000000] Maximum core-clock to bus-clock ratio: 0xa [ 0.000000] Resolved frequency ID: 2, frequency: 133200 KHz [ 0.000000] TSC runs at 1332000 KHz [ 0.000000] lapic_timer_frequency = 1332000 [ 0.000000] tsc: Detected 1332.000 MHz processor [ 0.000002] Calibrating delay loop (skipped), value calculated using timer frequency.. 2664.00 BogoMIPS (lpj=13320000) [ 0.000016] pid_max: default: 32768 minimum: 301 [ 0.000031] ACPI: Core revision 20131218 [ 0.015962] ACPI: All ACPI Tables successfully acquired [ 0.016814] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes) [ 0.016830] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes) [ 0.017099] ENERGY_PERF_BIAS: Set to 'normal', was 'performance' [ 0.017099] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8) [ 0.017119] mce: CPU supports 6 MCE banks [ 0.017135] CPU0: Thermal monitoring enabled (TM1) [ 0.017150] Last level iTLB entries: 4KB 48, 2MB 0, 4MB 0 [ 0.017150] Last level dTLB entries: 4KB 128, 2MB 16, 4MB 16, 1GB 0 [ 0.017150] tlb_flushall_shift: 6 [ 0.017165] CPU: Intel(R) Atom(TM) CPU E3825 @ 1.33GHz (fam: 06, model: 37, stepping: 03) [ 0.021729] Performance Events: PEBS fmt2+, 8-deep LBR, Silvermont events, full-width counters, Intel PMU driver. [ 0.021762] ... version: 3 [ 0.021769] ... bit width: 40 [ 0.021775] ... generic registers: 2 [ 0.021781] ... value mask: 000000ffffffffff [ 0.021787] ... max period: 000000ffffffffff [ 0.021793] ... fixed-purpose events: 3 [ 0.021798] ... event mask: 0000000700000003 [ 0.022852] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 [ 0.122909] TSC deadline timer enabled [ 0.123482] NET: Registered protocol family 16 [ 0.123932] cpuidle: using governor ladder [ 0.124006] ACPI: bus type PCI registered [ 0.124019] PCI: Using configuration type 1 for base access [ 0.130746] bio: create slab <bio-0> at 0 [ 0.130976] ACPI: Added _OSI(Module Device) [ 0.130987] ACPI: Added _OSI(Processor Device) [ 0.130993] ACPI: Added _OSI(3.0 _SCP Extensions) [ 0.131000] ACPI: Added _OSI(Processor Aggregator Device) [ 0.146296] ACPI: SSDT 000000007a4dfa98 000311 (v01 PmRef Cpu0Ist 00003000 INTL 20120518) [ 0.147173] ACPI: Dynamic OEM Table Load: [ 0.147184] ACPI: SSDT (null) 000311 (v01 PmRef Cpu0Ist 00003000 INTL 20120518) [ 0.147419] ACPI: SSDT 000000007a4dec98 000233 (v01 PmRef Cpu0Cst 00003001 INTL 20120518) [ 0.148274] ACPI: Dynamic OEM Table Load: [ 0.148284] ACPI: SSDT (null) 000233 (v01 PmRef Cpu0Cst 00003001 INTL 20120518) [ 0.149074] ACPI: Interpreter enabled [ 0.149096] ACPI: (supports S0 S5) [ 0.149104] ACPI: Using IOAPIC for interrupt routing [ 0.149288] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug [ 0.155716] ACPI: Power Resource [USBC] (on) [ 0.165069] ACPI: Power Resource [PLPE] (on) [ 0.165645] ACPI: Power Resource [PLPE] (on) [ 0.174207] ACPI: Power Resource [CLK0] (on) [ 0.174359] ACPI: Power Resource [CLK1] (on) [ 0.278503] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) [ 0.278526] acpi PNP0A08:00: _OSC: OS supports [Segments MSI] [ 0.278640] \_SB_.PCI0:_OSC invalid UUID [ 0.278645] _OSC request data:1 18 0 [ 0.278655] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM [ 0.279426] PCI host bridge to bus 0000:00 [ 0.279441] pci_bus 0000:00: root bus resource [bus 00-ff] [ 0.279451] pci_bus 0000:00: root bus resource [io 0x0000-0x006f] [ 0.279461] pci_bus 0000:00: root bus resource [io 0x0078-0x0cf7] [ 0.279470] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff] [ 0.279479] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff] [ 0.279488] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff] [ 0.279498] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000fffff] [ 0.279507] pci_bus 0000:00: root bus resource [mem 0x90c00000-0x90ffffff] [ 0.279517] pci_bus 0000:00: root bus resource [mem 0x80000000-0x908ffffe] [ 0.279538] pci 0000:00:00.0: [8086:0f00] type 00 class 0x060000 [ 0.279772] pci 0000:00:02.0: [8086:0f31] type 00 class 0x030000 [ 0.279795] pci 0000:00:02.0: reg 0x10: [mem 0x90000000-0x903fffff] [ 0.279812] pci 0000:00:02.0: reg 0x18: [mem 0x80000000-0x8fffffff pref] [ 0.279829] pci 0000:00:02.0: reg 0x20: [io 0x2050-0x2057] [ 0.280076] pci 0000:00:11.0: [8086:0f15] type 00 class 0x080501 [ 0.280102] pci 0000:00:11.0: reg 0x10: [mem 0x90900000-0x90900fff] [ 0.280117] pci 0000:00:11.0: reg 0x14: [mem 0x90901000-0x90901fff] [ 0.280196] pci 0000:00:11.0: PME# supported from D0 D3hot [ 0.280378] pci 0000:00:12.0: [8086:0f16] type 00 class 0x080501 [ 0.280404] pci 0000:00:12.0: reg 0x10: [mem 0x90831000-0x90831fff] [ 0.280419] pci 0000:00:12.0: reg 0x14: [mem 0x90830000-0x90830fff] [ 0.280497] pci 0000:00:12.0: PME# supported from D0 D3hot [ 0.280693] pci 0000:00:14.0: [8086:0f35] type 00 class 0x0c0330 [ 0.280721] pci 0000:00:14.0: reg 0x10: [mem 0x90800000-0x9080ffff 64bit] [ 0.280794] pci 0000:00:14.0: PME# supported from D3hot D3cold [ 0.280991] pci 0000:00:17.0: [8086:0f50] type 00 class 0x080501 [ 0.281016] pci 0000:00:17.0: reg 0x10: [mem 0x9082e000-0x9082efff] [ 0.281032] pci 0000:00:17.0: reg 0x14: [mem 0x9082d000-0x9082dfff] [ 0.281110] pci 0000:00:17.0: PME# supported from D0 D3hot [ 0.281297] pci 0000:00:18.0: [8086:0f40] type 00 class 0x080102 [ 0.281322] pci 0000:00:18.0: reg 0x10: [mem 0x90908000-0x9090bfff] [ 0.281338] pci 0000:00:18.0: reg 0x14: [mem 0x90906000-0x90906fff] [ 0.281600] pci 0000:00:18.6: [8086:0f46] type 00 class 0x0c8000 [ 0.281625] pci 0000:00:18.6: reg 0x10: [mem 0x9090f000-0x9090ffff] [ 0.281640] pci 0000:00:18.6: reg 0x14: [mem 0x90910000-0x90910fff] [ 0.281893] pci 0000:00:18.7: [8086:0f47] type 00 class 0x0c8000 [ 0.281918] pci 0000:00:18.7: reg 0x10: [mem 0x90915000-0x90915fff] [ 0.281933] pci 0000:00:18.7: reg 0x14: [mem 0x90916000-0x90916fff] [ 0.282196] pci 0000:00:1a.0: [8086:0f18] type 00 class 0x108000 [ 0.282225] pci 0000:00:1a.0: reg 0x10: [mem 0x90700000-0x907fffff] [ 0.282241] pci 0000:00:1a.0: reg 0x14: [mem 0x90600000-0x906fffff] [ 0.282336] pci 0000:00:1a.0: PME# supported from D0 D3hot [ 0.282534] pci 0000:00:1b.0: [8086:0f04] type 00 class 0x040300 [ 0.282566] pci 0000:00:1b.0: reg 0x10: [mem 0x90810000-0x90813fff 64bit] [ 0.282651] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold [ 0.282838] pci 0000:00:1c.0: [8086:0f48] type 01 class 0x060400 [ 0.282915] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold [ 0.283120] pci 0000:00:1c.2: [8086:0f4c] type 01 class 0x060400 [ 0.283196] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold [ 0.283398] pci 0000:00:1e.0: [8086:0f06] type 00 class 0x080102 [ 0.283424] pci 0000:00:1e.0: reg 0x10: [mem 0x9091c000-0x9091ffff] [ 0.283439] pci 0000:00:1e.0: reg 0x14: [mem 0x9091b000-0x9091bfff] [ 0.283692] pci 0000:00:1e.1: [8086:0f08] type 00 class 0x0c8000 [ 0.283718] pci 0000:00:1e.1: reg 0x10: [mem 0x90924000-0x90924fff] [ 0.283733] pci 0000:00:1e.1: reg 0x14: [mem 0x90925000-0x90925fff] [ 0.283989] pci 0000:00:1e.2: [8086:0f09] type 00 class 0x0c8000 [ 0.284015] pci 0000:00:1e.2: reg 0x10: [mem 0x9092a000-0x9092afff] [ 0.284030] pci 0000:00:1e.2: reg 0x14: [mem 0x9092b000-0x9092bfff] [ 0.284286] pci 0000:00:1e.3: [8086:0f0a] type 00 class 0x078000 [ 0.284312] pci 0000:00:1e.3: reg 0x10: [mem 0x90930000-0x90930fff] [ 0.284327] pci 0000:00:1e.3: reg 0x14: [mem 0x90931000-0x90931fff] [ 0.284580] pci 0000:00:1e.4: [8086:0f0c] type 00 class 0x078000 [ 0.284606] pci 0000:00:1e.4: reg 0x10: [mem 0x90936000-0x90936fff] [ 0.284621] pci 0000:00:1e.4: reg 0x14: [mem 0x90937000-0x90937fff] [ 0.284880] pci 0000:00:1e.5: [8086:0f0e] type 00 class 0x0c8000 [ 0.284906] pci 0000:00:1e.5: reg 0x10: [mem 0x9093c000-0x9093cfff] [ 0.284921] pci 0000:00:1e.5: reg 0x14: [mem 0x9093d000-0x9093dfff] [ 0.285175] pci 0000:00:1f.0: [8086:0f1c] type 00 class 0x060100 [ 0.285453] pci 0000:00:1f.3: [8086:0f12] type 00 class 0x0c0500 [ 0.285496] pci 0000:00:1f.3: reg 0x10: [mem 0x9081c000-0x9081c01f] [ 0.285575] pci 0000:00:1f.3: reg 0x20: [io 0x2000-0x201f] [ 0.285964] pci 0000:00:1c.0: PCI bridge to [bus 01] [ 0.286118] pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000 [ 0.286142] pci 0000:02:00.0: reg 0x10: [io 0x1000-0x10ff] [ 0.286177] pci 0000:02:00.0: reg 0x18: [mem 0x90500000-0x90500fff 64bit] [ 0.286201] pci 0000:02:00.0: reg 0x20: [mem 0x90400000-0x90403fff 64bit pref] [ 0.286287] pci 0000:02:00.0: supports D1 D2 [ 0.286292] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold [ 0.286433] pci 0000:00:1c.2: PCI bridge to [bus 02] [ 0.286447] pci 0000:00:1c.2: bridge window [io 0x1000-0x1fff] [ 0.286455] pci 0000:00:1c.2: bridge window [mem 0x90500000-0x905fffff] [ 0.286464] pci 0000:00:1c.2: bridge window [mem 0x90400000-0x904fffff 64bit pref] [ 0.286485] pci_bus 0000:00: on NUMA node 0 [ 0.287274] ACPI: PCI Interrupt Link [LNKA] (IRQs *3 4 5 6 10 11 12 14 15), disabled. [ 0.287444] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 *4 5 6 10 11 12 14 15), disabled. [ 0.287610] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 *5 6 10 11 12 14 15), disabled. [ 0.287775] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 *6 10 11 12 14 15), disabled. [ 0.287944] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *7, disabled. [ 0.288111] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *9, disabled. [ 0.288277] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 *10 11 12 14 15), disabled. [ 0.288443] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 *11 12 14 15), disabled. [ 0.289672] ACPI: Enabled 4 GPEs in block 00 to 3F [ 0.290205] SCSI subsystem initialized [ 0.290375] libata version 3.00 loaded. [ 0.290395] ACPI: bus type USB registered [ 0.290548] usbcore: registered new interface driver usbfs [ 0.290632] usbcore: registered new interface driver hub [ 0.290722] usbcore: registered new device driver usb [ 0.291084] PCI: Using ACPI for IRQ routing [ 0.291095] PCI: pci_cache_line_size set to 64 bytes [ 0.291117] pci 0000:00:11.0: no compatible bridge window for [mem 0x90900000-0x90900fff] [ 0.291130] pci 0000:00:11.0: no compatible bridge window for [mem 0x90901000-0x90901fff] [ 0.291150] pci 0000:00:18.0: no compatible bridge window for [mem 0x90908000-0x9090bfff] [ 0.291162] pci 0000:00:18.0: no compatible bridge window for [mem 0x90906000-0x90906fff] [ 0.291175] pci 0000:00:18.6: no compatible bridge window for [mem 0x9090f000-0x9090ffff] [ 0.291186] pci 0000:00:18.6: no compatible bridge window for [mem 0x90910000-0x90910fff] [ 0.291199] pci 0000:00:18.7: no compatible bridge window for [mem 0x90915000-0x90915fff] [ 0.291210] pci 0000:00:18.7: no compatible bridge window for [mem 0x90916000-0x90916fff] [ 0.291233] pci 0000:00:1e.0: no compatible bridge window for [mem 0x9091c000-0x9091ffff] [ 0.291245] pci 0000:00:1e.0: no compatible bridge window for [mem 0x9091b000-0x9091bfff] [ 0.291257] pci 0000:00:1e.1: no compatible bridge window for [mem 0x90924000-0x90924fff] [ 0.291269] pci 0000:00:1e.1: no compatible bridge window for [mem 0x90925000-0x90925fff] [ 0.291282] pci 0000:00:1e.2: no compatible bridge window for [mem 0x9092a000-0x9092afff] [ 0.291293] pci 0000:00:1e.2: no compatible bridge window for [mem 0x9092b000-0x9092bfff] [ 0.291306] pci 0000:00:1e.3: no compatible bridge window for [mem 0x90930000-0x90930fff] [ 0.291317] pci 0000:00:1e.3: no compatible bridge window for [mem 0x90931000-0x90931fff] [ 0.291330] pci 0000:00:1e.4: no compatible bridge window for [mem 0x90936000-0x90936fff] [ 0.291341] pci 0000:00:1e.4: no compatible bridge window for [mem 0x90937000-0x90937fff] [ 0.291354] pci 0000:00:1e.5: no compatible bridge window for [mem 0x9093c000-0x9093cfff] [ 0.291366] pci 0000:00:1e.5: no compatible bridge window for [mem 0x9093d000-0x9093dfff] [ 0.291411] e820: reserve RAM buffer [mem 0x0008f000-0x0008ffff] [ 0.291416] e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff] [ 0.291420] e820: reserve RAM buffer [mem 0x79be5000-0x7bffffff] [ 0.291424] e820: reserve RAM buffer [mem 0x7b000000-0x7bffffff] [ 0.291831] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0 [ 0.291847] hpet0: 3 comparators, 64-bit 14.318180 MHz counter [ 0.293891] Switched to clocksource hpet [ 0.294027] pnp: PnP ACPI init [ 0.294047] ACPI: bus type PNP registered [ 0.294188] pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active) [ 0.294375] pnp 00:01: Plug and Play ACPI device, IDs PNP0103 (active) [ 0.294492] pnp 00:02: Plug and Play ACPI device, IDs INT0800 (active) [ 0.294637] system 00:03: [io 0x0680-0x069f] has been reserved [ 0.294651] system 00:03: [io 0x0400-0x047f] has been reserved [ 0.294661] system 00:03: [io 0x0500-0x05fe] has been reserved [ 0.294672] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active) [ 0.294956] pnp 00:04: Plug and Play ACPI device, IDs PNP0501 (active) [ 0.295738] system 00:05: [mem 0xe0000000-0xefffffff] could not be reserved [ 0.295753] system 00:05: [mem 0xfed01000-0xfed01fff] has been reserved [ 0.295763] system 00:05: [mem 0xfed03000-0xfed03fff] has been reserved [ 0.295773] system 00:05: [mem 0xfed04000-0xfed04fff] has been reserved [ 0.295783] system 00:05: [mem 0xfed0c000-0xfed0ffff] has been reserved [ 0.295793] system 00:05: [mem 0xfed08000-0xfed08fff] has been reserved [ 0.295803] system 00:05: [mem 0xfed1c000-0xfed1cfff] has been reserved [ 0.295813] system 00:05: [mem 0xfee00000-0xfeefffff] has been reserved [ 0.295823] system 00:05: [mem 0xfef00000-0xfeffffff] has been reserved [ 0.295834] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active) [ 0.296471] pnp 00:06: Plug and Play ACPI device, IDs INT33fc INT33b2 (active) [ 0.296696] pnp 00:07: Plug and Play ACPI device, IDs INT33fc INT33b2 (active) [ 0.296923] pnp 00:08: Plug and Play ACPI device, IDs INT33fc INT33b2 (active) [ 0.297714] pnp 00:09: Plug and Play ACPI device, IDs INT33bd (active) [ 0.297784] pnp: PnP ACPI: found 10 devices [ 0.297793] ACPI: bus type PNP unregistered [ 0.308153] pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 01] add_size 1000 [ 0.308165] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 [ 0.308173] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 01] add_size 200000 [ 0.308209] pci 0000:00:1c.0: res[8]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000 [ 0.308216] pci 0000:00:1c.0: res[9]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000 [ 0.308223] pci 0000:00:1c.0: res[7]=[io 0x1000-0x0fff] get_res_add_size add_size 1000 [ 0.308237] pci 0000:00:1c.0: BAR 8: assigned [mem 0x90c00000-0x90dfffff] [ 0.308257] pci 0000:00:1c.0: BAR 9: assigned [mem 0x90e00000-0x90ffffff 64bit pref] [ 0.308272] pci 0000:00:18.0: BAR 0: assigned [mem 0x90814000-0x90817fff] [ 0.308289] pci 0000:00:1e.0: BAR 0: assigned [mem 0x90818000-0x9081bfff] [ 0.308305] pci 0000:00:11.0: BAR 0: assigned [mem 0x9081d000-0x9081dfff] [ 0.308321] pci 0000:00:11.0: BAR 1: assigned [mem 0x9081e000-0x9081efff] [ 0.308337] pci 0000:00:18.0: BAR 1: assigned [mem 0x9081f000-0x9081ffff] [ 0.308352] pci 0000:00:18.6: BAR 0: assigned [mem 0x90820000-0x90820fff] [ 0.308368] pci 0000:00:18.6: BAR 1: assigned [mem 0x90821000-0x90821fff] [ 0.308384] pci 0000:00:18.7: BAR 0: assigned [mem 0x90822000-0x90822fff] [ 0.308400] pci 0000:00:18.7: BAR 1: assigned [mem 0x90823000-0x90823fff] [ 0.308416] pci 0000:00:1c.0: BAR 7: assigned [io 0x3000-0x3fff] [ 0.308429] pci 0000:00:1e.0: BAR 1: assigned [mem 0x90824000-0x90824fff] [ 0.308445] pci 0000:00:1e.1: BAR 0: assigned [mem 0x90825000-0x90825fff] [ 0.308460] pci 0000:00:1e.1: BAR 1: assigned [mem 0x90826000-0x90826fff] [ 0.308476] pci 0000:00:1e.2: BAR 0: assigned [mem 0x90827000-0x90827fff] [ 0.308492] pci 0000:00:1e.2: BAR 1: assigned [mem 0x90828000-0x90828fff] [ 0.308508] pci 0000:00:1e.3: BAR 0: assigned [mem 0x90829000-0x90829fff] [ 0.308524] pci 0000:00:1e.3: BAR 1: assigned [mem 0x9082a000-0x9082afff] [ 0.308540] pci 0000:00:1e.4: BAR 0: assigned [mem 0x9082b000-0x9082bfff] [ 0.308556] pci 0000:00:1e.4: BAR 1: assigned [mem 0x9082c000-0x9082cfff] [ 0.308572] pci 0000:00:1e.5: BAR 0: assigned [mem 0x9082f000-0x9082ffff] [ 0.308588] pci 0000:00:1e.5: BAR 1: assigned [mem 0x90832000-0x90832fff] [ 0.308606] pci 0000:00:1c.0: PCI bridge to [bus 01] [ 0.308616] pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff] [ 0.308628] pci 0000:00:1c.0: bridge window [mem 0x90c00000-0x90dfffff] [ 0.308640] pci 0000:00:1c.0: bridge window [mem 0x90e00000-0x90ffffff 64bit pref] [ 0.308654] pci 0000:00:1c.2: PCI bridge to [bus 02] [ 0.308664] pci 0000:00:1c.2: bridge window [io 0x1000-0x1fff] [ 0.308676] pci 0000:00:1c.2: bridge window [mem 0x90500000-0x905fffff] [ 0.308687] pci 0000:00:1c.2: bridge window [mem 0x90400000-0x904fffff 64bit pref] [ 0.308703] pci_bus 0000:00: resource 4 [io 0x0000-0x006f] [ 0.308709] pci_bus 0000:00: resource 5 [io 0x0078-0x0cf7] [ 0.308714] pci_bus 0000:00: resource 6 [io 0x0d00-0xffff] [ 0.308720] pci_bus 0000:00: resource 7 [mem 0x000a0000-0x000bffff] [ 0.308725] pci_bus 0000:00: resource 8 [mem 0x000c0000-0x000dffff] [ 0.308731] pci_bus 0000:00: resource 9 [mem 0x000e0000-0x000fffff] [ 0.308737] pci_bus 0000:00: resource 10 [mem 0x90c00000-0x90ffffff] [ 0.308742] pci_bus 0000:00: resource 11 [mem 0x80000000-0x908ffffe] [ 0.308748] pci_bus 0000:01: resource 0 [io 0x3000-0x3fff] [ 0.308754] pci_bus 0000:01: resource 1 [mem 0x90c00000-0x90dfffff] [ 0.308760] pci_bus 0000:01: resource 2 [mem 0x90e00000-0x90ffffff 64bit pref] [ 0.308766] pci_bus 0000:02: resource 0 [io 0x1000-0x1fff] [ 0.308771] pci_bus 0000:02: resource 1 [mem 0x90500000-0x905fffff] [ 0.308777] pci_bus 0000:02: resource 2 [mem 0x90400000-0x904fffff 64bit pref] [ 0.308833] NET: Registered protocol family 2 [ 0.309175] TCP established hash table entries: 16384 (order: 5, 131072 bytes) [ 0.309255] TCP bind hash table entries: 16384 (order: 5, 131072 bytes) [ 0.309330] TCP: Hash tables configured (established 16384 bind 16384) [ 0.309393] TCP: reno registered [ 0.309404] UDP hash table entries: 1024 (order: 3, 32768 bytes) [ 0.309428] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes) [ 0.309544] NET: Registered protocol family 1 [ 0.309581] pci 0000:00:02.0: Boot video device [ 0.310016] PCI: CLS 64 bytes, default 64 [ 0.311017] futex hash table entries: 256 (order: 0, 6144 bytes) [ 0.319907] msgmni has been set to 3830 [ 0.320083] io scheduler noop registered [ 0.320093] io scheduler deadline registered (default) [ 0.320523] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0 [ 0.320541] ACPI: Power Button [PWRB] [ 0.320693] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input1 [ 0.320707] ACPI: Sleep Button [SLPB] [ 0.320857] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2 [ 0.320870] ACPI: Power Button [PWRF] [ 0.323589] Monitor-Mwait will be used to enter C-1 state [ 0.323597] Monitor-Mwait will be used to enter C-2 state [ 0.323614] ACPI: acpi_idle registered with cpuidle [ 0.324392] ACPI: Invalid active0 threshold [ 0.324638] thermal LNXTHERM:00: registered as thermal_zone0 [ 0.324649] ACPI: Thermal Zone [TZ01] (27 C) [ 0.325139] Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled [ 0.345471] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A [ 0.346361] 0000:00:1e.3: ttyS1 at MMIO 0x90829000 (irq = 19, base_baud = 2764800) is a 16550A [ 0.346678] serial 0000:00:1e.4: Couldn't register serial port 0, irq 19, type 2, error -28 [ 0.347122] Non-volatile memory driver v1.3 [ 0.347255] Guest personality initialized and is inactive [ 0.347337] VMCI host device registered (name=vmci, major=10, minor=63) [ 0.347346] Initialized host personality [ 0.347536] VMware PVSCSI driver - version 1.0.2.0-k [ 0.347919] VMware vmxnet3 virtual NIC driver - version 1.2.0.0-k-NAPI [ 0.347999] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 0.348008] ehci-pci: EHCI PCI platform driver [ 0.348082] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver [ 0.348098] ohci-pci: OHCI PCI platform driver [ 0.348173] uhci_hcd: USB Universal Host Controller Interface driver [ 0.348471] xhci_hcd 0000:00:14.0: xHCI Host Controller [ 0.348494] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1 [ 0.348916] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported [ 0.348953] xhci_hcd 0000:00:14.0: irq 103 for MSI/MSI-X [ 0.349361] hub 1-0:1.0: USB hub found [ 0.349389] hub 1-0:1.0: 6 ports detected [ 0.350228] xhci_hcd 0000:00:14.0: xHCI Host Controller [ 0.350244] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2 [ 0.350610] hub 2-0:1.0: USB hub found [ 0.350632] hub 2-0:1.0: 1 port detected [ 0.351020] usbcore: registered new interface driver usb-storage [ 0.351291] i8042: PNP: No PS/2 controller found. Probing ports directly. [ 1.387963] i8042: No controller found [ 1.388114] tsc: Refined TSC clocksource calibration: 1333.333 MHz [ 1.388202] rtc_cmos 00:00: RTC can wake from S4 [ 1.388406] rtc_cmos 00:00: rtc core: registered rtc_cmos as rtc0 [ 1.388443] rtc_cmos 00:00: alarms up to one month, y3k, 242 bytes nvram, hpet irqs [ 1.388515] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10 [ 1.388593] EFI Variables Facility v0.08 2004-May-17 [ 1.397300] TCP: cubic registered [ 1.397315] NET: Registered protocol family 17 [ 1.397362] 8021q: 802.1Q VLAN Support v1.8 [ 1.397493] NET: Registered protocol family 40 [ 1.398534] rtc_cmos 00:00: setting system clock to 2001-01-01 00:03:50 UTC (978307430) [ 1.398731] Waiting for root device /dev/sda2... [ 1.605987] usb 1-1: new high-speed USB device number 2 using xhci_hcd [ 1.752941] usb-storage 1-1:1.0: USB Mass Storage device detected [ 1.753034] scsi0 : usb-storage 1-1:1.0 [ 1.926404] usb 1-2: new low-speed USB device number 3 using xhci_hcd [ 2.086904] usb 1-2: ep 0x81 - rounding interval to 64 microframes, ep desc says 80 microframes [ 2.086929] usb 1-2: ep 0x82 - rounding interval to 64 microframes, ep desc says 80 microframes [ 2.387025] Switched to clocksource tsc [ 2.749734] scsi 0:0:0:0: Direct-Access USB DISK 2.0 PMAP PQ: 0 ANSI: 4 [ 2.751163] sd 0:0:0:0: [sda] 7636800 512-byte logical blocks: (3.91 GB/3.64 GiB) [ 2.751347] sd 0:0:0:0: [sda] Write Protect is off [ 2.751359] sd 0:0:0:0: [sda] Mode Sense: 23 00 00 00 [ 2.751602] sd 0:0:0:0: [sda] No Caching mode page found [ 2.751614] sd 0:0:0:0: [sda] Assuming drive cache: write through [ 2.754914] sd 0:0:0:0: [sda] No Caching mode page found [ 2.754931] sd 0:0:0:0: [sda] Assuming drive cache: write through [ 2.771500] sda: sda1 sda2 [ 2.773223] sd 0:0:0:0: [sda] No Caching mode page found [ 2.773236] sd 0:0:0:0: [sda] Assuming drive cache: write through [ 2.773247] sd 0:0:0:0: [sda] Attached SCSI removable disk [ 2.831760] EXT4-fs (sda2): INFO: recovery required on readonly filesystem [ 2.831772] EXT4-fs (sda2): write access will be enabled during recovery [ 5.651633] EXT4-fs (sda2): recovery complete [ 6.282179] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null) [ 6.282216] VFS: Mounted root (ext4 filesystem) readonly on device 8:2. [ 6.282575] Freeing unused kernel memory: 624K (ffffffff814ab000 - ffffffff81547000) [ 6.650317] random: mktemp urandom read with 53 bits of entropy available [ 9.693684] EXT4-fs (sda2): re-mounted. Opts: (null) [ 10.667787] NET: Registered protocol family 10 [ 10.671068] ip6_tables: (C) 2000-2006 Netfilter Core Team [ 10.697368] ip_tables: (C) 2000-2006 Netfilter Core Team [ 10.699575] nf_conntrack version 0.5.0 (16384 buckets, 65536 max) [ 10.703856] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded [ 10.717836] r8169 0000:02:00.0: irq 104 for MSI/MSI-X [ 10.722017] r8169 0000:02:00.0 eth0: RTL8168g/8111g at 0xffffc90000128000, 00:13:20:fe:32:04, XID 0c000880 IRQ 104 [ 10.722037] r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko] [ 10.734308] xt_time: kernel timezone is -0000 [ 10.736692] PPP generic driver version 2.4.2 [ 10.737366] NET: Registered protocol family 24 [ 12.420652] r8169 0000:02:00.0 eth0: link down [ 12.420752] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready [ 12.421044] device eth0 entered promiscuous mode [ 12.428084] IPv6: ADDRCONF(NETDEV_UP): br-lan: link is not ready [ 161.332744] r8169 0000:02:00.0 eth0: link up [ 161.332943] br-lan: port 1(eth0) entered forwarding state [ 161.332971] br-lan: port 1(eth0) entered forwarding state [ 161.332990] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready [ 161.333056] IPv6: ADDRCONF(NETDEV_CHANGE): br-lan: link becomes ready [ 163.325989] br-lan: port 1(eth0) entered forwarding state [ 163.554984] random: nonblocking pool is initialized [ 211.901441] r8169 0000:02:00.0 eth0: link down [ 211.901473] br-lan: port 1(eth0) entered disabled state [ 957.355682] r8169 0000:02:00.0 eth0: link up [ 957.355881] br-lan: port 1(eth0) entered forwarding state [ 957.355908] br-lan: port 1(eth0) entered forwarding state [ 959.351145] br-lan: port 1(eth0) entered forwarding state root@OpenWrt:/# cat /proc/cpuinfo processor : 0 vendor_id : GenuineIntel cpu family : 6 model : 55 model name : Intel(R) Atom(TM) CPU E3825 @ 1.33GHz stepping : 3 microcode : 0x321 cpu MHz : 1332.000 cache size : 512 KB physical id : 0 siblings : 2 core id : 0 cpu cores : 2 apicid : 0 initial apicid : 0 fpu : yes fpu_exception : yes cpuid level : 11 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm sse4_1 sse4_2 movbe popcnt tsc_deadline_timer aes rdrand lahf_lm 3dnowprefetch arat epb dtherm tpr_shadow vnmi flexpriority ept vpid tsc_adjust smep erms bogomips : 2664.00 clflush size : 64 cache_alignment : 64 address sizes : 36 bits physical, 48 bits virtual power management: processor : 1 vendor_id : GenuineIntel cpu family : 6 model : 55 model name : Intel(R) Atom(TM) CPU E3825 @ 1.33GHz stepping : 3 microcode : 0x321 cpu MHz : 1332.000 cache size : 512 KB physical id : 0 siblings : 2 core id : 2 cpu cores : 2 apicid : 4 initial apicid : 4 fpu : yes fpu_exception : yes cpuid level : 11 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm sse4_1 sse4_2 movbe popcnt tsc_deadline_timer aes rdrand lahf_lm 3dnowprefetch arat epb dtherm tpr_shadow vnmi flexpriority ept vpid tsc_adjust smep erms bogomips : 2664.00 clflush size : 64 cache_alignment : 64 address sizes : 36 bits physical, 48 bits virtual power management: root@OpenWrt:/# free total used free shared buffers Mem: 1961656 20052 1941604 0 200 -/+ buffers: 19852 1941804 Swap: 0 0 0


This website uses cookies. By using the website, you agree with storing cookies on your computer. Also you acknowledge that you have read and understand our Privacy Policy. If you do not agree leave the website.More information about cookies
  • Last modified: 2021/10/15 09:06
  • by bobafetthotmail