Linksys WRT1900AC

The WRT1900AC was the first of the wrt_ac_series to be released. It featured 4 detachable antennas, and a dual core processor, and an internal cooling fan. It is a dualband, 802.11ac wave 1 (80MHz) capable device.
The second revision of the hardware removed the internal cooling fan and made changes made to the way wifi power tables are loaded into the device due to moves from Linksys in response to FCC changes. It also changed to a new processor architecture.

WRT1900AC

None at this time.

The WRT AC series of routers uses a dual firmware flash layout. This means that two separate firmware partitions are included on the device and are flashed in an alternating fashion.

If booting from the primary partition, the secondary (or alternate) partition will be flashed on next sysupgrade, and booting is toggled to happen from that partition. The same logic applies to secondary-→primary. Note that this means there is no permanent “OEM partition” and “OpenWrt partition”. Both firmwares follow the same round-robin logic, where partition usage changes at each sysupgrade. The current firmware always remains as the fallback, and the new firmware is flashed to the other partition.

See the Flash Layout section on each device page for more details, or options to switch between partitions below.

It is recommended to install the LuCI package developed for managing dual firmware luci-app-advanced-reboot.

2016/05/18 13:26 · JW0914

If booting from primary partition, mtd5 will be named ubi, with mtd7 as ubi if booting from alternate partition

WRT1900AC v1

Layer 0 raw flash
128 MiB
Layer 1 mtd0
u-boot
1 MiB
mtd1
u_env
256 KiB
mtd2
s_env
256 KiB
mtd3
devinfo
1 MiB
firmware
80 MiB
mtd8
syscfg
38 MiB
mtd9
unused_area
7680 KiB
Layer 2 mtd4
kernel1
40 MiB
mtd6
kernel2
40 MiB
Layer 3 primary
kernel image
3 MiB
mtd5
rootfs1 (ubi)
37 MiB
alternate
kernel image
3 MiB
mtd7
rootfs2 (ubi)
37 MiB

WRT1900AC v2

Layer 0 raw flash
128 MiB
Layer 1 mtd0
u-boot
1 MiB
mtd1
u_env
256 KiB
mtd2
s_env
256 KiB
mtd3
devinfo
1 MiB
firmware
80 MiB
mtd8
syscfg
38 MiB
mtd9
unused_area
6656 KiB
Layer 2 mtd4
kernel1
40 MiB
mtd6
kernel2
40 MiB
Layer 3 primary
kernel image
6 MiB
mtd5
rootfs1 (ubi)
34 MiB
alternate
kernel image
6 MiB
mtd7
rootfs2 (ubi)
34 MiB

OEM install

  1. Login to Linksys WebUI (Default IP: 192.168.1.1; Password: admin)
  2. Connectivity Manual Update

  3. Select factory image [.img]
    1. Once flash completes, router will reboot

  4. If the image selected
    1. Has LuCI pre-installed:
    2. Does not have LuCI pre-installed:
        1. Linux/BSD: SSH client built in
2016/05/18 13:26 · JW0914

LuCI

  1. Login to the OpenWrt WebUI (Default IP: 192.168.1.1)

  2. System Backup/Flash Firmware Flash New Firmware Image Choose File
    1. Select Sysupgrade bin file [.bin]

  3. Untick Keep Settings, then select Flash Image

CLI

  1. Login to OpenWrt via SSH
    1. Linux/BSD: SSH client built in
  2. Download/Upload firmware image to router
    1. Download via SSH terminal:
      cd /tmp && opkg update && opkg install wget && wget <Image-Link>

      -- OR --

    2. Upload via Client Machine Terminal:
      scp -r -i "C:\OpenWrt.ppk" -2 -scp -P 22 "D:\Path\To\Firmware.img" root@192.168.1.1:/tmp
      1. For PuTTY, change: scp to pscp -scp

      • -scp = force use of SCP protocol
      • -r = copy directories recursively
      • -i = private key file for user authentication
      • -2 = force use of particular SSH protocol version [2]
      • -p = connect to specified port

  3. Flash image
    1. SSH terminal:
      cd /tmp && sysupgrade -n -v <image-name>
      • -n = do not save configuration over reflash
      • -v = more verbose
2016/05/18 13:26 · JW0914

LuCI

  1. Due to missing/incompatible metadata in OEM images, sysupgrade must be forced via the command line

CLI

  1. Login to OpenWrt via SSH
    1. Linux/BSD: SSH client built in
  2. Download/Upload firmware image to router
    1. Download via SSH terminal:
      cd /tmp && opkg update && opkg install wget && wget <Image-Link>

      -- OR --

    2. Upload via Client Machine Terminal:
      scp -r -i "C:\OpenWrt.ppk" -2 -scp -P 22 "D:\Path\To\Firmware.img" root@192.168.1.1:/tmp
      1. For PuTTY, change: scp to pscp -scp

      • -scp = force use of SCP protocol
      • -r = copy directories recursively
      • -i = private key file for user authentication
      • -2 = force use of particular SSH protocol version [2]
      • -p = connect to specified port

  3. Flash image
    1. SSH terminal:
      cd /tmp && sysupgrade -F -n -v <image-name>
      • -F = force write, required to bypass metadata check
      • -n = do not save configuration over reflash
      • -v = more verbose
2016/05/18 13:26 · JW0914

generic.debrick

If the U-Boot bootloader environment becomes corrupted, it can be reset
Reset Bootloader Environment

If the U-Boot bootloader becomes corrupted, it can be recovered
Recover Bootloader

If the firmware has an issue, chances are you can recover it easily due to the Dual Firmware partition layout, by switching to the alternate firmware. For this reason, it is recommended to always keep a known working firmware on the other partition (either OEM or OpenWrt).

Switch router from primary to alternate partition or vice versa using any of the methods below:

LuCI

  1. Install luci-app-advanced-reboot:
    1. SSH:
      opkg update && opkg install luci-app-advanced-reboot
    2. WebUI:
      1. System Software
        1. Actions Update Lists
        2. Actions Filter
          1. luci-app-advanced-reboot Find Package
        3. Status: Available packages
          1. Install luci-app-advanced-reboot

  2. System Advanced Reboot

Serial

  1. Connect via Serial:
    reboot
  2. At 3 second autoboot interrupt delay, press any key
  3. Boot
    1. Primary Partition
      1. Armada XP
        run linksysnandboot
      2. Armada 385
        run nandboot
    2. Alternate Partition:
      1. Armada XP
        run linksysaltnandboot
      2. Armada 385
        run altnandboot

SSH

  1. Determine current partition:
    /usr/sbin/fw_printenv -n boot_part
  2. Boot
    1. Primary Partition:
      /usr/sbin/fw_setenv boot_part 1 && reboot
    2. Alternate Partition:
      /usr/sbin/fw_setenv boot_part 2 && reboot

Power Switch

  1. Power off router with power switch.

  2. Turn power back on and power LED will light.
    1. As soon as all LEDs turn off (~2s), power off router with power switch

  3. Turn power back on and power LED will light.
    1. As soon as all LEDs turn off (~2s), power off router with power switch

  4. Turn power back on and power LED will light.
    1. As soon as all LEDs turn off (~2s), power off router with power switch

  5. Turn power back on and allow router to fully boot.
    • It should now be booted to the alternate firmware partition

Explanation: There is a counter for boot attempts. The counter is increased by 1 at the start of each boot process, then is reset to 0 after a successful boot. If the counter reaches 3, the boot is considered a failure and the boot partition is switched to the other partition (A-→B or B-→A).

Thus, if you interrupt the boot process three times, the router thinks that the current firmware is faulty and switches to the other partition. Note that there is no guarantee that the other partition works. It has the contents and settings that were there when the boot was switched last time, usually at the last sysupgrade. That boot marker switch (A-→B or B-→A) happens at every sysupgrade, so likely you just have the previously used firmware there (either OEM or OpenWrt). But the marker may have been manually toggled, or auto-toggled after three failures.

2016/05/18 13:26 · JW0914

Basic configuration After flashing, proceed with this.
Set up your Internet connection, configure wireless, configure USB port, etc.

eth0/eth1: physical PCB connection LAN: physical LAN ports on router WAN: physical Internet port on router

Marvell 88E6172 (WRT1900AC v1)

sw.port 0 1 2 3 4 5 6 vlan ID
LAN 4 3 2 1 -- eth0 -- 1
WAN -- -- -- -- Internet -- eth1 2

Marvell 88E6176 (WRT1900AC v2)

sw.port 0 1 2 3 4 5 6 vlan ID
LAN 4 3 2 1 -- eth1 -- 1
WAN -- -- -- -- Internet -- eth0 2

hardware.button on howto use and configure the hardware button(s). Here, we merely name the buttons, so we can use them in the above Howto.

BUTTON Event
Reset reset
WPS wps

FIXME

Front:
Insert photo of front of the casing

Back:
Insert photo of back of the casing

Backside label:
Insert photo of backside label

Note: This will void your warranty!

  1. Remove front foot screws from the bottom of the blue part of the case. (The front black plastic & rubber feet inserts might fall out.)
  2. Pull front blue cover straight forward slowly, but firmly.
  3. Remove rear foot screws from the bottom of the black part of the case. (The black plastic & rubber feet inserts might fall out.)
  4. Gently pry up rear, black top cover using plastic spudgers/opening tool.
    1. There are two plastic guides, one per side, which slide into the rear feet
    2. There are 4 big hooks and 3 small hooks.
      1. Start with the two closer to the front, where the blue cover was. One one each side.
      2. Next, push a spudger into the overhang over the Ethernet ports, and move it along the edge, pushing in gently with it to disengage the hooks. (It's likely the 3 small hooks will disengage first.)
      3. The two big hooks in the front are located near the top of each of the front feet.

Main PCB:
FIXME Insert photo of PCB

port.serial general information about the serial port, serial port cable, etc.

How to connect to the Serial Port of this specific device:

Serial connection parameters 115200, 8N1

Serial Port

Synopsis

Serial Port is labeled J1 on the board, utilizing a JST PH 6 pin connector with a 2.0mm pitch, operating at 3.3v

  • The more common 2.54mm pitch will not fit properly.
    • In a pinch, removing the plastic casing from 2.54mm female connectors allows for a stable enough connection.
      • Ensure leads are insulated with electrical tape
  • If flashing regularly, you may wish to invest in a USB-TTL AJ cable
    • USB-TTL AJ cables require installation of a 3.5mm Jack (F) on the router
Serial Header
Pin Out
Pins 1 2 3 4 5 6
Function Gnd Tx n/a Rx n/a n/a
2016/05/18 13:26 · JW0914

This device uses the Marvell Wifi mwlwifi driver. You can read more about it here: Marvell Wifi

BootROM 1.20 Booting from NAND flash Step 1: First phase of PEX-PIPE Configuration Step 2: Configure the desire PIN_PHY_GEN Step 3 QSGMII enable Step 4: Configure SERDES MUXes Step 5: Activate the RX High Impedance Mode Step 6: [PEX-Only] PEX-Main configuration (X4 or X1) Step 6.2: [PEX-Only] PCI Express Link Capabilities Step 7: [PEX-X4 Only] To create PEX-Link Steps 7,8,9,10 and 11 Steps 12: [PEX-Only] Last phase of PEX-PIPE Configuration Steps 13: Wait 15ms before checking results Steps 14: [PEX-Only] In order to configure Steps 15: [PEX-Only] In order to configure Steps 16: [PEX-Only] Training Enablestep 17: max_if= 0x7 step 17: PEX0 pexUnit= 0 ** Link is Gen1, check the EP capability --> 0050 mvPexConfigRead: return addr=0x%x0050 --> 7001 --> 7001 --> A005 --> A005 --> 0010 --> 4C12 Gen2 client! step 17: PEX1 pexUnit= 0 step 17: PEX2 pexUnit= 0 ** Link is Gen1, check the EP capability --> 0040 mvPexConfigRead: return addr=0x%x0040 --> 5001 --> 5001 --> 7005 --> 7005 --> 0010 --> DC12 Gen2 client! step 17: PEX3 pexUnit= 0 PEX3 : Detected No Link. Status Reg(0x0004DA64) = 0x00000001 step 17: PEX4 pexUnit= 1 PEX4 : Detected No Link. Status Reg(0x00081A64) = 0x00000001 step 17: PEX5 pexUnit= 1 PEX5 : Detected No Link. Status Reg(0x00085A64) = 0x00000001 step 17: PEX6 pexUnit= 1 PEX6 : Detected No Link. Status Reg(0x00089A64) = 0x00000001 DDR3 Training Sequence - Ver 4.5.DDR3 Training Sequence - Static MC Init DDR3 Training Sequence - HW Training Procedure DDR3 Training Sequence - Switching XBAR Window to FastPath Window BootROM: Image checksum verification PASSED __ __ _ _ | \/ | __ _ _ ____ _____| | | | |\/| |/ _` | '__\ \ / / _ \ | | | | | | (_| | | \ V / __/ | | |_| |_|\__,_|_| \_/ \___|_|_| _ _ ____ _ | | | | | __ ) ___ ___ | |_ | | | |___| _ \ / _ \ / _ \| __| | |_| |___| |_) | (_) | (_) | |_ \___/ |____/ \___/ \___/ \__| ** LOADER ** U-Boot 2011.12 (Feb 06 2014 - 17:14:13) Marvell version: v2011.12 2013_Q1.2 Boot version:v1.3.25 Board: RD-AXP-GP rev 1.0 SoC: MV78230 B0 running 2 CPUs Custom configuration CPU: Marvell PJ4B (584) v7 (Rev 2) LE CPU 0 CPU @ 1200 [MHz] L2 @ 600 [MHz] TClock @ 250 [MHz] DDR @ 600 [MHz] DDR 32Bit Width, FastPath Memory Access DDR ECC Disabled DRAM: 256 MiB Map: Code: 0x0fea7000:0x0ff5e2d4 BSS: 0x0ffefd80 Stack: 0x0f9a6ef8 Heap: 0x0f9a7000:0x0fea7000 NAND: Spansion 1Gb(ID=F101) 128 MiB MMC: MRVL_MMC: 0 Bad block table found at page 65472, version 0x01 Bad block table found at page 65408, version 0x01 nand_read_bbt: Bad block at 0x000001ca0000 #### auto_recovery #### [u_env] get auto_recovery == yes [u_env] get auto_recovery == yes [u_env] get boot_part == 1 [u_env] get boot_part_ready == 3 auto_recovery enabled:1, boot_part:1, boot_part_ready:3 [boot_count_read] block:0x140000, size:256KB, records:128 [boot_count_read_record] boot_count:2, next_record:42 [boot_count_write] erase:0, auto_recovery->block_offset:0x140000 Updating boot_count ... [boot_count_write] offset:0x155000 , length:2048 done PEX 0.0(0): Root Complex Interface, Detected Link X1, GEN 2.0 PEX 0.1(1): Root Complex Interface, Detected Link X1, GEN 1.1 PEX 0.2(2): Root Complex Interface, Detected Link X1, GEN 2.0 PEX 0.3(3): Detected No Link. PEX 1.0(4): Detected No Link. PEX 1.1(5): Detected No Link. PEX 1.2(6): Detected No Link. boot_end Offset: 0x100000 u_env_off Offset: 0x100000 s_env_off Offset: 0x140000 devinfo Offset: 0x900000 =================== total_badCount: 0 boot_badCount: 0 u_env_badCount: 0 s_env_badCount: 0 buff_badCount: 0 =================== FPU initialized to Run Fast Mode. USB 0: Host Mode USB 1: Host Mode USB 2: Device Mode Modules Detected: mvEthE6171SwitchBasicInit finished Net: mvSysNetaInit enter set port 0 to rgmii enter set port 1 to rgmii enter egiga0 [PRIME], egiga1 modify Phy Status auto_recovery_check changes bootcmd: run nandboot Hit any key to stop autoboot: 0 NAND read: device 0 offset 0xa00000, size 0x400000 4194304 bytes read: OK ## Booting kernel from Legacy Image at 02000000 ... Image Name: Linux-3.2.40 Created: 2014-06-20 21:50:04 UTC Image Type: ARM Linux Kernel Image (uncompressed) Data Size: 3856032 Bytes = 3.7 MiB Load Address: 00008000 Entry Point: 00008000 Verifying Checksum ... OK Loading Kernel Image ... OK OK Starting kernel ... Uncompressing Linux... done, booting the kernel. Booting Linux on physical CPU 0 Initializing cgroup subsys cpuset Initializing cgroup subsys cpu Linux version 3.2.40 (root@build-vm) (gcc version 4.6.4 20120731 (prerelease) (Linaro GCC branch-4.6.4. Marvell GCC 201301-1645.aee66e26) ) #1 SMP Fri Jun 20 14 :49:46 PDT 2014 CPU: Marvell PJ4Bv7 Processor [562f5842] revision 2 (ARMv7), cr=10c53c7d CPU: PIPT / VIPT nonaliasing data cache, PIPT instruction cache Machine: Marvell Armada XP GP Board Using UBoot passing parameters structure Reserving training memory: base=0x (null) size=0x2800 Memory policy: ECC disabled, Data cache writealloc SMP: init cpus PERCPU: Embedded 7 pages/cpu @c09c7000 s6944 r8192 d13536 u32768 Built 1 zonelists in Zone order, mobility grouping on. Total pages: 65024 Kernel command line: console=ttyS0,115200 mtdparts=armada-nand:1024K(uboot)ro,256K(u_env),256K(s_env),1m@9m(devinfo),40m@10m(kernel),37m@13m(rootfs),40m@50m(alt _kernel),37m@53m(alt_rootfs),80m@10m(ubifs),-@90m(syscfg) root=/dev/mtdblock5 ro rootfstype=jffs2 init=/sbin/init PID hash table entries: 1024 (order: 0, 4096 bytes) Dentry cache hash table entries: 32768 (order: 5, 131072 bytes) Inode-cache hash table entries: 16384 (order: 4, 65536 bytes) allocated 1048576 bytes of page_cgroup please try 'cgroup_disable=memory' option if you don't want memory cgroups Memory: 256MB = 256MB total Memory: 250768k/250768k available, 11376k reserved, 0K highmem Virtual kernel memory layout: vector : 0xffff0000 - 0xffff1000 ( 4 kB) fixmap : 0xfff00000 - 0xfffe0000 ( 896 kB) vmalloc : 0xd0800000 - 0xfa800000 ( 672 MB) lowmem : 0xc0000000 - 0xd0000000 ( 256 MB) pkmap : 0xbfe00000 - 0xc0000000 ( 2 MB) modules : 0xbf000000 - 0xbfe00000 ( 14 MB) .text : 0xc0008000 - 0xc06fcf4c (7124 kB) .init : 0xc06fd000 - 0xc0733b20 ( 219 kB) .data : 0xc0734000 - 0xc076fb80 ( 239 kB) .bss : 0xc076fba4 - 0xc07c3f28 ( 337 kB) Hierarchical RCU implementation. RCU debugfs-based tracing is enabled. NR_IRQS:211 Initializing ArmadaXP SOC Timer 0 sched_clock: 32 bits at 25MHz, resolution 40ns, wraps every 171798ms Calibrating delay loop... 1191.11 BogoMIPS (lpj=5955584) pid_max: default: 32768 minimum: 301 Mount-cache hash table entries: 512 Initializing cgroup subsys debug Initializing cgroup subsys cpuacct Initializing cgroup subsys memory Initializing cgroup subsys devices Initializing cgroup subsys freezer Initializing cgroup subsys blkio CPU: Testing write buffer coherency: ok CPU0: thread -1, cpu 0, socket 0, mpidr 80000000 SMP: prepare CPUs (4 cores) Setting Clocks for secondary CPUs Armada-XP Performance Monitor Unit detected (Marvell ID)!!! hw perfevents: enabled with Armada PJ4 PMU driver, 7 counters available SMP: CPU 0 Waking up CPU 1 CPU1: Booted secondary processor CPU1: thread -1, cpu 1, socket 0, mpidr 80000001 Brought up 2 CPUs SMP: Total of 2 processors activated (2382.23 BogoMIPS). devtmpfs: initialized xor: measuring software checksum speed arm4regs : 1159.600 MB/sec 8regs : 864.800 MB/sec 32regs : 1066.000 MB/sec xor: using function: arm4regs (1159.600 MB/sec) NET: Registered protocol family 16 Aurora: Working in ARMv7 mode L0 cache Enabled Speculative Prefetch Disabled Aurora L2 Cache Enabled Support IO coherency. Marvell Armada-XP RD-AXP-GP rev 1.0 Board - Soc: MV78230 B0 LE Detected Tclk 250000000, SysClk 600000000, FabricClk 600000000, PClk 1200000000 LSP version: linux-3.2.y-2013_Q1.2p2 - WIFI_RD RC registered dev#0 asa ehci_marvell Marvell USB EHCI Host controller #0: cf8b4a00 registered dev#1 asa ehci_marvell Marvell USB EHCI Host controller #1: cf8b4800 registered dev#2 asa mv_udc Marvell USB Gadget controller #2: cf8b4600 bio: create slab <bio-0> at 0 raid6: int32x1 137 MB/s raid6: int32x2 211 MB/s raid6: int32x4 208 MB/s raid6: int32x8 243 MB/s raid6: using algorithm int32x8 (243 MB/s) vgaarb: loaded SCSI subsystem initialized usbcore: registered new interface driver usbfs usbcore: registered new interface driver hub usbcore: registered new interface driver ethub usbcore: registered new device driver usb Sangoma WANPIPE Router v1.1 (c) 1995-2000 Sangoma Technologies Inc. Switching to clocksource axp_clocksource NET: Registered protocol family 2 IP route cache hash table entries: 2048 (order: 1, 8192 bytes) TCP established hash table entries: 8192 (order: 4, 65536 bytes) TCP bind hash table entries: 8192 (order: 4, 65536 bytes) TCP: Hash tables configured (established 8192 bind 8192) TCP reno registered UDP hash table entries: 128 (order: 0, 4096 bytes) UDP-Lite hash table entries: 128 (order: 0, 4096 bytes) NET: Registered protocol family 1 RPC: Registered named UNIX socket transport module. RPC: Registered udp transport module. RPC: Registered tcp transport module. RPC: Registered tcp NFSv4.1 backchannel transport module. PCI-E: Cheking physical bus #0 (controller #0): Enabled - Link UP PCI-E: Cheking physical bus #1 (controller #1): Enabled - Link UP PCI-E: Cheking physical bus #2 (controller #2): Enabled - Link UP PCI-E: Cheking physical bus #3 (controller #3): Enabled - No Link PCI-E: Cheking physical bus #4 (controller #4): Enabled - No Link PCI-E: Cheking physical bus #5 (controller #5): Enabled - No Link PCI-E: Cheking physical bus #6 (controller #6): Enabled - No Link PCI: bus0: Fast back to back transfers disabled PCI: bus1: Fast back to back transfers disabled PCI: bus2: Fast back to back transfers disabled pci 0000:02:00.0: BAR 0: assigned [mem 0xf2400000-0xf24fffff 64bit pref] pci 0000:02:00.0: BAR 0: set to [mem 0xf2400000-0xf24fffff 64bit pref] (PCI address [0xf2400000-0xf24fffff]) pci 0000:02:00.0: BAR 2: assigned [mem 0xf2500000-0xf25fffff 64bit pref] pci 0000:02:00.0: BAR 2: set to [mem 0xf2500000-0xf25fffff 64bit pref] (PCI address [0xf2500000-0xf25fffff]) pci 0000:01:00.0: BAR 0: assigned [mem 0xf2200000-0xf22fffff 64bit pref] pci 0000:01:00.0: BAR 0: set to [mem 0xf2200000-0xf22fffff 64bit pref] (PCI address [0xf2200000-0xf22fffff]) pci 0000:01:00.0: BAR 2: assigned [mem 0xf2300000-0xf23fffff 64bit pref] pci 0000:01:00.0: BAR 2: set to [mem 0xf2300000-0xf23fffff 64bit pref] (PCI address [0xf2300000-0xf23fffff]) pci 0000:00:00.0: BAR 0: assigned [mem 0xf2000000-0xf2007fff 64bit] pci 0000:00:00.0: BAR 0: set to [mem 0xf2000000-0xf2007fff 64bit] (PCI address [0xf2000000-0xf2007fff]) cesadev_init(c0704a94) mvCesaInit: channels=2, session=640, queue=64 Armada XP hwmon thermal sensor initialized. ArmadaXP Power Managament Suspend Operations Initialized Initializing Armada-XP CPU power management (WFI) squashfs: version 4.0 (2009/01/31) Phillip Lougher nfs4filelayout_init: NFSv4 File Layout Driver Registering... JFFS2 version 2.2. (NAND) B) 2001-2006 Red Hat, Inc. SGI XFS with security attributes, large block/inode numbers, no debug enabled msgmni has been set to 489 async_tx: api initialized (async) io scheduler noop registered io scheduler deadline registered io scheduler cfq registered (default) Initializing ths8200_init mv_xor_shared mv_xor_shared.0: Marvell shared XOR driver mv_xor_shared mv_xor_shared.1: Marvell shared XOR driver mv_xor mv_xor.0: Marvell XOR: ( xor cpy ) mv_xor mv_xor.1: Marvell XOR: ( xor fill cpy ) mv_xor mv_xor.2: Marvell XOR: ( xor ) mv_xor mv_xor.3: Marvell XOR: ( fill cpy ) HDLC line discipline maxframe=4096 N_HDLC line discipline registered. Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled serial8250.0: ttyS0 at MMIO 0xf1012000 (irq = 41) is a 16550A console [ttyS0] enabled loop: module loaded sata_mv sata_mv.0: cannot get clkdev sata_mv sata_mv.0: slots 32 ports 2 scsi0 : sata_mv scsi1 : sata_mv ata1: SATA max UDMA/133 irq 55 ata2: SATA max UDMA/133 irq 55 INFO: Found cfi_flash_0 0 - base 0xf4000000, size 0x2000000, bus 2 INFO: Found spi_flash 0 - base 0xf6000000, size 0x1000000 INFO: flashInfoFill - Found 2 Flash Devices INFO: flash_map_init - detected 2 devices MTD: Initialize the cfi_flash_0 device at address 0xf4000000 INFO: Io remapped successfully - phy addr = 0xf4000000, virt addr = 0xd1000000 INFO: Using cfi_probe to probe cfi_flash_0 at address 0xf4000000, size 0x2000000, width 2m - Not detected - FAILED! MTD: Initialize the spi_flash device at address 0xf6000000 INFO: Io remapped successfully - phy addr = 0xf6000000, virt addr = 0xd4000000 INFO: Using sflash to probe spi_flash at address 0xf6000000, size 0x1000000, width 2mmvSFlashInit ERROR: Unknown SPI flash device! ERROR: sflash_probe - Failed to initialize the SFlash. - Not detected - FAILED! armada-nand armada-nand.0: Initialize HAL based NFC in 8bit mode with DMA Disabled using BCH 4bit ECC NAND Spansion 1Gb(ID=F101) NAND device: Manufacturer ID: 0x01, Chip ID: 0xf1 (AMD NAND 128MiB 3,3V 8-bit) Bad block table found at page 65472, version 0x01 Bad block table found at page 65408, version 0x01 nand_read_bbt: bad block at 0x000001ca0000 10 cmdlinepart partitions found on MTD device armada-nand 10 cmdlinepart partitions found on MTD device armada-nand Creating 10 MTD partitions on "armada-nand": 0x000000000000-0x000000100000 : "uboot" 0x000000100000-0x000000140000 : "u_env" 0x000000140000-0x000000180000 : "s_env" 0x000000900000-0x000000a00000 : "devinfo" 0x000000a00000-0x000003200000 : "kernel" 0x000000d00000-0x000003200000 : "rootfs" 0x000003200000-0x000005a00000 : "alt_kernel" 0x000003500000-0x000005a00000 : "alt_rootfs" 0x000000a00000-0x000005a00000 : "ubifs" 0x000005a00000-0x000008000000 : "syscfg" mv_eth_probe: port_mask=0xf, cpu_mask=0x3 mvPncVirtBase = 0xd0a00000 o 4 Giga ports supported o SKB recycle supported (Enabled) o NETA acceleration mode 3 o PnC supported (Enabled) o RX Queue support: 8 Queues * 128 Descriptors o TX Queue support: 8 Queues * 532 Descriptors o GSO supported o GRO supported o Receive checksum offload supported o Transmit checksum offload supported o Driver ERROR statistics enabled o Loading Switch QuarterDeck driver o Device ID : 0x172 o No. of Ports : 7 o CPU Port : 5 o Loading network interface(s) o Port 0 is connected to Linux netdevice giga p=0: mtu=1500, mac=cf833eec o eth0, ifindex = 2, GbE port = 0 o Port 1 is connected to Linux netdevice giga p=1: mtu=1500, mac=cf833eec o eth1, ifindex = 3, GbE port = 1 o Warning: GbE port 2 is powered off tun: Universal TUN/TAP device driver, 1.6 tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com> e100: Intel(R) PRO/100 Network Driver, 3.5.24-k2-NAPI e100: Copyright(c) 1999-2006 Intel Corporation e1000e: Intel(R) PRO/1000 Network Driver - 1.5.1-k e1000e: Copyright(c) 1999 - 2011 Intel Corporation. sky2: driver version 1.30 PPP generic driver version 2.4.2 PPP BSD Compression module registered PPP Deflate Compression module registered NET: Registered protocol family 24 PPTP driver version 0.8.5 ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver ehci_marvell ehci_marvell.0: Marvell Orion EHCI ehci_marvell ehci_marvell.0: new USB bus registered, assigned bus number 1 ata1: SATA link down (SStatus 0 SControl F300) ehci_marvell ehci_marvell.0: irq 45, io base 0xfbc50100 ehci_marvell ehci_marvell.0: USB 2.0 started, EHCI 1.00 hub 1-0:1.0: USB hub found hub 1-0:1.0: 1 port detected ehci_marvell ehci_marvell.1: Marvell Orion EHCI ehci_marvell ehci_marvell.1: new USB bus registered, assigned bus number 2 ehci_marvell ehci_marvell.1: irq 46, io base 0xfbc51100 ehci_marvell ehci_marvell.1: USB 2.0 started, EHCI 1.00 hub 2-0:1.0: USB hub found hub 2-0:1.0: 1 port detected PCI: enabling device 0000:00:00.0 (0140 -> 0142) etxhci_hcd_130530 0000:00:00.0: Etron xHCI Host Controller etxhci_hcd_130530 0000:00:00.0: new USB bus registered, assigned bus number 3 etxhci_hcd_130530 0000:00:00.0: irq 58, io mem 0xf2000000 ethub 3-0:1.0: USB hub found ethub 3-0:1.0: 2 ports detected etxhci_hcd_130530 0000:00:00.0: Etron xHCI Host Controller etxhci_hcd_130530 0000:00:00.0: new USB bus registered, assigned bus number 4 ethub 4-0:1.0: USB hub found ethub 4-0:1.0: 2 ports detected mousedev: PS/2 mouse device common for all mice ata2: SATA link down (SStatus 0 SControl F300) rtc-mv rtc-mv: internal RTC not ticking i2c /dev entries driver md: linear personality registered for level -1 md: raid0 personality registered for level 0 md: raid1 personality registered for level 1 md: raid10 personality registered for level 10 md: raid6 personality registered for level 6 md: raid5 personality registered for level 5 md: raid4 personality registered for level 4 cpuidle: using governor ladder cpuidle: using governor menu mmc0: mvsdio driver initialized, lacking card detect (fall back to polling) oprofile: using arm/mrvl_pj4b u32 classifier Netfilter messages via NETLINK v0.30. nf_conntrack version 0.5.0 (3918 buckets, 15672 max) ctnetlink v0.93: registering with nfnetlink. nf_conntrack_rtsp v0.6.21 loading GRE over IPv4 demultiplexor driver GRE over IPv4 tunneling driver nf_nat_rtsp v0.6.21 loading ip_tables: (C) 2000-2006 Netfilter Core Team arp_tables: (C) 2002 David S. Miller TCP cubic registered NET: Registered protocol family 10 ip6_tables: (C) 2000-2006 Netfilter Core Team IPv6 over IPv4 tunneling driver NET: Registered protocol family 17 Bridge firewalling registered Ebtables v2.0 registered L2TP core driver, V2.0 PPPoL2TP kernel driver, V2.0 8021q: 802.1Q VLAN Support v1.8 Registering the dns_resolver key type VFP support v0.3: implementor 56 architecture 2 part 20 variant 9 rev 6 drivers/rtc/hctosys.c: unable to open rtc device (rtc0) md: Waiting for all devices to be available before autodetect md: If you don't use raid, use raid=noautodetect md: Autodetecting RAID arrays. md: Scanned 0 and added 0 devices. md: autorun ... md: ... autorun DONE. jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00000000: 0x43e4 instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00000004: 0x6723 instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00000008: 0xe316 instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0000000c: 0x0c38 instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00000010: 0xf54b instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00000014: 0x79d2 instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00000018: 0x9261 instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0000001c: 0xd368 instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00000020: 0x1879 instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00000024: 0xcacb instead Further such events for this erase block will not be printed Old JFFS2 bitmask found at 0x000052bc You cannot use older JFFS2 filesystems with newer kernels jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00020000: 0x9780 instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00020004: 0x9cba instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00020008: 0xba9f instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0002000c: 0x1856 instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00020010: 0x4657 instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00020014: 0x9ea2 instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00020018: 0xf1fa instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0002001c: 0x0856 instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00020020: 0xf16e instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00020024: 0xf34d instead Further such events for this erase block will not be printed jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00040000: 0x7bc9 instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00040004: 0x2b77 instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00040008: 0x0a1d instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0004000c: 0x3013 instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00040010: 0x62ae instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00040014: 0x789b instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00040018: 0x46c8 instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0004001c: 0xd4fa instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00040020: 0xe3f5 instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00040024: 0xb870 instead Further such events for this erase block will not be printed jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00060000: 0xd224 instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00060004: 0xff7c instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00060008: 0xe6b4 instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0006000c: 0x1c3e instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00060010: 0x87c9 instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00060014: 0xff53 instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00060018: 0x1f3f instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0006001c: 0xbbbb instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00060020: 0x9fc7 instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00060024: 0xf28f instead Further such events for this erase block will not be printed jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00080000: 0x5721 instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00080004: 0xbfd6 instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00080008: 0x3d7e instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0008000c: 0xfbaa instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00080010: 0xcf91 instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00080014: 0xbbe0 instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00080018: 0xceeb instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0008001c: 0x75cb instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00080020: 0xbfd7 instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00080024: 0xa7e8 instead Further such events for this erase block will not be printed jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x000a0000: 0x9ba6 instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x000a0004: 0x42aa instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x000a0008: 0x599a instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x000a000c: 0x1038 instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x000a0010: 0xff8f instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x000a0014: 0x2cd4 instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x000a0018: 0xa950 instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x000a001c: 0xfc7f instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x000a0020: 0x6665 instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x000a0024: 0xbf48 instead Further such events for this erase block will not be printed jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01600000: 0x4c2e instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01600004: 0x534b instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01600008: 0x302e instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0160000c: 0x3030 instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01600010: 0x5741 instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01600014: 0x3931 instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01600018: 0x4341 instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0160001c: 0x2020 instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01600020: 0x3246 instead jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01600024: 0x3435 instead Further such events for this erase block will not be printed VFS: Mounted root (jffs2 filesystem) readonly on device 31:5. devtmpfs: mounted Freeing init memory: 216K ********************************************************************************* _ _ __ _ __ _____ __ __ _____ | | | || \ | | / // ____]\ \ / // ____]TM | | | || \ | | / /| (___ \ V /| (____ | | | || |\ \| |\ \ \____ \ \ / \____ \ | |_____ | || | \ | \ \ ____) | | | ____) | |_______||_||_| \__| \_\[____ / |_| [_____/ (c) 2013 Belkin International, Inc. and/or its affiliates. All rights reserved. Booting blk-mamba (firmware version 1.1.8.161917) ********************************************************************************* [utopia][init] System Initialization [utopia][init] Creating /proc [utopia][init] Creating /sys [utopia][init] Creating /dev [utopia][init] Creating /tmp [utopia][init] Allocating 50M for /tmp [utopia][init] Prepairing /dev/pts [utopia][init] Setting /tmp and /var permissions [utopia][init] Starting udev.. bdutil board utility kernel module, version 1.4 bdutil board utility kernel module boardId (9) bdutil board utility gpio kernel module, version 1.3 bdutil board utility buttons kernel module, version 1.4 bdutil board utility LEDs kernel module, version 2.5 mod_bdutil (leds): i2c-dev (0) LEDs driver initialized Attempting mount of ubifs syscfg partition UBI device number 0, total 296 LEBs (37584896 bytes, 35.8 MiB), available 0 LEBs (0 bytes), LEB size 126976 bytes (124.0 KiB) [utopia][init] Using persistent syscfg data from /var/config/syscfg [utopia][init] Starting system logging [utopia][init] Starting sysevent subsystem net.netfilter.nf_conntrack_acct = 1 watchdog running [utopia][init] Setting any unset system values to default [utopia][init] no persistence config file (/var/config/pstcfg) found mac_setup.sh, setting up MAC addresses for all interfaces based on 94:10:3E:9F:CE:4B Updating NTP Servers if necessary checking for interactive script start up... 0x9000000 0x1000000 0xa000000 0x1000000 0xb000000 0x1000000 0xc000000 0x1000000 0xd000000 0x1000000 0xe000000 0x1000000 0xf000000 0x1000000 0x10000000 0x1000000 0x11000000 0x1000000 0x12000000 0x1000000 0x13000000 0x1000000 0x14000000 0x1000000 0x15000000 0x1000000 0x16000000 0x1000000 0x17000000 0x1000000 Updating BootCount Page[43]:15800 ... Done [utopia][init] Starting bdutil daemon BDUTIL daemon mode attempting to sync sysinfo.cgi auth credentials cpu temp monitor created Thu Oct 11 06:00:00 UTC 2012 wdev0 no private ioctls. wdev1 no private ioctls. 0x21010000 0x1000000 0x3c010000 0x1000000 wdev0ap0 no private ioctls. wdev0ap1 no private ioctls. wdev0ap2 no private ioctls. wdev0ap3 no private ioctls. wdev1ap0 no private ioctls. wdev1ap1 no private ioctls. wdev1ap2 no private ioctls. 0x3d010000 0x1000000 wifi, sysevent received: lan-started (Wed Oct 10 23:00:03 PDT 2012) wifi, service_start() Lighttpd Model Base: WRT1900AC Generating Rainier lighttpd config Build temporary www configuration directory: TSLIIHauhEfGE reset LAN ethernet port Failed to modify password entry for user guest Registering Service myrouter._http._tcp.local port 80 [utopia] Not setting ppp_clamp_mtu Got a reply for myrouter._http._tcp.local.: Name now registered and active wifi, wifi_physical_start(wdev0) [utopia] Not setting ppp_clamp_mtu on dslite protocol wifi_physical, iwconfig wdev0 commit Restarting nfqrecv service... wifi, wifi_virtual_start(wdev0) wifi, wifi_user_start(wdev0) wifi, primary AP: wdev0ap0 is up wifi, wifi_guest_start(wdev0) wifi, guest wdev0ap1 is disabled, do not start wifi guest wifi, wifi_physical_start(wdev1) wifi_physical, iwconfig wdev1 commit wifi, wifi_virtual_start(wdev1) wifi, wifi_user_start(wdev1) wifi, primary AP: wdev1ap0 is up wifi, wifi_guest_start(wdev1) wifi, guest wdev1ap1 is disabled, do not start wifi guest wifi, start_hostapd() Configuration file: /tmp/hostapd-wdev0ap0.conf Using interface wdev0ap0 with hwaddr 94:10:3e:9f:ce:4c and ssid 'Linksys01799' Configuration file: /tmp/hostapd-wdev1ap0.conf Using interface wdev1ap0 with hwaddr 94:10:3e:9f:ce:4d and ssid 'Linksys01799_5GHz' Failed to modify password entry for user guest Failed to modify password entry for user guest Starting smbd ...


BootROM 1.20 Booting from NAND flash Step 1: First phase of PEX-PIPE Configuration Step 2: Configure the desire PIN_PHY_GEN Step 3 QSGMII enable Step 4: Configure SERDES MUXes Step 5: Activate the RX High Impedance Mode Step 6: [PEX-Only] PEX-Main configuration (X4 or X1) Step 6.2: [PEX-Only] PCI Express Link Capabilities Step 7: [PEX-X4 Only] To create PEX-Link Steps 7,8,9,10 and 11 Steps 12: [PEX-Only] Last phase of PEX-PIPE Configuration Steps 13: Wait 15ms before checking results Steps 14: [PEX-Only] In order to configure Steps 15: [PEX-Only] In order to configure Steps 16: [PEX-Only] Training Enablestep 17: max_if= 0x7 step 17: PEX0 pexUnit= 0 ** Link is Gen1, check the EP capability --> 0050 mvPexConfigRead: return addr=0x%x0050 --> 7001 --> 7001 --> A005 --> A005 --> 0010 --> 4C12 Gen2 client! step 17: PEX1 pexUnit= 0 step 17: PEX2 pexUnit= 0 ** Link is Gen1, check the EP capability --> 0040 mvPexConfigRead: return addr=0x%x0040 --> 5001 --> 5001 --> 7005 --> 7005 --> 0010 --> DC12 Gen2 client! step 17: PEX3 pexUnit= 0 PEX3 : Detected No Link. Status Reg(0x0004DA64) = 0x00000001 step 17: PEX4 pexUnit= 1 PEX4 : Detected No Link. Status Reg(0x00081A64) = 0x00000001 step 17: PEX5 pexUnit= 1 PEX5 : Detected No Link. Status Reg(0x00085A64) = 0x00000001 step 17: PEX6 pexUnit= 1 PEX6 : Detected No Link. Status Reg(0x00089A64) = 0x00000001 DDR3 Training Sequence - Ver 4.5.DDR3 Training Sequence - Static MC Init DDR3 Training Sequence - HW Training Procedure DDR3 Training Sequence - Switching XBAR Window to FastPath Window BootROM: Image checksum verification PASSED __ __ _ _ | \/ | __ _ _ ____ _____| | | | |\/| |/ _` | '__\ \ / / _ \ | | | | | | (_| | | \ V / __/ | | |_| |_|\__,_|_| \_/ \___|_|_| _ _ ____ _ | | | | | __ ) ___ ___ | |_ | | | |___| _ \ / _ \ / _ \| __| | |_| |___| |_) | (_) | (_) | |_ \___/ |____/ \___/ \___/ \__| ** LOADER ** U-Boot 2011.12 (Feb 06 2014 - 17:14:13) Marvell version: v2011.12 2013_Q1.2 Boot version:v1.3.25 Board: RD-AXP-GP rev 1.0 SoC: MV78230 B0 running 2 CPUs Custom configuration CPU: Marvell PJ4B (584) v7 (Rev 2) LE CPU 0 CPU @ 1200 [MHz] L2 @ 600 [MHz] TClock @ 250 [MHz] DDR @ 600 [MHz] DDR 32Bit Width, FastPath Memory Access DDR ECC Disabled DRAM: 256 MiB Map: Code:0x0fea7000:0x0ff5e2d4 BSS:0x0ffefd80 Stack:0x0f9a6ef8 Heap:0x0f9a7000:0x0fea7000 NAND: Spansion 1Gb(ID=F101) 128 MiB MMC: MRVL_MMC: 0 Bad block table found at page 65472, version 0x01 Bad block table found at page 65408, version 0x01 #### auto_recovery #### [u_env] get auto_recovery == off [u_env] get auto_recovery == off [u_env] get boot_part == 1 [u_env] get boot_part_ready == 3 auto_recovery enabled:0, boot_part:1, boot_part_ready:3 PEX 0.0(0): Root Complex Interface, Detected Link X1, GEN 2.0 PEX 0.1(1): Root Complex Interface, Detected Link X1, GEN 1.1 PEX 0.2(2): Root Complex Interface, Detected Link X1, GEN 2.0 PEX 0.3(3): Detected No Link. PEX 1.0(4): Detected No Link. PEX 1.1(5): Detected No Link. PEX 1.2(6): Detected No Link. boot_end Offset: 0x100000 u_env_off Offset: 0x100000 s_env_off Offset: 0x140000 devinfo Offset: 0x900000 =================== total_badCount: 0 boot_badCount: 0 u_env_badCount: 0 s_env_badCount: 0 buff_badCount: 0 =================== FPU initialized to Run Fast Mode. USB 0: Host Mode USB 1: Host Mode USB 2: Device Mode Modules Detected: mvEthE6171SwitchBasicInit finished Net: mvSysNetaInit enter set port 0 to rgmii enter set port 1 to rgmii enter egiga0 [PRIME], egiga1 modify Phy Status auto_recovery_check changes bootcmd: run nandboot Hit any key to stop autoboot: 3 2 1 0 NAND read: device 0 offset 0xa00000, size 0x400000 4194304 bytes read: OK ## Booting kernel from Legacy Image at 02000000 ... Image Name: ARM OpenWrt Linux-3.18.14 Created: 2015-06-08 16:58:30 UTC Image Type: ARM Linux Kernel Image (uncompressed) Data Size: 1618369 Bytes = 1.5 MiB Load Address: 00008000 Entry Point: 00008000 Verifying Checksum ... OK Loading Kernel Image ... OK OK Starting kernel ... Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.000000] Booting Linux on physical CPU 0x0 Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 0.000000] Linux version 4.4.14 (jeff@jeff-VM) (gcc version 5.3.0 (LEDE GCC 5.3.0 r918) ) #1 SMP Sun Jul 10 16:13:35 UTC 2016 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.000000] CPU: ARMv7 Processor [562f5842] revision 2 (ARMv7), cr=10c5387d Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.000000] CPU: PIPT / VIPT nonaliasing data cache, PIPT instruction cache Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.000000] Machine model: Linksys WRT1900AC Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.000000] Memory policy: Data cache writealloc Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 0.000000] On node 0 totalpages: 65536 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 0.000000] free_area_init_node: node 0, pgdat c05c5ec0, node_mem_map cfdf9000 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 0.000000] Normal zone: 512 pages used for memmap Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 0.000000] Normal zone: 0 pages reserved Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 0.000000] Normal zone: 65536 pages, LIFO batch:15 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.000000] PERCPU: Embedded 12 pages/cpu @cfdd1000 s17984 r8192 d22976 u49152 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 0.000000] pcpu-alloc: s17984 r8192 d22976 u49152 alloc=12*4096 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 0.000000] pcpu-alloc: [0] 0 [0] 1 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 65024 Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 0.000000] Kernel command line: console=ttyS0,115200 mtdparts=armada-nand:1024K(uboot)ro,256K(u_env),256K(s_env),1m@9m(devinfo),40m@10m(kernel),37m@13m(rootfs),40m@50m(alt_kernel),37m@53m(alt_rootfs),80m@10m(ubifs),-@90m(syscfg) root=/dev/mtdblock7 ro rootfstype=jffs2 init=/sbin/init Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.000000] PID hash table entries: 1024 (order: 0, 4096 bytes) Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.000000] Dentry cache hash table entries: 32768 (order: 5, 131072 bytes) Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.000000] Inode-cache hash table entries: 16384 (order: 4, 65536 bytes) Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.000000] Memory: 253348K/262144K available (4067K kernel code, 171K rwdata, 1524K rodata, 260K init, 295K bss, 8796K reserved, 0K cma-reserved, 0K highmem) Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 0.000000] Virtual kernel memory layout: Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 0.000000] vector : 0xffff0000 - 0xffff1000 ( 4 kB) Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 0.000000] fixmap : 0xffc00000 - 0xfff00000 (3072 kB) Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 0.000000] vmalloc : 0xd0800000 - 0xff800000 ( 752 MB) Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 0.000000] lowmem : 0xc0000000 - 0xd0000000 ( 256 MB) Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 0.000000] pkmap : 0xbfe00000 - 0xc0000000 ( 2 MB) Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 0.000000] modules : 0xbf000000 - 0xbfe00000 ( 14 MB) Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 0.000000] .text : 0xc0008000 - 0xc057e088 (5593 kB) Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 0.000000] .init : 0xc057f000 - 0xc05c0000 ( 260 kB) Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 0.000000] .data : 0xc05c0000 - 0xc05eae34 ( 172 kB) Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 0.000000] .bss : 0xc05eae34 - 0xc0634a6c ( 296 kB) Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.000000] Hierarchical RCU implementation. Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.000000] RCU restricting CPUs from NR_CPUS=4 to nr_cpu_ids=2. Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.000000] NR_IRQS:16 nr_irqs:16 16 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.000000] Aurora cache controller enabled, 32 ways, 2048 kB Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.000000] Aurora: CACHE_ID 0x00000100, AUX_CTRL 0x1a69ef12 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.000000] Switching to timer-based delay loop, resolution 40ns Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.000005] sched_clock: 32 bits at 25MHz, resolution 40ns, wraps every 85899345900ns Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.000017] clocksource: armada_370_xp_clocksource: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 76450417870 ns Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.000196] Calibrating delay loop (skipped), value calculated using timer frequency.. 50.00 BogoMIPS (lpj=250000) Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.000208] pid_max: default: 32768 minimum: 301 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.000270] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes) Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.000279] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes) Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.000565] CPU: Testing write buffer coherency: ok Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.000727] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.000881] Setting up static identity map for 0x8280 - 0x82d8 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.001145] mvebu-soc-id: MVEBU SoC ID=0x7823, Rev=0x2 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.001266] mvebu-pmsu: Initializing Power Management Service Unit Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.002009] Booting CPU 1 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.004351] CPU1: thread -1, cpu 1, socket 0, mpidr 80000001 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.004409] Brought up 2 CPUs Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.004420] SMP: Total of 2 processors activated (100.00 BogoMIPS). Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.004425] CPU: All CPU(s) started in SVC mode. Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.007509] VFP support v0.3: implementor 56 architecture 2 part 20 variant 9 rev 6 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.007639] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.007705] pinctrl core: initialized pinctrl subsystem Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.008235] NET: Registered protocol family 16 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.008445] DMA: preallocated 256 KiB pool for atomic coherent allocations Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.030098] cpuidle: using governor ladder Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 0.061177] SCSI subsystem initialized Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 0.061313] libata version 3.00 loaded. Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.061529] usbcore: registered new interface driver usbfs Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.061577] usbcore: registered new interface driver hub Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.061622] usbcore: registered new device driver usb Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.062395] clocksource: Switched to clocksource armada_370_xp_clocksource Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.063090] NET: Registered protocol family 2 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.063419] TCP established hash table entries: 2048 (order: 1, 8192 bytes) Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.063443] TCP bind hash table entries: 2048 (order: 2, 16384 bytes) Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.063465] TCP: Hash tables configured (established 2048 bind 2048) Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.063499] UDP hash table entries: 256 (order: 1, 8192 bytes) Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.063514] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes) Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.063620] NET: Registered protocol family 1 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 0.063656] PCI: CLS 0 bytes, default 64 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.064413] futex hash table entries: 512 (order: 3, 32768 bytes) Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.069733] squashfs: version 4.0 (2009/01/31) Phillip Lougher Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.069747] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc. Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.071089] io scheduler noop registered Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.071102] io scheduler deadline registered (default) Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.071686] armada-xp-pinctrl f1018000.pin-ctrl: registered pinctrl driver Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.072161] irq: Cannot allocate irq_descs @ IRQ40, assuming pre-allocated Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.072518] irq: Cannot allocate irq_descs @ IRQ72, assuming pre-allocated Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.073013] mvebu-pcie soc:pcie-controller: PCI host bridge to bus 0000:00 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.073026] pci_bus 0000:00: root bus resource [io 0x1000-0xfffff] Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.073036] pci_bus 0000:00: root bus resource [mem 0xf8000000-0xffdfffff] Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.073045] pci_bus 0000:00: root bus resource [bus 00-ff] Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 0.073070] pci 0000:00:01.0: [11ab:7823] type 01 class 0x060400 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 0.073231] pci 0000:00:02.0: [11ab:7823] type 01 class 0x060400 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 0.073368] pci 0000:00:03.0: [11ab:7823] type 01 class 0x060400 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.073513] PCI: bus0: Fast back to back transfers disabled Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.073524] pci 0000:00:01.0: bridge configuration invalid ([bus 00-00]), reconfiguring Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.073536] pci 0000:00:02.0: bridge configuration invalid ([bus 00-00]), reconfiguring Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.073546] pci 0000:00:03.0: bridge configuration invalid ([bus 00-00]), reconfiguring Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 0.073645] pci 0000:01:00.0: [1b6f:7023] type 00 class 0x0c0330 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 0.073690] pci 0000:01:00.0: reg 0x10: [mem 0x00000000-0x00007fff 64bit] Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 0.073771] pci 0000:01:00.0: supports D1 D2 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 0.073780] pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.073896] PCI: bus1: Fast back to back transfers disabled Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 0.073909] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 0.074010] pci 0000:02:00.0: [11ab:2a55] type 00 class 0x020000 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 0.074054] pci 0000:02:00.0: reg 0x10: [mem 0x00000000-0x000fffff 64bit pref] Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 0.074074] pci 0000:02:00.0: reg 0x18: [mem 0x00000000-0x000fffff 64bit pref] Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 0.074154] pci 0000:02:00.0: supports D1 D2 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 0.074163] pci 0000:02:00.0: PME# supported from D0 D1 D3hot D3cold Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.074277] PCI: bus2: Fast back to back transfers disabled Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 0.074288] pci_bus 0000:02: busn_res: [bus 02-ff] end is updated to 02 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 0.074392] pci 0000:03:00.0: [11ab:2a55] type 00 class 0x020000 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 0.074431] pci 0000:03:00.0: reg 0x10: [mem 0x00000000-0x000fffff 64bit pref] Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 0.074449] pci 0000:03:00.0: reg 0x18: [mem 0x00000000-0x000fffff 64bit pref] Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 0.074519] pci 0000:03:00.0: supports D1 D2 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 0.074528] pci 0000:03:00.0: PME# supported from D0 D1 D3hot D3cold Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.074642] PCI: bus3: Fast back to back transfers disabled Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 0.074654] pci_bus 0000:03: busn_res: [bus 03-ff] end is updated to 03 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.074757] pci 0000:00:01.0: BAR 8: assigned [mem 0xf8000000-0xf80fffff] Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.074769] pci 0000:00:02.0: BAR 8: assigned [mem 0xf8200000-0xf83fffff] Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.074780] pci 0000:00:03.0: BAR 8: assigned [mem 0xf8400000-0xf85fffff] Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.074792] pci 0000:01:00.0: BAR 0: assigned [mem 0xf8000000-0xf8007fff 64bit] Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.074809] pci 0000:00:01.0: PCI bridge to [bus 01] Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.074820] pci 0000:00:01.0: bridge window [mem 0xf8000000-0xf80fffff] Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.074834] pci 0000:02:00.0: BAR 0: assigned [mem 0xf8200000-0xf82fffff 64bit pref] Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.074852] pci 0000:02:00.0: BAR 2: assigned [mem 0xf8300000-0xf83fffff 64bit pref] Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.074868] pci 0000:00:02.0: PCI bridge to [bus 02] Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.074877] pci 0000:00:02.0: bridge window [mem 0xf8200000-0xf83fffff] Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.074891] pci 0000:03:00.0: BAR 0: assigned [mem 0xf8400000-0xf84fffff 64bit pref] Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.074908] pci 0000:03:00.0: BAR 2: assigned [mem 0xf8500000-0xf85fffff 64bit pref] Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.074923] pci 0000:00:03.0: PCI bridge to [bus 03] Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.074932] pci 0000:00:03.0: bridge window [mem 0xf8400000-0xf85fffff] Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.074977] pci 0000:00:01.0: enabling device (0140 -> 0142) Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.075000] pci 0000:01:00.0: enabling device (0140 -> 0142) Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 0.075169] mv_xor f1060900.xor: Marvell shared XOR driver Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.113122] mv_xor f1060900.xor: Marvell XOR (Registers Mode): ( xor cpy intr ) Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 0.113237] mv_xor f10f0900.xor: Marvell shared XOR driver Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.153102] mv_xor f10f0900.xor: Marvell XOR (Registers Mode): ( xor cpy intr ) Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.153301] Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.153727] console [ttyS0] disabled Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.173848] f1012000.serial: ttyS0 at MMIO 0xf1012000 (irq = 20, base_baud = 15625000) is a 16550A Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.869960] console [ttyS0] enabled Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 0.874042] sata_mv f10a0000.sata: version 1.28 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.874157] sata_mv f10a0000.sata: slots 32 ports 1 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.879752] scsi host0: sata_mv Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.883075] ata1: SATA max UDMA/133 irq 29 Mon Jul 11 09:30:16 2016 kern.warn kernel: [ 0.887584] pxa3xx-nand f10d0000.nand: This platform can't do DMA on this device Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.895726] nand: device found, Manufacturer ID: 0x01, Chip ID: 0xf1 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.902098] nand: AMD/Spansion S34ML01G1 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.906054] nand: 128 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.913663] pxa3xx-nand f10d0000.nand: ECC strength 16, ECC step size 2048 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.920863] Bad block table found at page 65472, version 0x01 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.927176] Bad block table found at page 65408, version 0x01 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.933239] nand_read_bbt: bad block at 0x000006bc0000 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 0.938391] nand_read_bbt: bad block at 0x000006da0000 Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 0.943720] 10 ofpart partitions found on MTD device pxa3xx_nand-0 Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 0.949919] Creating 10 MTD partitions on "pxa3xx_nand-0": Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 0.955441] 0x000000000000-0x000000100000 : "u-boot" Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 0.961008] 0x000000100000-0x000000140000 : "u_env" Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 0.966461] 0x000000140000-0x000000180000 : "s_env" Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 0.971880] 0x000000900000-0x000000a00000 : "devinfo" Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 0.977502] 0x000000a00000-0x000003200000 : "kernel1" Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 0.983177] 0x000000d00000-0x000003200000 : "rootfs1" Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 0.988784] 0x000003200000-0x000005a00000 : "kernel2" Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 0.994426] 0x000003500000-0x000005a00000 : "ubi" Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 0.999683] 0x000005a00000-0x000008000000 : "syscfg" Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 1.005232] 0x000000180000-0x000000900000 : "unused_area" Mon Jul 11 09:30:16 2016 kern.info kernel: [ 1.011764] m25p80 spi0.0: mr25h256 (32 Kbytes) Mon Jul 11 09:30:16 2016 kern.info kernel: [ 1.017584] libphy: Fixed MDIO Bus: probed Mon Jul 11 09:30:16 2016 kern.info kernel: [ 1.021825] libphy: orion_mdio_bus: probed Mon Jul 11 09:30:16 2016 kern.info kernel: [ 1.026201] mvneta_bm f10c0000.bm: Buffer Manager for network controller enabled Mon Jul 11 09:30:16 2016 kern.info kernel: [ 1.036039] mvneta f1070000.ethernet eth0: Using random mac address 7e:02:b1:5e:91:27 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 1.045860] mvneta f1074000.ethernet eth1: Using random mac address 66:60:c9:69:50:78 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 1.053822] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver Mon Jul 11 09:30:16 2016 kern.info kernel: [ 1.060371] ehci-pci: EHCI PCI platform driver Mon Jul 11 09:30:16 2016 kern.info kernel: [ 1.064892] ehci-platform: EHCI generic platform driver Mon Jul 11 09:30:16 2016 kern.info kernel: [ 1.070259] ehci-orion: EHCI orion driver Mon Jul 11 09:30:16 2016 kern.info kernel: [ 1.074395] orion-ehci f1050000.usb: EHCI Host Controller Mon Jul 11 09:30:16 2016 kern.info kernel: [ 1.079826] orion-ehci f1050000.usb: new USB bus registered, assigned bus number 1 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 1.087497] orion-ehci f1050000.usb: irq 26, io mem 0xf1050000 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 1.112406] orion-ehci f1050000.usb: USB 2.0 started, EHCI 1.00 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 1.118779] hub 1-0:1.0: USB hub found Mon Jul 11 09:30:16 2016 kern.info kernel: [ 1.122590] hub 1-0:1.0: 1 port detected Mon Jul 11 09:30:16 2016 kern.info kernel: [ 1.126829] xhci_hcd 0000:01:00.0: xHCI Host Controller Mon Jul 11 09:30:16 2016 kern.info kernel: [ 1.132084] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 2 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 1.139650] xhci_hcd 0000:01:00.0: hcc params 0x040050af hci version 0x100 quirks 0x00080490 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 1.148595] hub 2-0:1.0: USB hub found Mon Jul 11 09:30:16 2016 kern.info kernel: [ 1.152404] hub 2-0:1.0: 2 ports detected Mon Jul 11 09:30:16 2016 kern.info kernel: [ 1.156625] xhci_hcd 0000:01:00.0: xHCI Host Controller Mon Jul 11 09:30:16 2016 kern.info kernel: [ 1.161876] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 3 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 1.169371] usb usb3: We don't know the algorithms for LPM for this host, disabling LPM. Mon Jul 11 09:30:16 2016 kern.info kernel: [ 1.177872] hub 3-0:1.0: USB hub found Mon Jul 11 09:30:16 2016 kern.info kernel: [ 1.181662] hub 3-0:1.0: 2 ports detected Mon Jul 11 09:30:16 2016 kern.info kernel: [ 1.186205] usbcore: registered new interface driver usb-storage Mon Jul 11 09:30:16 2016 kern.info kernel: [ 1.192535] i2c /dev entries driver Mon Jul 11 09:30:16 2016 kern.info kernel: [ 1.198150] orion_wdt: Initial timeout 171 sec Mon Jul 11 09:30:16 2016 kern.err kernel: [ 1.202838] cpu: dev_pm_opp_of_cpumask_add_table: couldn't find opp table for cpu:0, -19 Mon Jul 11 09:30:16 2016 kern.err kernel: [ 1.212433] cpu: dev_pm_opp_of_cpumask_add_table: couldn't find opp table for cpu:1, -19 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 1.225463] marvell-cesa f1090000.crypto: CESA device successfully registered Mon Jul 11 09:30:16 2016 kern.info kernel: [ 1.234237] NET: Registered protocol family 10 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 1.239848] NET: Registered protocol family 17 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 1.242485] ata1: SATA link down (SStatus 0 SControl F300) Mon Jul 11 09:30:16 2016 kern.info kernel: [ 1.249931] bridge: automatic filtering via arp/ip/ip6tables has been deprecated. Update your scripts to load br_netfilter if you need this. Mon Jul 11 09:30:16 2016 kern.info kernel: [ 1.262616] 8021q: 802.1Q VLAN Support v1.8 Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 1.266980] Registering SWP/SWPB emulation handler Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 1.273829] UBI: auto-attach mtd7 Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 1.276991] ubi0: attaching mtd7 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 1.442475] usb 1-1: new high-speed USB device number 2 using orion-ehci Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 1.484087] ubi0: scanning is finished Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 1.496908] ubi0: attached mtd7 (name "ubi", size 37 MiB) Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 1.502335] ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 1.509284] ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 1.516140] ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096 Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 1.523156] ubi0: good PEBs: 296, bad PEBs: 0, corrupted PEBs: 0 Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 1.529186] ubi0: user volume: 2, internal volumes: 1, max. volumes count: 128 Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 1.536466] ubi0: max/mean erase counter: 2/1, WL threshold: 4096, image sequence number: 1859740326 Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 1.545661] ubi0: available PEBs: 0, total reserved PEBs: 296, PEBs reserved for bad PEB handling: 20 Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 1.555031] ubi0: background thread "ubi_bgt0d" started, PID 552 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 1.555100] usb 3-2: new SuperSpeed USB device number 2 using xhci_hcd Mon Jul 11 09:30:16 2016 kern.info kernel: [ 1.556279] block ubiblock0_0: created from ubi0:0(rootfs) Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 1.556286] ubiblock: device ubiblock0_0 (rootfs) set to be root filesystem Mon Jul 11 09:30:16 2016 kern.info kernel: [ 1.556681] mvsw61xx 1000000003.mvsw61xx: Found MV88E6172 at f1072004.mdio-mi:10 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 1.556691] mvsw61xx 1000000003.mvsw61xx: Using direct addressing Mon Jul 11 09:30:16 2016 kern.info kernel: [ 1.556767] hctosys: unable to open rtc device (rtc0) Mon Jul 11 09:30:16 2016 kern.info kernel: [ 1.574721] usb-storage 3-2:1.0: USB Mass Storage device detected Mon Jul 11 09:30:16 2016 kern.info kernel: [ 1.582704] scsi host1: usb-storage 3-2:1.0 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 1.612263] VFS: Mounted root (squashfs filesystem) readonly on device 254:0. Mon Jul 11 09:30:16 2016 kern.info kernel: [ 1.619884] Freeing unused kernel memory: 260K (c057f000 - c05c0000) Mon Jul 11 09:30:16 2016 kern.info kernel: [ 1.702671] usb-storage 1-1:1.0: USB Mass Storage device detected Mon Jul 11 09:30:16 2016 kern.info kernel: [ 1.709259] scsi host2: usb-storage 1-1:1.0 Mon Jul 11 09:30:16 2016 user.info kernel: [ 2.079811] init: Console is alive Mon Jul 11 09:30:16 2016 user.info kernel: [ 2.083455] init: - watchdog - Mon Jul 11 09:30:16 2016 user.info kernel: [ 2.582237] init: - preinit - Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 2.583070] scsi 1:0:0:0: Direct-Access WD My Passport 0748 1016 PQ: 0 ANSI: 6 Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 2.584054] scsi 1:0:0:1: Enclosure WD SES Device 1016 PQ: 0 ANSI: 6 Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 2.602910] sd 1:0:0:0: [sda] 1953458176 512-byte logical blocks: (1.00 TB/931 GiB) Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 2.611882] sd 1:0:0:0: [sda] Write Protect is off Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 2.616809] sd 1:0:0:0: [sda] Mode Sense: 47 00 10 08 Mon Jul 11 09:30:16 2016 kern.err kernel: [ 2.617884] sd 1:0:0:0: [sda] No Caching mode page found Mon Jul 11 09:30:16 2016 kern.err kernel: [ 2.623287] sd 1:0:0:0: [sda] Assuming drive cache: write through Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 2.713888] scsi 2:0:0:0: Direct-Access CENTON DS Pro 0.00 PQ: 0 ANSI: 2 Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 2.725378] sd 2:0:0:0: [sdb] 3923968 512-byte logical blocks: (2.01 GB/1.87 GiB) Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 2.734034] sd 2:0:0:0: [sdb] Write Protect is off Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 2.738880] sd 2:0:0:0: [sdb] Mode Sense: 00 00 00 00 Mon Jul 11 09:30:16 2016 kern.err kernel: [ 2.739836] sd 2:0:0:0: [sdb] Asking for cache data failed Mon Jul 11 09:30:16 2016 kern.err kernel: [ 2.745424] sd 2:0:0:0: [sdb] Assuming drive cache: write through Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 2.802014] random: procd urandom read with 92 bits of entropy available Mon Jul 11 09:30:16 2016 kern.info kernel: [ 2.922747] sdb: sdb1 Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 2.928233] sd 2:0:0:0: [sdb] Attached SCSI removable disk Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 3.179680] random: nonblocking pool is initialized Mon Jul 11 09:30:16 2016 user.info kernel: [ 6.388274] mount_root: loading kmods from internal overlay Mon Jul 11 09:30:16 2016 kern.info kernel: [ 8.462093] sda: sda1 Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 8.470998] sd 1:0:0:0: [sda] Attached SCSI disk Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 8.490955] UBIFS (ubi0:1): background thread "ubifs_bgt0_1" started, PID 676 Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 8.544569] UBIFS (ubi0:1): recovery needed Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 8.634067] UBIFS (ubi0:1): recovery completed Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 8.638663] UBIFS (ubi0:1): UBIFS: mounted UBI device 0, volume 1, name "rootfs_data" Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 8.646588] UBIFS (ubi0:1): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 8.656594] UBIFS (ubi0:1): FS size: 25395200 bytes (24 MiB, 200 LEBs), journal size 1269760 bytes (1 MiB, 10 LEBs) Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 8.667116] UBIFS (ubi0:1): reserved for root: 1199478 bytes (1171 KiB) Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 8.673814] UBIFS (ubi0:1): media format: w4/r0 (latest is w4/r0), UUID CF921A3A-4382-4457-98B3-A8E608B4CDBE, small LPT model Mon Jul 11 09:30:16 2016 user.info kernel: [ 8.688780] block: attempting to load /tmp/ubifs_cfg/upper/etc/config/fstab Mon Jul 11 09:30:16 2016 user.info kernel: [ 8.702870] block: extroot: not configured Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 8.732782] UBIFS (ubi0:1): un-mount UBI device 0 Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 8.737546] UBIFS (ubi0:1): background thread "ubifs_bgt0_1" stops Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 8.748073] UBIFS (ubi0:1): background thread "ubifs_bgt0_1" started, PID 679 Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 8.829490] UBIFS (ubi0:1): UBIFS: mounted UBI device 0, volume 1, name "rootfs_data" Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 8.837427] UBIFS (ubi0:1): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 8.847433] UBIFS (ubi0:1): FS size: 25395200 bytes (24 MiB, 200 LEBs), journal size 1269760 bytes (1 MiB, 10 LEBs) Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 8.857956] UBIFS (ubi0:1): reserved for root: 1199478 bytes (1171 KiB) Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 8.864654] UBIFS (ubi0:1): media format: w4/r0 (latest is w4/r0), UUID CF921A3A-4382-4457-98B3-A8E608B4CDBE, small LPT model Mon Jul 11 09:30:16 2016 user.info kernel: [ 8.881077] mount_root: loading kmods from internal overlay Mon Jul 11 09:30:16 2016 user.info kernel: [ 9.181237] block: attempting to load /tmp/ubifs_cfg/upper/etc/config/fstab Mon Jul 11 09:30:16 2016 user.info kernel: [ 9.192733] block: extroot: not configured Mon Jul 11 09:30:16 2016 user.info kernel: [ 9.224332] mount_root: switching to jffs2 overlay Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 9.333212] ubi1: attaching mtd8 Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 9.558847] ubi1: scanning is finished Mon Jul 11 09:30:16 2016 kern.warn kernel: [ 9.571863] ubi1 warning: print_rsvd_warning: cannot reserve enough PEBs for bad PEB handling, reserved 2, need 10 Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 9.583332] ubi1: attached mtd8 (name "syscfg", size 38 MiB) Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 9.589023] ubi1: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 9.595996] ubi1: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 9.602866] ubi1: VID header offset: 2048 (aligned 2048), data offset: 4096 Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 9.609858] ubi1: good PEBs: 294, bad PEBs: 10, corrupted PEBs: 0 Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 9.616025] ubi1: user volume: 1, internal volumes: 1, max. volumes count: 128 Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 9.623328] ubi1: max/mean erase counter: 163/150, WL threshold: 4096, image sequence number: 1034175800 Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 9.632893] ubi1: available PEBs: 0, total reserved PEBs: 294, PEBs reserved for bad PEB handling: 2 Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 9.642095] ubi1: background thread "ubi_bgt1d" started, PID 691 Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 9.662251] UBIFS (ubi1:0): background thread "ubifs_bgt1_0" started, PID 695 Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 9.757234] UBIFS (ubi1:0): UBIFS: mounted UBI device 1, volume 0, name "syscfg" Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 9.764727] UBIFS (ubi1:0): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 9.774734] UBIFS (ubi1:0): FS size: 35426304 bytes (33 MiB, 279 LEBs), journal size 1777664 bytes (1 MiB, 14 LEBs) Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 9.785255] UBIFS (ubi1:0): reserved for root: 1673271 bytes (1634 KiB) Mon Jul 11 09:30:16 2016 kern.notice kernel: [ 9.791905] UBIFS (ubi1:0): media format: w4/r0 (latest is w4/r0), UUID 67205603-7CD6-45AF-BA53-9B04AD2514EA, small LPT model Mon Jul 11 09:30:16 2016 user.warn kernel: [ 9.806820] urandom-seed: Seeding with /etc/urandom.seed Mon Jul 11 09:30:16 2016 user.info kernel: [ 9.896424] procd: - early - Mon Jul 11 09:30:16 2016 user.info kernel: [ 9.899422] procd: - watchdog - Mon Jul 11 09:30:16 2016 user.info kernel: [ 10.540497] procd: - ubus - Mon Jul 11 09:30:16 2016 user.info kernel: [ 10.603381] procd: - init - Mon Jul 11 09:30:16 2016 kern.info kernel: [ 11.065117] ntfs: driver 2.1.32 [Flags: R/O MODULE]. Mon Jul 11 09:30:16 2016 kern.info kernel: [ 11.071823] tun: Universal TUN/TAP device driver, 1.6 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 11.076986] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com> Mon Jul 11 09:30:16 2016 kern.info kernel: [ 11.087166] wireguard: WireGuard loaded. See www.wireguard.io for information. Mon Jul 11 09:30:16 2016 kern.info kernel: [ 11.094461] wireguard: (C) Copyright 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. Mon Jul 11 09:30:16 2016 kern.info kernel: [ 11.105039] ip6_tables: (C) 2000-2006 Netfilter Core Team Mon Jul 11 09:30:16 2016 kern.info kernel: [ 11.116080] cryptodev: driver 1.8 loaded. Mon Jul 11 09:30:16 2016 kern.info kernel: [ 11.121067] Loading modules backported from Linux version wt-2016-06-20-0-gbc17424 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 11.128728] Backport generated by backports.git backports-20160216-7-g5735958 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 11.148869] <<Marvell 802.11ac Wireless Network Driver version 10.3.0.17-20160617>> Mon Jul 11 09:30:16 2016 kern.info kernel: [ 11.156461] pci 0000:00:02.0: enabling device (0140 -> 0142) Mon Jul 11 09:30:16 2016 kern.info kernel: [ 11.162356] mwlwifi 0000:02:00.0: enabling device (0140 -> 0142) Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 11.168579] ieee80211 phy0: priv->iobase0 = d1100000 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 11.168621] ieee80211 phy0: priv->iobase1 = d1280000 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 11.168649] ieee80211 phy0: priv->pcmd_buf = ce2d0000 priv->pphys_cmd_buf = 0e2d0000 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 11.199953] ieee80211 phy0: fw download start Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 11.317087] ieee80211 phy0: FwSize = 117828 downloaded Size = 117828 curr_iteration 65510 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 12.178583] ieee80211 phy0: fw download complete Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 12.180056] ieee80211 phy0: pcmd = ce2d0000 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 12.197563] ieee80211 phy0: firmware version: 0x7020902 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 12.225679] ieee80211 phy0: regdomain: FCC Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 12.225704] ieee80211 phy0: Channel: 1: 0x0 0x0 0xf Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 12.225734] ieee80211 phy0: 17 11 11 11 10 10 10 10 f f f f 0 0 0 0 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 12.225750] ieee80211 phy0: Channel: 2: 0x0 0x0 0xf Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 12.225779] ieee80211 phy0: 17 16 16 16 16 16 16 14 10 10 10 10 0 0 0 0 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 12.225795] ieee80211 phy0: Channel: 3: 0x0 0x0 0xf Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 12.225823] ieee80211 phy0: 17 16 16 16 16 16 16 14 10 10 10 10 0 0 0 0 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 12.225839] ieee80211 phy0: Channel: 4: 0x0 0x0 0xf Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 12.225867] ieee80211 phy0: 17 16 16 16 16 16 16 14 10 10 10 10 0 0 0 0 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 12.225883] ieee80211 phy0: Channel: 5: 0x0 0x0 0xf Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 12.225911] ieee80211 phy0: 17 16 16 16 16 16 16 14 10 10 10 10 0 0 0 0 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 12.225927] ieee80211 phy0: Channel: 6: 0x0 0x0 0xf Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 12.225955] ieee80211 phy0: 17 16 16 16 16 16 16 14 10 10 10 10 0 0 0 0 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 12.225971] ieee80211 phy0: Channel: 7: 0x0 0x0 0xf Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 12.225999] ieee80211 phy0: 17 16 16 16 16 16 16 14 10 10 10 10 0 0 0 0 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 12.226015] ieee80211 phy0: Channel: 8: 0x0 0x0 0xf Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 12.226043] ieee80211 phy0: 17 16 16 16 16 16 16 14 10 10 10 10 0 0 0 0 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 12.226059] ieee80211 phy0: Channel: 9: 0x0 0x0 0xf Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 12.226087] ieee80211 phy0: 17 16 16 16 16 16 16 14 10 10 10 10 0 0 0 0 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 12.226103] ieee80211 phy0: Channel: 10: 0x0 0x0 0xf Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 12.226131] ieee80211 phy0: 17 16 16 16 16 16 16 14 10 10 10 10 0 0 0 0 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 12.226147] ieee80211 phy0: Channel: 11: 0x0 0x0 0xf Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 12.226175] ieee80211 phy0: 17 11 11 11 11 11 11 11 10 10 10 10 0 0 0 0 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 12.228077] ieee80211 phy0: 2G enabled, 5G disabled Mon Jul 11 09:30:16 2016 kern.info kernel: [ 12.233038] ieee80211 phy0: 4 TX antennas, 4 RX antennas Mon Jul 11 09:30:16 2016 kern.info kernel: [ 12.238519] pci 0000:00:03.0: enabling device (0140 -> 0142) Mon Jul 11 09:30:16 2016 kern.info kernel: [ 12.244278] mwlwifi 0000:03:00.0: enabling device (0140 -> 0142) Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 12.250444] ieee80211 phy1: priv->iobase0 = d1400000 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 12.250505] ieee80211 phy1: priv->iobase1 = d1580000 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 12.250545] ieee80211 phy1: priv->pcmd_buf = cdfac000 priv->pphys_cmd_buf = 0dfac000 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 12.259035] ieee80211 phy1: fw download start Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 12.382136] ieee80211 phy1: FwSize = 117828 downloaded Size = 117828 curr_iteration 65501 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.252499] ieee80211 phy1: fw download complete Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.253990] ieee80211 phy1: pcmd = cdfac000 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 13.271738] ieee80211 phy1: firmware version: 0x7020902 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.301970] ieee80211 phy1: regdomain: FCC Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.301995] ieee80211 phy1: Channel: 36: 0x0 0x0 0xf Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.302024] ieee80211 phy1: 8 8 8 8 8 8 8 8 9 9 9 9 9 9 9 9 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.302040] ieee80211 phy1: Channel: 40: 0x0 0x0 0xf Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.302067] ieee80211 phy1: 8 8 8 8 9 9 9 9 9 9 9 9 9 9 9 9 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.302083] ieee80211 phy1: Channel: 44: 0x0 0x0 0xf Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.302110] ieee80211 phy1: 8 8 8 8 9 9 9 9 9 9 9 9 9 9 9 9 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.302126] ieee80211 phy1: Channel: 48: 0x0 0x0 0xf Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.302153] ieee80211 phy1: 8 8 8 8 9 9 9 9 9 9 9 9 9 9 9 9 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.302168] ieee80211 phy1: Channel: 52: 0x0 0x0 0xf Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.302196] ieee80211 phy1: f f f f f f f f 12 12 12 12 12 12 12 12 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.302212] ieee80211 phy1: Channel: 56: 0x0 0x0 0xf Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.302240] ieee80211 phy1: f f f f f f f f 12 12 12 12 12 12 12 12 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.302255] ieee80211 phy1: Channel: 60: 0x0 0x0 0xf Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.302283] ieee80211 phy1: f f f f f f f f 12 12 12 12 12 12 12 12 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.302299] ieee80211 phy1: Channel: 64: 0x0 0x0 0xf Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.302327] ieee80211 phy1: f f f f f f f f 12 12 12 12 12 12 12 12 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.302343] ieee80211 phy1: Channel: 100: 0x0 0x0 0xf Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.302372] ieee80211 phy1: 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.302435] ieee80211 phy1: Channel: 104: 0x0 0x0 0xf Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.302465] ieee80211 phy1: 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.302488] ieee80211 phy1: Channel: 108: 0x0 0x0 0xf Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.302526] ieee80211 phy1: 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.302543] ieee80211 phy1: Channel: 112: 0x0 0x0 0xf Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.302571] ieee80211 phy1: 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.302587] ieee80211 phy1: Channel: 116: 0x0 0x0 0xf Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.302616] ieee80211 phy1: 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.302632] ieee80211 phy1: Channel: 120: 0x0 0x0 0xf Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.302660] ieee80211 phy1: 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.302676] ieee80211 phy1: Channel: 124: 0x0 0x0 0xf Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.302705] ieee80211 phy1: 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.302720] ieee80211 phy1: Channel: 128: 0x0 0x0 0xf Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.302749] ieee80211 phy1: 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.302765] ieee80211 phy1: Channel: 132: 0x0 0x0 0xf Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.302793] ieee80211 phy1: 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.302809] ieee80211 phy1: Channel: 136: 0x0 0x0 0xf Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.302838] ieee80211 phy1: 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.302853] ieee80211 phy1: Channel: 140: 0x0 0x0 0xf Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.302882] ieee80211 phy1: 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.302898] ieee80211 phy1: Channel: 149: 0x0 0x0 0xf Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.302926] ieee80211 phy1: 16 16 16 16 14 14 14 14 15 15 15 15 14 14 14 14 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.302942] ieee80211 phy1: Channel: 153: 0x0 0x0 0xf Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.302971] ieee80211 phy1: 15 15 15 15 15 15 15 15 15 15 15 15 14 14 14 14 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.302987] ieee80211 phy1: Channel: 157: 0x0 0x0 0xf Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.303016] ieee80211 phy1: 15 15 15 15 15 15 15 15 15 15 15 15 14 14 14 14 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.303031] ieee80211 phy1: Channel: 161: 0x0 0x0 0xf Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.303060] ieee80211 phy1: 15 15 15 15 15 15 15 15 15 15 15 15 14 14 14 14 Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.303076] ieee80211 phy1: Channel: 165: 0x0 0x0 0xf Mon Jul 11 09:30:16 2016 kern.debug kernel: [ 13.303104] ieee80211 phy1: 16 16 16 16 16 16 16 16 15 15 15 15 14 14 14 14 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 13.305032] ieee80211 phy1: 2G disabled, 5G enabled Mon Jul 11 09:30:16 2016 kern.info kernel: [ 13.309943] ieee80211 phy1: 4 TX antennas, 4 RX antennas Mon Jul 11 09:30:16 2016 kern.info kernel: [ 13.321372] fuse init (API version 7.23) Mon Jul 11 09:30:16 2016 kern.info kernel: [ 13.331095] ip_tables: (C) 2000-2006 Netfilter Core Team Mon Jul 11 09:30:16 2016 kern.info kernel: [ 13.347458] nf_conntrack version 0.5.0 (3962 buckets, 15848 max) Mon Jul 11 09:30:16 2016 kern.info kernel: [ 13.479593] xt_time: kernel timezone is -0000 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 13.491900] PPP generic driver version 2.4.2 Mon Jul 11 09:30:16 2016 kern.info kernel: [ 13.497569] NET: Registered protocol family 24 Mon Jul 11 09:30:17 2016 daemon.err block: /dev/ubi0_1 is already mounted Mon Jul 11 09:30:18 2016 cron.info crond[1172]: crond (busybox 1.24.2) started, log level 5 Mon Jul 11 09:30:18 2016 authpriv.info dropbear[1188]: Not backgrounding Mon Jul 11 09:30:18 2016 kern.info kernel: [ 17.566582] device eth0 entered promiscuous mode Mon Jul 11 09:30:18 2016 daemon.notice netifd: Interface 'lan' is enabled Mon Jul 11 09:30:18 2016 daemon.notice netifd: Interface 'lan' is setting up now Mon Jul 11 09:30:18 2016 daemon.notice netifd: Interface 'lan' is now up Mon Jul 11 09:30:18 2016 kern.info kernel: [ 17.577459] br-lan: port 1(eth0) entered forwarding state Mon Jul 11 09:30:18 2016 kern.info kernel: [ 17.582948] br-lan: port 1(eth0) entered forwarding state Mon Jul 11 09:30:18 2016 daemon.notice netifd: Interface 'loopback' is enabled Mon Jul 11 09:30:18 2016 daemon.notice netifd: Interface 'loopback' is setting up now Mon Jul 11 09:30:18 2016 daemon.notice netifd: Interface 'loopback' is now up Mon Jul 11 09:30:18 2016 daemon.notice netifd: Interface 'wan' is enabled Mon Jul 11 09:30:18 2016 daemon.notice netifd: Interface 'wan6' is enabled Mon Jul 11 09:30:18 2016 daemon.notice netifd: Bridge 'br-lan' link is up Mon Jul 11 09:30:18 2016 daemon.notice netifd: Interface 'lan' has link connectivity Mon Jul 11 09:30:18 2016 daemon.notice netifd: Network device 'lo' link is up Mon Jul 11 09:30:18 2016 kern.info kernel: [ 17.637520] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready Mon Jul 11 09:30:18 2016 daemon.notice netifd: Interface 'loopback' has link connectivity Mon Jul 11 09:30:18 2016 user.notice firewall: Reloading firewall due to ifup of lan (br-lan) Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.373385] ieee80211 phy1: regdomain: FCC Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.377510] ieee80211 phy1: Channel: 36: 0x0 0x0 0xf Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.382559] ieee80211 phy1: 8 8 8 8 8 8 8 8 9 9 9 9 9 9 9 9 Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.388241] ieee80211 phy1: Channel: 40: 0x0 0x0 0xf Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.393253] ieee80211 phy1: 8 8 8 8 9 9 9 9 9 9 9 9 9 9 9 9 Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.398934] ieee80211 phy1: Channel: 44: 0x0 0x0 0xf Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.403942] ieee80211 phy1: 8 8 8 8 9 9 9 9 9 9 9 9 9 9 9 9 Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.409632] ieee80211 phy1: Channel: 48: 0x0 0x0 0xf Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.414660] ieee80211 phy1: 8 8 8 8 9 9 9 9 9 9 9 9 9 9 9 9 Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.420338] ieee80211 phy1: Channel: 52: 0x0 0x0 0xf Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.425403] ieee80211 phy1: f f f f f f f f 12 12 12 12 12 12 12 12 Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.431825] ieee80211 phy1: Channel: 56: 0x0 0x0 0xf Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.436860] ieee80211 phy1: f f f f f f f f 12 12 12 12 12 12 12 12 Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.443266] ieee80211 phy1: Channel: 60: 0x0 0x0 0xf Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.448253] ieee80211 phy1: f f f f f f f f 12 12 12 12 12 12 12 12 Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.454646] ieee80211 phy1: Channel: 64: 0x0 0x0 0xf Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.459686] ieee80211 phy1: f f f f f f f f 12 12 12 12 12 12 12 12 Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.466117] ieee80211 phy1: Channel: 100: 0x0 0x0 0xf Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.471209] ieee80211 phy1: 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.478339] ieee80211 phy1: Channel: 104: 0x0 0x0 0xf Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.483482] ieee80211 phy1: 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.490558] ieee80211 phy1: Channel: 108: 0x0 0x0 0xf Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.495654] ieee80211 phy1: 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.502741] ieee80211 phy1: Channel: 112: 0x0 0x0 0xf Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.507816] ieee80211 phy1: 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.514901] ieee80211 phy1: Channel: 116: 0x0 0x0 0xf Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.519978] ieee80211 phy1: 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.527105] ieee80211 phy1: Channel: 120: 0x0 0x0 0xf Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.532198] ieee80211 phy1: 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.539329] ieee80211 phy1: Channel: 124: 0x0 0x0 0xf Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.544437] ieee80211 phy1: 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.551520] ieee80211 phy1: Channel: 128: 0x0 0x0 0xf Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.556648] ieee80211 phy1: 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.563776] ieee80211 phy1: Channel: 132: 0x0 0x0 0xf Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.568857] ieee80211 phy1: 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.575964] ieee80211 phy1: Channel: 136: 0x0 0x0 0xf Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.581040] ieee80211 phy1: 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.588129] ieee80211 phy1: Channel: 140: 0x0 0x0 0xf Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.593222] ieee80211 phy1: 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.600293] ieee80211 phy1: Channel: 149: 0x0 0x0 0xf Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.605392] ieee80211 phy1: 16 16 16 16 14 14 14 14 15 15 15 15 14 14 14 14 Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.612521] ieee80211 phy1: Channel: 153: 0x0 0x0 0xf Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.617611] ieee80211 phy1: 15 15 15 15 15 15 15 15 15 15 15 15 14 14 14 14 Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.624732] ieee80211 phy1: Channel: 157: 0x0 0x0 0xf Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.629809] ieee80211 phy1: 15 15 15 15 15 15 15 15 15 15 15 15 14 14 14 14 Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.636898] ieee80211 phy1: Channel: 161: 0x0 0x0 0xf Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.641984] ieee80211 phy1: 15 15 15 15 15 15 15 15 15 15 15 15 14 14 14 14 Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.649108] ieee80211 phy1: Channel: 165: 0x0 0x0 0xf Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.654258] ieee80211 phy1: 16 16 16 16 16 16 16 16 15 15 15 15 14 14 14 14 Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.661391] ieee80211 phy0: regdomain: FCC Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.665568] ieee80211 phy0: Channel: 1: 0x0 0x0 0xf Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.670488] ieee80211 phy0: 17 11 11 11 10 10 10 10 f f f f 0 0 0 0 Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.676908] ieee80211 phy0: Channel: 2: 0x0 0x0 0xf Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.681814] ieee80211 phy0: 17 16 16 16 16 16 16 14 10 10 10 10 0 0 0 0 Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.688560] ieee80211 phy0: Channel: 3: 0x0 0x0 0xf Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.693512] ieee80211 phy0: 17 16 16 16 16 16 16 14 10 10 10 10 0 0 0 0 Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.700250] ieee80211 phy0: Channel: 4: 0x0 0x0 0xf Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.705207] ieee80211 phy0: 17 16 16 16 16 16 16 14 10 10 10 10 0 0 0 0 Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.711949] ieee80211 phy0: Channel: 5: 0x0 0x0 0xf Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.716878] ieee80211 phy0: 17 16 16 16 16 16 16 14 10 10 10 10 0 0 0 0 Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.723622] ieee80211 phy0: Channel: 6: 0x0 0x0 0xf Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.728535] ieee80211 phy0: 17 16 16 16 16 16 16 14 10 10 10 10 0 0 0 0 Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.735319] ieee80211 phy0: Channel: 7: 0x0 0x0 0xf Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.740225] ieee80211 phy0: 17 16 16 16 16 16 16 14 10 10 10 10 0 0 0 0 Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.746963] ieee80211 phy0: Channel: 8: 0x0 0x0 0xf Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.751865] ieee80211 phy0: 17 16 16 16 16 16 16 14 10 10 10 10 0 0 0 0 Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.758601] ieee80211 phy0: Channel: 9: 0x0 0x0 0xf Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.763519] ieee80211 phy0: 17 16 16 16 16 16 16 14 10 10 10 10 0 0 0 0 Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.770253] ieee80211 phy0: Channel: 10: 0x0 0x0 0xf Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.775284] ieee80211 phy0: 17 16 16 16 16 16 16 14 10 10 10 10 0 0 0 0 Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.782008] ieee80211 phy0: Channel: 11: 0x0 0x0 0xf Mon Jul 11 09:30:19 2016 kern.debug kernel: [ 18.787009] ieee80211 phy0: 17 11 11 11 11 11 11 11 10 10 10 10 0 0 0 0 Mon Jul 11 09:30:19 2016 daemon.notice netifd: Bridge 'br-lan' link is down Mon Jul 11 09:30:19 2016 kern.info kernel: [ 18.824742] br-lan: port 1(eth0) entered disabled state Mon Jul 11 09:30:19 2016 daemon.notice netifd: Interface 'lan' has link connectivity loss Mon Jul 11 09:30:20 2016 user.notice : setting up led power Mon Jul 11 09:30:20 2016 user.notice : setting up led wan Mon Jul 11 09:30:20 2016 user.notice : setting up led usb2 Mon Jul 11 09:30:20 2016 user.notice : setting up led usb3 Mon Jul 11 09:30:20 2016 daemon.info dnsmasq[1444]: started, version 2.76 cachesize 150 Mon Jul 11 09:30:20 2016 daemon.info dnsmasq[1444]: compile time options: IPv6 GNU-getopt no-DBus no-i18n no-IDN DHCP no-DHCPv6 no-Lua TFTP no-conntrack no-ipset no-auth no-DNSSEC loop-detect inotify Mon Jul 11 09:30:20 2016 daemon.info dnsmasq[1444]: DNS service limited to local subnets Mon Jul 11 09:30:20 2016 daemon.info dnsmasq-dhcp[1444]: DHCP, IP range 192.168.1.100 -- 192.168.1.249, lease time 12h Mon Jul 11 09:30:20 2016 daemon.info dnsmasq[1444]: using local addresses only for domain lan Mon Jul 11 09:30:20 2016 daemon.warn dnsmasq[1444]: no servers found in /tmp/resolv.conf.auto, will retry Mon Jul 11 09:30:20 2016 daemon.info dnsmasq[1444]: read /etc/hosts - 1 addresses Mon Jul 11 09:30:20 2016 daemon.info dnsmasq[1444]: read /tmp/hosts/dhcp - 2 addresses Mon Jul 11 09:30:20 2016 daemon.info dnsmasq-dhcp[1444]: read /etc/ethers - 0 addresses Mon Jul 11 09:30:20 2016 daemon.notice netifd: Interface 'vpn0' is enabled Mon Jul 11 09:30:20 2016 daemon.notice netifd: Network device 'tun0' link is up Mon Jul 11 09:30:20 2016 daemon.notice netifd: Interface 'vpn0' has link connectivity Mon Jul 11 09:30:20 2016 daemon.notice netifd: Interface 'vpn0' is setting up now Mon Jul 11 09:30:20 2016 daemon.notice netifd: Interface 'vpn0' is now up Mon Jul 11 09:30:20 2016 daemon.notice netifd: radio1 (1234): command failed: Not supported (-95) Mon Jul 11 09:30:20 2016 daemon.notice netifd: radio0 (1233): command failed: Not supported (-95) Mon Jul 11 09:30:20 2016 kern.info kernel: [ 19.792587] mvneta f1074000.ethernet eth1: Link is Up - 1Gbps/Full - flow control off Mon Jul 11 09:30:20 2016 kern.info kernel: [ 19.800486] mvneta f1070000.ethernet eth0: Link is Up - 1Gbps/Full - flow control off Mon Jul 11 09:30:20 2016 kern.info kernel: [ 19.814366] IPv6: ADDRCONF(NETDEV_CHANGE): eth1: link becomes ready Mon Jul 11 09:30:20 2016 kern.info kernel: [ 19.820847] br-lan: port 1(eth0) entered forwarding state Mon Jul 11 09:30:20 2016 kern.info kernel: [ 19.826340] br-lan: port 1(eth0) entered forwarding state Mon Jul 11 09:30:20 2016 daemon.notice netifd: Network device 'eth1' link is up Mon Jul 11 09:30:20 2016 daemon.notice netifd: Interface 'wan' has link connectivity Mon Jul 11 09:30:20 2016 daemon.notice netifd: Interface 'wan' is setting up now Mon Jul 11 09:30:20 2016 daemon.notice netifd: Interface 'wan6' has link connectivity Mon Jul 11 09:30:20 2016 daemon.notice netifd: Interface 'wan6' is setting up now Mon Jul 11 09:30:20 2016 daemon.notice netifd: Interface 'wan6' is now up Mon Jul 11 09:30:20 2016 daemon.notice netifd: Network device 'eth0' link is up Mon Jul 11 09:30:20 2016 daemon.notice netifd: Bridge 'br-lan' link is up Mon Jul 11 09:30:20 2016 daemon.notice netifd: Interface 'lan' has link connectivity Mon Jul 11 09:30:21 2016 daemon.notice netifd: radio1 (1234): Configuration file: /var/run/hostapd-phy1.conf Mon Jul 11 09:30:21 2016 daemon.notice netifd: wan (1619): udhcpc (v1.24.2) started Mon Jul 11 09:30:21 2016 daemon.notice netifd: wan (1619): Sending discover... Mon Jul 11 09:30:21 2016 daemon.notice netifd: wan (1619): Sending select for 50.36.100.###... Mon Jul 11 09:30:21 2016 daemon.notice netifd: wan (1619): Lease of 50.36.100.### obtained, lease time 300 Mon Jul 11 09:30:21 2016 daemon.info procd: - init complete - Mon Jul 11 09:30:21 2016 kern.debug kernel: [ 20.169684] ieee80211 phy1: change: 0xffffffff Mon Jul 11 09:30:21 2016 kern.info kernel: [ 20.325388] IPv6: ADDRCONF(NETDEV_UP): wlan1: link is not ready Mon Jul 11 09:30:21 2016 daemon.notice netifd: Interface 'wan' is now up Mon Jul 11 09:30:21 2016 daemon.info dnsmasq[1444]: reading /tmp/resolv.conf.auto Mon Jul 11 09:30:21 2016 daemon.info dnsmasq[1444]: using local addresses only for domain lan Mon Jul 11 09:30:21 2016 daemon.info dnsmasq[1444]: using nameserver 50.36.100.1#53 Mon Jul 11 09:30:21 2016 kern.info kernel: [ 20.336871] device wlan1 entered promiscuous mode Mon Jul 11 09:30:21 2016 kern.info kernel: [ 20.341652] br-lan: port 2(wlan1) entered forwarding state Mon Jul 11 09:30:21 2016 kern.info kernel: [ 20.347241] br-lan: port 2(wlan1) entered forwarding state Mon Jul 11 09:30:21 2016 daemon.notice netifd: radio1 (1234): wlan1: interface state UNINITIALIZED->COUNTRY_UPDATE Mon Jul 11 09:30:21 2016 daemon.notice netifd: radio1 (1234): wlan1: interface state COUNTRY_UPDATE->HT_SCAN Mon Jul 11 09:30:21 2016 kern.debug kernel: [ 20.354394] ieee80211 phy1: change: 0x100 Mon Jul 11 09:30:21 2016 kern.debug kernel: [ 20.367735] ieee80211 phy1: change: 0x60 Mon Jul 11 09:30:21 2016 user.notice firewall: Reloading firewall due to ifup of vpn0 (tun0) Mon Jul 11 09:30:21 2016 kern.debug kernel: [ 20.582486] ieee80211 phy1: change: 0x40 Mon Jul 11 09:30:21 2016 kern.debug kernel: [ 20.792564] ieee80211 phy1: change: 0x60 Mon Jul 11 09:30:21 2016 kern.debug kernel: [ 20.901769] ieee80211 phy1: change: 0x100 Mon Jul 11 09:30:21 2016 daemon.notice netifd: radio1 (1234): Using interface wlan1 with hwaddr 94:10:3e:87:e4:77 and ssid "A Singularity 5" Mon Jul 11 09:30:21 2016 kern.info kernel: [ 20.915234] br-lan: port 2(wlan1) entered disabled state Mon Jul 11 09:30:22 2016 daemon.info dnsmasq[1444]: exiting on receipt of SIGTERM Mon Jul 11 09:30:22 2016 daemon.info dnsmasq[1740]: started, version 2.76 cachesize 150 Mon Jul 11 09:30:22 2016 daemon.info dnsmasq[1740]: compile time options: IPv6 GNU-getopt no-DBus no-i18n no-IDN DHCP no-DHCPv6 no-Lua TFTP no-conntrack no-ipset no-auth no-DNSSEC loop-detect inotify Mon Jul 11 09:30:22 2016 daemon.info dnsmasq[1740]: DNS service limited to local subnets Mon Jul 11 09:30:22 2016 daemon.info dnsmasq-dhcp[1740]: DHCP, IP range 192.168.1.100 -- 192.168.1.249, lease time 12h Mon Jul 11 09:30:22 2016 daemon.info dnsmasq[1740]: using local addresses only for domain lan Mon Jul 11 09:30:22 2016 daemon.info dnsmasq[1740]: reading /tmp/resolv.conf.auto Mon Jul 11 09:30:22 2016 daemon.info dnsmasq[1740]: using local addresses only for domain lan Mon Jul 11 09:30:22 2016 daemon.info dnsmasq[1740]: using nameserver 50.36.100.1#53 Mon Jul 11 09:30:22 2016 daemon.info dnsmasq[1740]: read /etc/hosts - 1 addresses Mon Jul 11 09:30:22 2016 daemon.info dnsmasq[1740]: read /tmp/hosts/dhcp - 2 addresses Mon Jul 11 09:30:22 2016 daemon.info dnsmasq-dhcp[1740]: read /etc/ethers - 0 addresses Mon Jul 11 09:30:22 2016 kern.debug kernel: [ 21.034269] ieee80211 phy1: change: 0x100 Mon Jul 11 09:30:22 2016 kern.debug kernel: [ 21.047607] ieee80211 phy1: change: 0x62 Mon Jul 11 09:30:22 2016 user.notice firewall: Reloading firewall due to ifup of wan6 (eth1) Mon Jul 11 09:30:22 2016 kern.info kernel: [ 21.266980] IPv6: ADDRCONF(NETDEV_CHANGE): wlan1: link becomes ready Mon Jul 11 09:30:22 2016 kern.info kernel: [ 21.273573] br-lan: port 2(wlan1) entered forwarding state Mon Jul 11 09:30:22 2016 kern.info kernel: [ 21.279128] br-lan: port 2(wlan1) entered forwarding state Mon Jul 11 09:30:22 2016 daemon.notice netifd: radio1 (1234): wlan1: interface state HT_SCAN->ENABLED Mon Jul 11 09:30:22 2016 daemon.notice netifd: radio1 (1234): wlan1: AP-ENABLED Mon Jul 11 09:30:22 2016 daemon.notice netifd: Network device 'wlan1' link is up Mon Jul 11 09:30:22 2016 kern.info kernel: [ 21.822441] br-lan: port 1(eth0) entered forwarding state Mon Jul 11 09:30:23 2016 user.notice firewall: Reloading firewall due to ifup of wan (eth1) Mon Jul 11 09:30:23 2016 user.notice adblock[1867] info : adblock service started due to 'ifup' of 'wan' interface Mon Jul 11 09:30:24 2016 user.notice adblock[1958] info : domain adblock processing started (1.3.3, r930, 11.07.2016 09:30:24) Mon Jul 11 09:30:24 2016 user.notice adblock[1958] info : backup/restore will be disabled Mon Jul 11 09:30:24 2016 kern.info kernel: [ 23.272425] br-lan: port 2(wlan1) entered forwarding state Mon Jul 11 09:30:24 2016 user.notice adblock[1958] info : created volatile firewall rulesets Mon Jul 11 09:30:24 2016 user.notice adblock[1958] info : created volatile uhttpd instances Mon Jul 11 09:30:24 2016 user.notice adblock[1958] info : => processing source 'adaway' Mon Jul 11 09:31:00 2016 daemon.info dnsmasq[1740]: read /etc/hosts - 1 addresses Mon Jul 11 09:31:00 2016 daemon.info dnsmasq[1740]: read /tmp/hosts/dhcp - 2 addresses Mon Jul 11 09:31:00 2016 daemon.info dnsmasq-dhcp[1740]: read /etc/ethers - 0 addresses Mon Jul 11 09:31:01 2016 user.notice adblock[1958] info : source download finished (410 entries) Mon Jul 11 09:31:01 2016 user.notice adblock[1958] info : domain merging finished Mon Jul 11 09:31:01 2016 user.notice adblock[1958] info : => processing source 'disconnect' Mon Jul 11 09:31:02 2016 user.notice adblock[1958] info : source download finished (5736 entries) Mon Jul 11 09:31:02 2016 user.notice adblock[1958] info : domain merging finished Mon Jul 11 09:31:03 2016 user.notice adblock[1958] info : => processing source 'shalla' Mon Jul 11 09:31:29 2016 user.notice adblock[1958] info : source download finished (32867 entries) Mon Jul 11 09:31:31 2016 user.notice adblock[1958] info : domain merging finished Mon Jul 11 09:31:31 2016 user.notice adblock[1958] info : => processing source 'winhelp' Mon Jul 11 09:31:34 2016 daemon.info hostapd: wlan1: STA 40:e2:30:42:1c:b9 IEEE 802.11: authenticated Mon Jul 11 09:31:34 2016 daemon.info hostapd: wlan1: STA 40:e2:30:42:1c:b9 IEEE 802.11: associated (aid 1) Mon Jul 11 09:31:34 2016 daemon.info hostapd: wlan1: STA 40:e2:30:42:1c:b9 WPA: pairwise key handshake completed (RSN) Mon Jul 11 09:31:34 2016 user.notice adblock[1958] info : source download finished (13334 entries) Mon Jul 11 09:31:35 2016 user.notice adblock[1958] info : domain merging finished Mon Jul 11 09:31:35 2016 user.notice adblock[1958] info : => processing source 'yoyo' Mon Jul 11 09:31:37 2016 user.notice adblock[1958] info : source download finished (2385 entries) Mon Jul 11 09:31:37 2016 user.notice adblock[1958] info : domain merging finished Mon Jul 11 09:31:37 2016 user.notice adblock[1958] info : remove duplicates in separate block lists Mon Jul 11 09:31:48 2016 daemon.info dnsmasq[1740]: exiting on receipt of SIGTERM Mon Jul 11 09:31:49 2016 daemon.info dnsmasq[2521]: started, version 2.76 cachesize 150 Mon Jul 11 09:31:49 2016 daemon.info dnsmasq[2521]: compile time options: IPv6 GNU-getopt no-DBus no-i18n no-IDN DHCP no-DHCPv6 no-Lua TFTP no-conntrack no-ipset no-auth no-DNSSEC loop-detect inotify Mon Jul 11 09:31:49 2016 daemon.info dnsmasq[2521]: DNS service limited to local subnets Mon Jul 11 09:31:49 2016 daemon.info dnsmasq-dhcp[2521]: DHCP, IP range 192.168.1.100 -- 192.168.1.249, lease time 12h Mon Jul 11 09:31:49 2016 daemon.info dnsmasq[2521]: using local addresses only for domain lan Mon Jul 11 09:31:49 2016 daemon.info dnsmasq[2521]: reading /tmp/resolv.conf.auto Mon Jul 11 09:31:49 2016 daemon.info dnsmasq[2521]: using local addresses only for domain lan Mon Jul 11 09:31:49 2016 daemon.info dnsmasq[2521]: using nameserver 50.36.100.1#53 Mon Jul 11 09:31:49 2016 daemon.info dnsmasq[2521]: read /etc/hosts - 1 addresses Mon Jul 11 09:31:49 2016 daemon.info dnsmasq[2521]: read /tmp/hosts/dhcp - 2 addresses Mon Jul 11 09:31:49 2016 daemon.info dnsmasq-dhcp[2521]: read /etc/ethers - 0 addresses Mon Jul 11 09:31:50 2016 user.notice adblock[1958] info : block lists with overall 48796 domains loaded Mon Jul 11 09:31:50 2016 user.notice adblock[1958] info : firewall statistics (IPv4/IPv6): 0%/0% of all packets in prerouting chain are ad related & blocked Mon Jul 11 09:31:50 2016 user.notice adblock[1958] info : domain adblock processing finished successfully (1.3.3, r930, 11.07.2016 09:31:50) Mon Jul 11 09:33:25 2016 daemon.notice netifd: wan (1619): Sending renew... Mon Jul 11 09:33:25 2016 daemon.notice netifd: wan (1619): Lease of 50.36.100.### obtained, lease time 300


Community Build details for the WRT AC Series (including this router) can be found here.

Space for additional notes, links to forum threads or other resources.

  • The v1 device has a built in hardware fan for additional cooling. This was removed in the v2.
  • The two devices are otherwise identical
  • You may find additional/supplementary information at the wrt_ac_series page
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: 2024/02/12 11:13
  • by 127.0.0.1