Linksys E8350 V1

Under Construction!
This page is currently under construction. You can edit the article to help completing it.

Write a short, relevant description of the device. Include a technical overview, but avoid marketing buzzwords/useless stuff. Two to four sentences is about right. A picture is good, too. Edit the page to see how to add pictures.

Linksys E8350

WiP.

Describe if there are any ongoing activities that might lead to OpenWrt support.

CPU Ram Flash Network WLAN USB eSata Serial JTag
Qualcomm dual-core IPQ8064 @ 1.4 GHz 512 MiB 4+128 MiB 4x 10/100/100 bgn + ac 2 Yes Yes ?
  1. Power off the device and disconnect the WAN port. (Only LAN port to be connected)
  2. Press & hold the “Reset” button
  3. Power on the device & wait for 10 seconds with pressed “Reset” button
  4. Set IP on your PC from 192.168.1.0/24 network (Router is on IP 192.168.1.1)
  5. Open the Firmware Recovery page in your browser: http://192.168.1.1/index.shtml
    Firmware Recovery → File Name → Recovery & Reboot

hardware.button on howto use and configure the hardware button(s).

The Linksys E8350 has the following buttons:

BUTTON Event
Reset Reset
Wifi Wifi On/Off
WPS WPS
Power(switch) Power On/Off
Architecture ARM (armv7l cortex-a15+neon vfpv4)
Vendor Linksys
Bootloader U-Boot
System-On-Chip Qualcomm IPQ8064 @ 1.4 GHz
CPU/Speed 2 x 1.4 GHz
Flash-Chips SPI MX25U3235F + NAND MT29F1G08ABBDAH4
Flash sizes 4 MiB SPI + 128 MiB NAND
RAM 512 MiB (491 MiB for the OS)
Wireless 1 Qualcomm QCA9880 2.4GHz 802.11bgn
Wireless 2 Quantenna QSR1000 5GHz 802.11ac
Ethernet 4 x 10/100/1000 Mbit/s w/ vlan support
Switch Qualcomm Atheros QCA8337
USB 1 x 3.0 + 1 x 2.0 (combo with eSata port)
eSata 1 (combo with one of the USB ports)
Serial Yes
JTAG Not populated

FIXME Find out flash layout, then add the flash layout table here (copy, paste, modify the example).

FIXME Please consolidate the two flash layout sections below into one.

# cat /proc/mtd 
dev:    size   erasesize  name
mtd0: 04000000 00020000 "rootfs"
mtd1: 00010000 00010000 "sbl1"
mtd2: 00020000 00010000 "mibib"
mtd3: 00020000 00010000 "sbl2"
mtd4: 00030000 00010000 "sbl3"
mtd5: 00010000 00010000 "ddrconfig"
mtd6: 00010000 00010000 "ssd"
mtd7: 00030000 00010000 "tz"
mtd8: 00020000 00010000 "rpm"
mtd9: 00040000 00010000 "oldappsbl"
mtd10: 00040000 00010000 "APPSBLENV"
mtd11: 00020000 00010000 "ART"
mtd12: 00050000 00010000 "uboot"
mtd13: 00020000 00010000 "oldnss1"
mtd14: 00020000 00010000 "nvram"
mtd15: 001e0000 00010000 "oldkernel"
mtd16: 001d1000 0001f000 "kernel"
mtd17: 01d2f000 0001f000 "ubi_rootfs"
mtd18: 01de9000 0001f000 "ubi_rootfs_data"

mtd0: 04000000 00020000 "rootfs"  - is the big NAND flash used as /dev/ubi0
mtd16: 001d1000 0001f000 "kernel" -> /dev/ubi0_0
mtd17: 01d2f000 0001f000 "ubi_rootfs" -> /dev/ubi0_1
mtd18: 01de9000 0001f000 "ubi_rootfs_data" -> /dev/ubi0_2

mtd1 - mtd15 - small SPI flash - u-boot & board configs
# cat /proc/mtd
dev:    size   erasesize  name
mtd0: 04000000 00020000 "ubi"  -> main rootfs 64MiB ( 1-st part of nand 128 MiB ) - contains kernel,rootfs, roofs_data(overlay)
mtd1: 04000000 00020000 "extra" -> not used by default 64MiB ( 2-nd part of nand 128 MiB )
mtd2: 00010000 00010000 "0:SBL1" -> SPI 4MiB flash - first stage boot loader
mtd3: 00020000 00010000 "0:MIBIB" -> SPI 4MiB flash
mtd4: 00020000 00010000 "0:SBL2" -> SPI 4MiB flash
mtd5: 00030000 00010000 "0:SBL3" -> SPI 4MiB flash
mtd6: 00010000 00010000 "0:DDRCONFIG" -> SPI 4MiB flash
mtd7: 00010000 00010000 "0:SSD" -> SPI 4MiB flash
mtd8: 00030000 00010000 "0:TZ" -> SPI 4MiB flash
mtd9: 00020000 00010000 "0:RPM" -> SPI 4MiB flash
mtd10: 00040000 00010000 "0:OLDAPPSBL" -> SPI 4MiB flash
mtd11: 00040000 00010000 "0:APPSBLENV" -> SPI 4MiB flash
mtd12: 00020000 00010000 "0:ART" -> SPI 4MiB flash
mtd13: 00050000 00010000 "0:APPSBL" -> SPI 4MiB flash
mtd14: 00020000 00010000 "0:NSS1" -> SPI 4MiB flash
mtd15: 00020000 00010000 "0:NVRAM" -> SPI 4MiB flash
mtd16: 001e0000 00010000 "0:HLOS" -> SPI 4MiB flash - another linux kernel -> not used, kernel loads initially directly from the NAND UBI volume 0(ubi/rootfs) which is OS mapped under the mtd0 -> /dev/ubi0
/dev/ubi0_0 - linux kernel
/dev/ubi0_1 - rootfs squashfs
/dev/ubi0_2 - rootfs_data(rw) -> overlay

!!! WARNING: Do not touch the SPI partitions. You might damage the boot process.

128MiB nand flash is split in two 64MiB partitions: “ubi/rootfs - mtd0 ” and “extra - mtd1”
First partition is the OS. The Second partition is not used ( may be the manufacturer initially wanted to have dual boot device with recovery partition )

You can use the second 64MiB partition the way you want:

MAKE SURE “Extra” partition is visible and mapped to “mtd1”

cat /proc/mtd |grep extra
mtd1: 04000000 00020000 "extra"

ubiformat /dev/mtd1
ubiattach -m 1
ubimkvol /dev/ubi1 -n0 -N extra_space -m

  • Remove the rubber legs at the bottom side of the router.
  • There are 4 screws which have to be removed.
  • Use plastic card or similar tool and gently start opening it from the back side.

The serial port pins are unpopulated. You need to solder connecting cables or similar.

Serial connection parameters
for Linksys E8350 v1
115200, 8N1

USB to Serial TTL:
TX PCB board <> RX USB serial ttl dongle
RX PCB board <> TX USB serial ttl dongle
GND PCB board <> GND USB serial ttl dongle

JTAG is not tested. It looks like there are not populated JTAG pins on the PCB.

U-Boot 2012.07-svn65 [local,local] (Sep 11 2015 - 09:46:52) CyberTan U-Boot Version: v1.0 smem ram ptable found: ver: 0 len: 5 DRAM: 491 MiB NAND: SF: Detected MX25U3235F with page size 64 KiB, total 4 MiB ipq_spi: page_size: 0x100, sector_size: 0x10000, size: 0x400000 132 MiB In: serial Out: serial Err: serial cdp: get part failed for rootfs Net: MAC1 addr:0:3:7f:ba:db:1 athrs17_reg_init: complete athrs17_vlan_config ...done S17 inits done MAC2 addr:0:3:7f:ba:db:2 eth0 Warning: eth0 MAC addresses don't match: Address in SROM is 00:03:7f:ba:db:01 Address in environment is b4:75:0e:c0:03:6b , eth1 Warning: eth1 MAC addresses don't match: Address in SROM is 00:03:7f:ba:db:02 Address in environment is 00:06:3b:01:41:01 Hit any key to stop autoboot: 0 Device 1: nand1... is now current device Creating 1 MTD partitions on "nand0": 0x000000000000-0x000004000000 : "mtd=0" UBI: attaching mtd2 to ubi0 UBI: physical eraseblock size: 131072 bytes (128 KiB) UBI: logical eraseblock size: 126976 bytes UBI: smallest flash I/O unit: 2048 UBI: VID header offset: 2048 (aligned 2048) UBI: data offset: 4096 UBI: attached mtd2 to ubi0 UBI: MTD device name: "mtd=0" UBI: MTD device size: 64 MiB UBI: number of good PEBs: 512 UBI: number of bad PEBs: 0 UBI: max. allowed volumes: 128 UBI: wear-leveling threshold: 4096 UBI: number of internal volumes: 1 UBI: number of user volumes: 3 UBI: available PEBs: 0 UBI: total number of reserved PEBs: 512 UBI: number of PEBs reserved for bad PEB handling: 5 UBI: max/mean erase counter: 2/0 Read 0 bytes from volume kernel to 44000000 No size specified -> Using max size (1904640) Image Name: Linux-3.4.0 Image Type: ARM Linux Kernel Image (uncompressed) Data Size: 1820472 Bytes = 1.7 MiB Load Address: 41508000 Entry Point: 41508000 Verifying Checksum ... OK Loading Kernel Image ... OK OK Setting up atags for msm partition: rootfs device nand0 <nand0>, # parts = 1 #: name size offset mask_flags 0: fs 0x04000000 0x00000000 0 active partition: nand0,0 - (fs) 0x04000000 @ 0x00000000 defaults: mtdids : none mtdparts: none Using machid 0x1260 from environment Starting kernel ... [ 0.000000] Booting Linux on physical CPU 0 [ 0.000000] Linux version 3.4.0 (zls@team2) (gcc version 4.6.3 20120201 (prerelease) (Linaro GCC 4.6-2012.02) ) #14 SMP Fri Sep 28 15:57:55 EDT 2018 [ 0.000000] CPU: ARMv7 Processor [512f04d0] revision 0 (ARMv7), cr=10c5387d [ 0.000000] CPU: PIPT / VIPT nonaliasing data cache, PIPT instruction cache [ 0.000000] Machine: Qualcomm Atheros AP148 reference board [ 0.000000] Partition (from atag) rootfs -- Offset:0 Size:200 [ 0.000000] memory pool 3 (start 5fc00000 size 400000) initialized [ 0.000000] Memory policy: ECC disabled, Data cache writealloc [ 0.000000] smem_find(137, 80): wrong size 72 [ 0.000000] socinfo_init: v6, id=202, ver=1.0, raw_id=2064, raw_ver=2064, hw_plat=0, hw_plat_ver=65536 [ 0.000000] accessory_chip=0 hw_plat_subtype=0 [ 0.000000] PERCPU: Embedded 8 pages/cpu @c0b39000 s10304 r8192 d14272 u32768 [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 123690 [ 0.000000] Kernel command line: console=ttyHSL1,115200n8 ubi.mtd=rootfs root=mtd:ubi_rootfs [ 0.000000] PID hash table entries: 2048 (order: 1, 8192 bytes) [ 0.000000] Dentry cache hash table entries: 65536 (order: 6, 262144 bytes) [ 0.000000] Inode-cache hash table entries: 32768 (order: 5, 131072 bytes) [ 0.000000] Memory: 487MB = 487MB total [ 0.000000] Memory: 486700k/490796k available, 11988k reserved, 0K highmem [ 0.000000] Virtual kernel memory layout: [ 0.000000] vector : 0xffff0000 - 0xffff1000 ( 4 kB) [ 0.000000] fixmap : 0xfff00000 - 0xfffe0000 ( 896 kB) [ 0.000000] vmalloc : 0xdf000000 - 0xff000000 ( 512 MB) [ 0.000000] lowmem : 0xc0000000 - 0xdeb00000 ( 491 MB) [ 0.000000] pkmap : 0xbfe00000 - 0xc0000000 ( 2 MB) [ 0.000000] modules : 0xbf000000 - 0xbfe00000 ( 14 MB) [ 0.000000] .text : 0xc0008000 - 0xc04fc000 (5072 kB) [ 0.000000] .init : 0xc0500000 - 0xc0603840 (1039 kB) [ 0.000000] .data : 0xc0604000 - 0xc067eee0 ( 492 kB) [ 0.000000] .bss : 0xc067ef04 - 0xc07350ec ( 729 kB) [ 0.000000] SLUB: Genslabs=11, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 [ 0.000000] Hierarchical RCU implementation. [ 0.000000] NR_IRQS:1689 [ 0.000000] sched_clock: 32 bits at 32kHz, resolution 31240ns, wraps every 134175798ms [ 0.000000] Console: colour dummy device 80x30 [ 0.150421] Calibrating delay using timer specific routine.. 12.55 BogoMIPS (lpj=62782) [ 0.150452] pid_max: default: 32768 minimum: 301 [ 0.150921] Mount-cache hash table entries: 512 [ 0.152452] CPU: Testing write buffer coherency: ok [ 0.152671] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000 [ 0.152702] Setting up static identity map for 0x41897b70 - 0x41897bf8 [ 0.154826] CPU1: Booted secondary processor [ 0.154920] CPU1: thread -1, cpu 1, socket 0, mpidr 80000001 [ 0.154982] Brought up 2 CPUs [ 0.155014] SMP: Total of 2 processors activated (25.11 BogoMIPS). [ 0.170665] dummy: [ 0.171321] NET: Registered protocol family 16 [ 0.172071] AXI: msm_bus_fabric_init_driver(): msm_bus_fabric_init_driver [ 0.174476] meminfo_init: smem ram ptable found: ver: 0 len: 5 [ 0.174507] Found 1 memory banks grouped into 8 memory regions [ 0.175070] gpiochip_add: registered GPIOs 0 to 151 on device: msmgpio [ 0.175570] QFPROM TSENS calibration data not present [ 0.175601] smem_find(137, 80): wrong size 72 [ 0.175632] socinfo_init: v6, id=202, ver=1.0, raw_id=2064, raw_ver=2064, hw_plat=0, hw_plat_ver=65536 [ 0.175632] accessory_chip=0 hw_plat_subtype=0 [ 0.175663] msm_rpm_init: RPM firmware 3.0.16777338 [ 0.183255] clk_tbl_nss - loaded [ 0.185567] msm_rpm_get_status(): Status id 393 not defined for target [ 0.185567] msm_rpm_get_status(): Status id 393 not defined for target [ 0.185598] msm_rpm_get_status(): Status id 393 not defined for target [ 0.185598] msm_rpm_get_status(): Status id 393 not defined for target [ 0.185629] msm_rpm_get_status(): Status id 393 not defined for target [ 0.185629] msm_rpm_get_status(): Status id 393 not defined for target [ 0.194782] Register DIAG LED in /proc/sys/diag_blink. [ 0.209903] msm_dmov_memcpy_init: Success [ 0.216369] sps:BAM 0x12244000 enabled: ver:0x5, number of pipes:20 [ 0.216401] sps:BAM 0x12244000 is registered. [ 0.216651] sps:sps is ready. [ 0.310934] msm_pcie_setup: link initialized [ 0.311277] PCI host bridge to bus 0000:00 [ 0.311308] pci_bus 0000:00: root bus resource [mem 0x08000000-0x0fefffff] [ 0.311808] PCI: bus0: Fast back to back transfers disabled [ 0.312683] PCI: bus1: Fast back to back transfers disabled [ 0.330990] msm_pcie_setup: link initialized [ 0.331333] PCI host bridge to bus 0000:02 [ 0.331333] pci_bus 0000:02: root bus resource [mem 0x2e000000-0x31efffff] [ 0.331802] PCI: bus2: Fast back to back transfers disabled [ 0.332646] PCI: bus3: Fast back to back transfers disabled [ 1.353858] msm_pcie_setup: link initialization failed [ 1.354108] pci 0000:02:00.0: BAR 8: assigned [mem 0x2e000000-0x2e1fffff] [ 1.354108] pci 0000:02:00.0: BAR 9: assigned [mem 0x2e200000-0x2e2fffff pref] [ 1.354139] pci 0000:03:00.0: BAR 0: assigned [mem 0x2e000000-0x2e1fffff 64bit] [ 1.354170] pci 0000:03:00.0: BAR 6: assigned [mem 0x2e200000-0x2e20ffff pref] [ 1.354201] pci 0000:02:00.0: PCI bridge to [bus 03-03] [ 1.354201] pci 0000:02:00.0: bridge window [mem 0x2e000000-0x2e1fffff] [ 1.354233] pci 0000:02:00.0: bridge window [mem 0x2e200000-0x2e2fffff pref] [ 1.354264] PCI: enabling device 0000:02:00.0 (0140 -> 0143) [ 1.354358] pci 0000:00:00.0: BAR 9: assigned [mem 0x08000000-0x080fffff pref] [ 1.354358] pci 0000:01:00.0: BAR 0: assigned [mem 0x08000000-0x0800ffff pref] [ 1.354389] pci 0000:01:00.0: BAR 2: assigned [mem 0x08010000-0x0801ffff pref] [ 1.354420] pci 0000:01:00.0: BAR 3: assigned [mem 0x08020000-0x0802ffff pref] [ 1.354451] pci 0000:00:00.0: PCI bridge to [bus 01-01] [ 1.354482] pci 0000:00:00.0: bridge window [mem 0x08000000-0x080fffff pref] [ 1.354514] PCI: enabling device 0000:00:00.0 (0140 -> 0143) [ 1.375101] bio: create slab <bio-0> at 0 [ 1.376538] SCSI subsystem initialized [ 1.378350] spi_qsd spi_qsd.5: master is unqueued, this is deprecated [ 1.380693] spi_qsd spi_qsd.6: master is unqueued, this is deprecated [ 1.383036] spi_qsd spi_qsd.2: master is unqueued, this is deprecated [ 1.388034] Switching to clocksource gp_timer [ 1.407341] NET: Registered protocol family 2 [ 1.407685] IP route cache hash table entries: 4096 (order: 2, 16384 bytes) [ 1.408216] TCP established hash table entries: 16384 (order: 5, 131072 bytes) [ 1.408403] TCP bind hash table entries: 16384 (order: 5, 131072 bytes) [ 1.408622] TCP: Hash tables configured (established 16384 bind 16384) [ 1.408622] TCP: reno registered [ 1.408653] UDP hash table entries: 256 (order: 1, 8192 bytes) [ 1.408653] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes) [ 1.409122] NET: Registered protocol family 1 [ 1.411090] smd: register irq failed on wcnss_a11 [ 1.411121] smd: deregistering IRQs [ 1.411184] SMD: smd_core_platform_init() failed [ 1.412027] Partition(from smem) sbl1 -- Offset:0 Size:10000 [ 1.412027] Partition(from smem) mibib -- Offset:10000 Size:20000 [ 1.412058] Partition(from smem) sbl2 -- Offset:30000 Size:20000 [ 1.412089] Partition(from smem) sbl3 -- Offset:50000 Size:30000 [ 1.412089] Partition(from smem) ddrconfig -- Offset:80000 Size:10000 [ 1.412121] Partition(from smem) ssd -- Offset:90000 Size:10000 [ 1.412152] Partition(from smem) tz -- Offset:a0000 Size:30000 [ 1.412183] Partition(from smem) rpm -- Offset:d0000 Size:20000 [ 1.412183] Partition(from smem) oldappsbl -- Offset:f0000 Size:40000 [ 1.412214] Partition(from smem) APPSBLENV -- Offset:130000 Size:40000 [ 1.412214] Partition(from smem) ART -- Offset:170000 Size:20000 [ 1.412246] Partition(from smem) uboot -- Offset:190000 Size:50000 [ 1.412277] Partition(from smem) oldnss1 -- Offset:1e0000 Size:20000 [ 1.412308] Partition(from smem) nvram -- Offset:200000 Size:20000 [ 1.412308] Partition(from smem) oldkernel -- Offset:220000 Size:1e0000 [ 1.427460] acpuclk-ipq806x acpuclk-ipq806x: SPEED BIN: 0 [ 1.427460] acpuclk-ipq806x acpuclk-ipq806x: ACPU PVS: 2 [ 1.435238] acpuclk-ipq806x acpuclk-ipq806x: CPU0: 6 frequencies supported [ 1.435270] acpuclk-ipq806x acpuclk-ipq806x: CPU1: 6 frequencies supported [ 1.436863] msm_rpm_log_probe: OK [ 1.457388] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 1.457419] jffs2: version 2.2. (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) �© 2001-2006 Red Hat, Inc. [ 1.459325] msgmni has been set to 950 [ 1.461105] io scheduler noop registered [ 1.461137] io scheduler deadline registered (default) [ 1.461824] HDLC line discipline maxframe=4096 [ 1.461824] N_HDLC line discipline registered. [ 1.462855] Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled [ 1.465167] msm_serial_hs module loaded [ 1.465417] msm_serial_hsl: detected port #1 [ 1.465635] msm_serial_hsl.1: ttyHSL1 at MMIO 0x16340000 (irq = 184) is a MSM [ 1.466104] msm_serial_hsl: console setup on port #1 [ 2.296813] console [ttyHSL1] enabled [ 2.300093] msm_serial_hsl: driver initialized [ 2.309809] ahci ahci.0: forcing PORTS_IMPL to 0x1 [ 2.313620] ahci ahci.0: AHCI 0001.0300 32 slots 1 ports 6 Gbps 0x1 impl platform mode [ 2.321774] ahci ahci.0: flags: ncq sntf pm led clo only pmp pio slum part ccc apst [ 2.330521] scsi0 : ahci_platform [ 2.333520] ata1: SATA max UDMA/133 mmio [mem 0x29000000-0x2900017f] port 0x100 irq 241 [ 2.343111] msm_nand_probe: phys addr 0x1ac00000 [ 2.346797] msm_nand_probe: dmac 0x3 [ 2.350421] msm_nand_probe: allocated dma buffer at ffdfc000, dma_addr 5ec26000 [ 2.359075] status: 20 [ 2.360418] nandid: 1580a12c maker 2c device a1 [ 2.364948] ONFI probe : Found an ONFI compliant device MT29F1G08ABBDAH4 , [ 2.372196] Found a supported NAND device [ 2.376038] NAND Controller ID : 0x4030 [ 2.379912] NAND Device ID : 0x1580a12c [ 2.383755] Buswidth : 8 Bits [ 2.386722] Density : 128 MByte [ 2.389971] Pagesize : 2048 Bytes [ 2.393220] Erasesize: 131072 Bytes [ 2.396688] Oobsize : 64 Bytes [ 2.399843] CFG0 Init : 0xa8d408c0 [ 2.403311] CFG1 Init : 0x0004745c [ 2.406779] ECCBUFCFG : 0x00000203 [ 2.410996] Creating 1 MTD partitions on "msm_nand": [ 2.415213] 0x000000000000-0x000004000000 : "rootfs" [ 2.567728] mtd: partition "rootfs" set to be root filesystem [ 2.573320] split_squashfs: no squashfs found in "msm_nand" [ 2.578569] m25p80 spi5.0: found mx25u3235f, expected s25fl512s [ 2.583911] m25p80 spi5.0: mx25u3235f (4096 Kbytes) [ 2.589409] Creating 15 MTD partitions on "m25p80": [ 2.593626] 0x000000000000-0x000000010000 : "sbl1" [ 2.600843] 0x000000010000-0x000000030000 : "mibib" [ 2.606997] 0x000000030000-0x000000050000 : "sbl2" [ 2.613214] 0x000000050000-0x000000080000 : "sbl3" [ 2.619431] 0x000000080000-0x000000090000 : "ddrconfig" [ 2.625929] 0x000000090000-0x0000000a0000 : "ssd" [ 2.631896] 0x0000000a0000-0x0000000d0000 : "tz" [ 2.637425] 0x0000000d0000-0x0000000f0000 : "rpm" [ 2.643142] 0x0000000f0000-0x000000130000 : "oldappsbl" [ 2.649015] 0x000000130000-0x000000170000 : "APPSBLENV" [ 2.654607] 0x000000170000-0x000000190000 : "ART" [ 2.659731] 0x000000190000-0x0000001e0000 : "uboot" [ 2.664979] 0x0000001e0000-0x000000200000 : "oldnss1" [ 2.670509] 0x000000200000-0x000000220000 : "nvram" [ 2.675820] 0x000000220000-0x000000400000 : "oldkernel" [ 2.682193] UBI: attaching mtd0 to ubi0 [ 2.685004] UBI: physical eraseblock size: 131072 bytes (128 KiB) [ 2.691283] UBI: logical eraseblock size: 126976 bytes [ 2.696626] UBI: smallest flash I/O unit: 2048 [ 2.698094] ata1: SATA link down (SStatus 0 SControl 300) [ 2.706747] UBI: VID header offset: 2048 (aligned 2048) [ 2.712714] UBI: data offset: 4096 [ 3.708372] UBI: max. sequence number: 11 [ 3.735363] UBI: attached mtd0 to ubi0 [ 3.738144] UBI: MTD device name: "rootfs" [ 3.743142] UBI: MTD device size: 64 MiB [ 3.748016] UBI: number of good PEBs: 512 [ 3.752608] UBI: number of bad PEBs: 0 [ 3.757013] UBI: number of corrupted PEBs: 0 [ 3.761480] UBI: max. allowed volumes: 128 [ 3.766041] UBI: wear-leveling threshold: 4096 [ 3.770759] UBI: number of internal volumes: 1 [ 3.775164] UBI: number of user volumes: 3 [ 3.779631] UBI: available PEBs: 0 [ 3.784004] UBI: total number of reserved PEBs: 512 [ 3.788909] UBI: number of PEBs reserved for bad PEB handling: 5 [ 3.794876] UBI: max/mean erase counter: 2/0 [ 3.799156] UBI: image sequence number: 966812879 [ 3.803936] UBI: background thread "ubi_bgt0d" started, PID 626 [ 3.809965] UBI error: ubi_init: cannot attach mtd0 [ 3.835988] _nvram_read: read len=0xff00, magic=48534c46 [ 3.875132] GPIO Bitbanged MDIO: probed [ 3.880162] PPP generic driver version 2.4.2 [ 3.883973] NET: Registered protocol family 24 [ 3.888034] tsens_tm_probe : TSENS early init not done. [ 3.893064] tsens8960-tm: probe of tsens8960-tm failed with error -14 [ 3.901280] cpuidle: using governor ladder [ 3.904342] cpuidle: using governor menu [ 3.909809] TCP: cubic registered [ 3.913714] NET: Registered protocol family 10 [ 3.918931] IPv6 over IPv4 tunneling driver [ 3.925335] NET: Registered protocol family 17 [ 3.929272] Bridge firewalling registered [ 3.932739] 8021q: 802.1Q VLAN Support v1.8 [ 3.937019] VFP support v0.3: implementor 51 architecture 64 part 4d variant 2 rev 0 [ 3.944673] Registering SWP/SWPB emulation handler [ 3.949453] clock_late_init: Removing enables held for handed-off clocks [ 3.964042] ipq_nss_get_mac_addr: MAC[0]: ff:ff:ff:ff:ff:ff [ 3.968759] ipq_nss_get_mac_addr: MAC[1]: ff:ff:ff:ff:ff:ff [ 3.974258] ipq_nss_get_mac_addr: MAC[2]: ff:ff:ff:ff:ff:ff [ 3.979818] ipq_nss_get_mac_addr: MAC[3]: ff:ff:ff:ff:ff:ff [ 3.985442] no pmic restart interrupt specified [ 3.991471] msm_cache_dump_probe: could not register L2 buffer ret = -22. [ 4.007341] VFS: Mounted root (squashfs filesystem) readonly on device 31:17. [ 4.014058] Freeing init memory: 1036K /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: /dev/nvramNo such file or directory: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: /dev/nvramNo such file or directory: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram/dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory : No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory /dev/nvram: No such file or directory - preinit - Press the [f] key and hit [enter] to enter failsafe mode - regular preinit - [ 11.211027] UBIFS: recovery needed [ 11.414464] UBIFS: recovery completed [ 11.417088] UBIFS: mounted UBI device 0, volume 2, name "ubi_rootfs_data" [ 11.423867] UBIFS: file system size: 30220288 bytes (29512 KiB, 28 MiB, 238 LEBs) [ 11.431490] UBIFS: journal size: 1523712 bytes (1488 KiB, 1 MiB, 12 LEBs) [ 11.438800] UBIFS: media format: w4/r0 (latest is w4/r0) [ 11.444579] UBIFS: default compressor: lzo [ 11.448672] UBIFS: reserved for root: 1427378 bytes (1393 KiB) switching to jffs2 - init - cmd=[touch /tmp/var/lib/nfs/xtab ] cmd=[chmod 644 /tmp/var/lib/nfs/xtab ] cmd=[touch /tmp/var/lib/nfs/etab ] cmd=[chmod 644 /tmp/var/lib/nfs/etab ] cmd=[touch /tmp/var/lib/nfs/rmtab ] cmd=[chmod 644 /tmp/var/lib/nfs/rmtab ] cmd=[touch /tmp/var/lib/nfs/state ] cmd=[chmod go-rwx /tmp/var/lib/nfs/state ] cmd=[touch /tmp/disk_updating_lock ] cmd=[chmod 644 /tmp/disk_u�md=[chmod 644 /tmp/file_variable_updating_lock ] pre_sysinit: Setup console The boot is UNKNOWN The boot is UNKNOWN /bin/sh: can't create /dev/: Is a directory Restoring Storage Nvram Defaults disk(0, 0) execute /etc/init.d/boot start [ 12.864323] ssdk_plat_init start [ 12.866541] Register QCA PHY driver [ 13.720524] qca-ssdk module init succeeded! [ 14.241611] usbcore: registered new interface driver usbfs [ 14.246141] usbcore: registered new interface driver hub [ 14.251452] usbcore: registered new device driver usb [ 14.429865] md: linear personality registered for level -1 [ 14.443392] md: raid0 personality registered for level 0 [ 14.457075] md: raid1 personality registered for level 1 [ 14.470571] Button Hotplug driver version 0.4.1 [ 14.840331] NTFS driver 2.1.30 [Flags: R/O MODULE]. [ 15.169728] nss_driver - fw of size 321792 bytes copied to load addr: 40000000 [ 15.194064] nss_driver - Turbo Support 1 [ 15.198375] bf22f994: NSS Shaping is enabled, handler id: 0 [ 15.241674] nss_driver - fw of size 3568 bytes copied to load addr: 40800000 [ 15.249578] Error - Duplicate Interface CB Registered for interface 51 [ 15.383630] L2TP core driver, V2.0 [ 15.395501] L2TP netlink interface [ 15.408028] nss_gmac: ********************************************************** [ 15.414401] nss_gmac: * Driver :NSS GMAC Driver for RTL v(3.72a) [ 15.420649] nss_gmac: * Version :1.0 [ 15.424367] nss_gmac: * Copyright :Copyright (c) 2013 The Linux Foundation. All rights reserved. [ 15.433177] nss_gmac: ********************************************************** [ 15.441018] nss_gmac: GMAC1(dd4b14c0) Invalid MAC@ - using de:df:e0:e1:e2:e3 [ 15.453639] nss_gmac: GMAC2(dd4b2cc0) Invalid MAC@ - using be:bf:c0:c1:c2:c3 [ 16.528803] nss_macsec init success [ 16.700812] asf: module license 'Proprietary' taints kernel. [ 16.705435] Disabling lock debugging due to kernel taint [ 16.721399] ****Address of trace_timer :bf28935c [ 16.955014] ath_hal: 0.9.17.1 (AR5416, AR9380, WRITE_EEPROM, TX_DATA_SWAP, RX_DATA_SWAP, 11D) [ 16.972696] ath_rate_atheros: Copyright (c) 2001-2005 Atheros Communications, Inc, All Rights Reserved [ 16.990909] ath_dfs: Version 2.0.0 [ 16.990909] Copyright (c) 2005-2006 Atheros Communications, Inc. All Rights Reserved [ 17.035395] ath_spectral: Version 2.0.0 [ 17.035426] Copyright (c) 2005-2009 Atheros Communications, Inc. All Rights Reserved [ 17.045954] SPECTRAL module built on Sep 28 2018 19:40:04 [ 17.060980] ath_tx99: Version 2.0 [ 17.060980] Copyright (c) 2010 Atheros Communications, Inc, All Rights Reserved [ 17.247828] ath_dev: Copyright (c) 2001-2007 Atheros Communications, Inc, All Rights Reserved [ 18.526366] ath_pci: 10.2.2.60.17 (Atheros/multi-bss) [ 18.530459] ath_pci_probe [ 18.532989] PCI device id is 003c :003c [ 18.536832] PCI: enabling device 0000:03:00.0 (0140 -> 0142) [ 18.542767] ath_pci 0000:03:00.0: ath DEBUG: sc=0xdd3fa600 [ 18.547922] [ 18.547922] ol_ath_pci_configure : num_desired MSI set to 0 [ 18.555076] [ 18.555076] Using PCI Legacy Interrupt [ 19.558450] CE_per_engine_handler_adjust, base=dd3fa600 offset=57400 [ 19.563886] CE_per_engine_handler_adjust, base=dd3fa600 offset=57800 [ 19.580662] __ol_ath_attach: ath_attach TODO [ 19.583911] __ol_ath_attach 1272 host_enable 1 [ 19.588409] __ol_ath_attach: dev name wifi0 [ 19.592502] ol_ath_set_default_tgt_config : AC Minfree buffer allocation through module param (umac.ko) [ 19.601905] OL_ACBKMinfree : 0 [ 19.604998] OL_ACBEMinfree : 0 [ 19.608153] OL_ACVIMinfree : 0 [ 19.611246] OL_ACVOMinfree : 0 [ 19.614370] ol_ath_attach() BMI inited. [ 19.618338] ol_ath_attach() BMI Get Target Info. [ 19.622805] ol_ath_attach() TARGET TYPE: 7 Vers 0x4100016c [ 19.628397] NUM_DEV=1 FWMODE=0x2 FWSUBMODE=0x0 FWBR_BUF 0 [ 19.633833] ol_ath_attach() configure Target . [ 19.638175] ol_transfer_bin_file 1787: Download Board data len 2116 [ 19.648578] ol_ath_download_firmware: Using 0x1234 for the remainder of init [ 19.654607] ol_transfer_bin_file 1779: Download OTP data len 7208 [ 19.745485] ol_transfer_bin_file 1825: Download Firmware data len 229488 [ 20.736769] ol_ath_attach() Download FW. [ 20.739800] ol_ath_attach() HT Create . [ 20.743580] ol_ath_attach() HIF Claim. [ 20.747422] ol_ath_attach() BMI Done. [ 20.751077] ol_ath_attach() WMI attached. wmi_handle db080000 [ 20.756857] +HWT [ 20.758700] SOC_RESET_CONTROL_ADDRESS : 800 [ 20.762855] CPU_INTR_ADDRESS = [0] [ 20.766229] SOC_GLOBAL_RESET_ADDRESS = [0] [ 20.770321] Rx_Filter : [0] [ 20.773102] CE_per_engine_handler_adjust, base=dd3fa600 offset=57400 [ 20.779537] CE_per_engine_handler_adjust, base=dd3fa600 offset=57800 [ 20.785973] CE_per_engine_handler_adjust, base=dd3fa600 offset=57c00 [ 20.792408] CE_per_engine_handler_adjust, base=dd3fa600 offset=58000 [ 20.798812] CE_per_engine_handler_adjust, base=dd3fa600 offset=58400 [ 20.805310] CE_per_engine_handler_adjust, base=dd3fa600 offset=58800 [ 20.814151] CE_recv_buf_enqueue 653 Populate last entry 512 for CE 5 [ 20.819462] CE_recv_buf_enqueue 662 CE 5 wi 511 dest_ptr 0x5b838040 nbytes 0 recv_ctxt 0xdb16e900 [ 20.828366] -HWT [ 20.830240] HTC Service:0x0300 ep:1 TX flow control disabled [ 20.837082] CE_pkt_dl_len_set CE 4 Pkt download length 64 [ 20.841549] ol_txrx_pdev_attach: 1424 tx desc's allocated ; range starts from d9f20000 [ 20.849640] HTC Service:0x0100 ep:2 TX flow control disabled [ 20.855826] wmi_service_ready_event_rx: WMI UNIFIED SERVICE READY event [ 20.861761] num_rf_chain : 00000003 [ 20.865229] ht_cap_info: : 0000085b [ 20.868697] vht_cap_info : 338001b2 [ 20.872164] vht_supp_mcs : 0000ffea [ 20.875632] LARGE_AP enabled. num_peers 144, num_vdevs 16, num_tids 256 [ 20.882255] idx 0 req 1 num_units 0 num_unit_info 2 unit size 444 actual units 145 [ 20.890003] chunk 0 len 64380 requested ,ptr 0x5b4a0000 [ 20.904342] FIRMWARE:P 145 V 16 T 443 [ 20.904342] [ 20.908528] FIRMWARE:_wlan_rtt_enable [ 20.914401] wmi_ready_event_rx: WMI UNIFIED READY event [ 20.918837] ol_ath_connect_htc() WMI is ready [ 20.923117] ol_ath_set_host_app_area TODO [ 20.927147] target uses HTT version 2.1; host uses 2.1 [ 20.936301] ol_ath_attach() connect HTC. [ 20.939300] bypasswmi : 0 [ 20.941861] ol_regdmn_start: reg-domain param: regdmn=0, countryName=, wModeSelect=FFFFFFFF, netBand=FFFFFFFF, extendedChanMode=0. [ 20.953733] ol_regdmn_init_channels: !avail mode 0x680c (0x2) flags 0x2150 [ 20.960481] ol_regdmn_init_channels: !avail mode 0x680c (0x1) flags 0x140 [ 20.967228] ol_regdmn_init_channels: !avail mode 0x680c (0x20) flags 0xd0 [ 20.974039] ol_regdmn_init_channels: !avail mode 0x680c (0x40) flags 0x150 [ 20.980880] ol_regdmn_init_channels: !avail mode 0x680c (0x1000) flags 0x10100 [ 20.988097] ol_regdmn_init_channels: !avail mode 0x680c (0x8000) flags 0x20100 [ 20.995282] ol_regdmn_init_channels: !avail mode 0x680c (0x10000) flags 0x40100 [ 21.002561] ol_regdmn_init_channels: !avail mode 0x680c (0x20000) flags 0x100100 [ 21.009965] ol_regdmn_init_channels: !avail mode 0x680c (0x40000) flags 0x200100 [ 21.017338] ol_regdmn_init_channels: !avail mode 0x680c (0x80000) flags 0x400100 [ 21.024711] ol_regdmn_init_channels: !avail mode 0x680c (0x100000) flags 0x800100 [ 21.032271] ol_ath_phyerr_attach: called [ 21.036176] OL Resmgr Init-ed [ 21.039081] ol_if_spectral_setup [ 21.042236] SPECTRAL : get_capability not registered [ 21.047203] HAL_CAP_PHYDIAG : Capable [ 21.050859] SPECTRAL : Need to fix the capablity check for RADAR (spectral_attach : 231) [ 21.058919] SPECTRAL : get_capability not registered [ 21.063917] HAL_CAP_RADAR : Capable [ 21.067510] SPECTRAL : Need to fix the capablity check for SPECTRAL [ 21.067510] (spectral_attach : 236) [ 21.077319] SPECTRAL : get_capability not registered [ 21.082286] HAL_CAP_SPECTRAL_SCAN : Capable [ 21.086410] SPECTRAL : get_tsf64 not registered [ 21.090971] spectral_init_netlink 52 NULL SKB [ 21.095282] Green-AP : Green-AP : Attached [ 21.095282] [ 21.100843] Green-AP : Attached [ 21.104029] ol_ath_smart_ant_attach: Hardware doest not support Smart Antenna. [ 21.111184] ol_if_dfs_setup: called [ 21.114745] ol_if_dfs_attach: called; ptr=daf81984, radar_info=db6dfbd0 [ 21.121649] ol_ath_rtt_meas_report_attach: called [ 21.126148] ol_ath_attach() UMAC attach . [ 21.130115] ol_if_dfs_configure: called [ 21.133895] ol_if_dfs_configure: FCC domain [ 21.138113] ol_if_dfs_disable: called [ 21.141768] ol_ath_attach: Calling ol_if_dfs_configure [ 21.146860] __ol_ath_attach: init tx/rx TODO [ 21.151109] __ol_ath_attach: hard_header_len reservation 58 [ 21.167478] Initializing Pktlogs for 11ac [ 21.180037] __sa_init_module [ 21.307528] bonding: Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011) [ 21.582474] ip_tables: (C) 2000-2006 Netfilter Core Team [ 21.751327] [wifi0] FWLOG: [21079] WAL_DBGID_TX_AC_BUFFER_SET ( 0x3, 0x1e, 0x460, 0x460, 0x0 ) [ 21.758887] [wifi0] FWLOG: [21079] WAL_DBGID_TX_AC_BUFFER_SET ( 0x12, 0x1e, 0x460, 0x460, 0x0 ) [ 21.767572] [wifi0] FWLOG: [21079] WAL_DBGID_TX_AC_BUFFER_SET ( 0x45, 0x1e, 0x460, 0x460, 0x0 ) [ 21.776288] [wifi0] FWLOG: [21079] WAL_DBGID_TX_AC_BUFFER_SET ( 0x67, 0x1e, 0x460, 0x460, 0x0 ) [ 21.784942] [wifi0] FWLOG: [21084] WHAL_ERROR_RECV_STOPPCU ( 0x110298a, 0x3 ) [ 21.792064] [wifi0] FWLOG: [21084] WHAL_ERROR_RESET_PM ( ) [ 21.831740] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 21.837519] msm_hsusb_host msm_hsusb_host: unable to find transceiver [ 21.875788] nf_conntrack version 0.5.0 (7620 buckets, 30480 max) [ 22.004404] PPPoL2TP kernel driver, V2.0 [ 22.212589] hahaha init ipt webstr module... [ 22.309809] xt_time: kernel timezone is -0000 [ 22.657731] nf_conntrack_rtsp v0.6.21 loading [ 22.670915] nf_nat_rtsp v0.6.21 loading [ 22.703530] [cbt_tcp_init]: init tcp module .. [ 22.706935] [init]: tcp_init ok [ 22.710090] [dns_init]: init dns module .. [ 22.714151] [init]: dns_init ok [ 22.717307] [pct_init]: init pct module .. [ 22.721368] [init]: pct_init ok [ 22.724492] [pct6_init]: init pct module .. [ 22.728647] [init]: pct6_init ok [ 22.731865] [ssl_init]: init ssl module .. [ 22.735926] [init]: ssl_init ok [ 22.739237] [ssl6_init]: init ssl module .. [ 22.743236] [init]: ssl6_init ok [ 22.795907] ip6_tables: (C) 2000-2006 Netfilter Core Team [ 22.991596] ipq-dwc3 ipq-dwc3.0: unable to read platform data num of dbm eps [ 23.098313] xhci-hcd xhci-hcd.0: xHCI Host Controller [ 23.102436] xhci-hcd xhci-hcd.0: new USB bus registered, assigned bus number 1 [ 23.109715] xhci-hcd xhci-hcd.0: irq 142, io mem 0x11000000 [ 23.115463] usb_set_configuration: has interfaces 1 [ 23.120087] usb_device_match: usb driver name usbfs, busnum 1 [ 23.125710] usb_device_match: usb driver name hub, busnum 1 [ 23.131302] hub 1-0:1.0: USB hub found [ 23.135020] hub 1-0:1.0: 1 port detected [ 23.139144] xhci-hcd xhci-hcd.0: xHCI Host Controller [ 23.143955] xhci-hcd xhci-hcd.0: new USB bus registered, assigned bus number 2 [ 23.151452] usb_set_configuration: has interfaces 1 [ 23.156107] usb_device_match: usb driver name usbfs, busnum 2 [ 23.161824] usb_device_match: usb driver name hub, busnum 2 [ 23.167291] hub 2-0:1.0: USB hub found [ 23.171040] hub 2-0:1.0: 1 port detected [ 23.176726] ipq-dwc3 ipq-dwc3.1: unable to read platform data num of dbm eps [ 23.283380] xhci-hcd xhci-hcd.1: xHCI Host Controller [ 23.287441] xhci-hcd xhci-hcd.1: new USB bus registered, assigned bus number 3 [ 23.294720] xhci-hcd xhci-hcd.1: irq 237, io mem 0x10000000 [ 23.300531] usb_set_configuration: has interfaces 1 [ 23.305154] usb_device_match: usb driver name usbfs, busnum 3 [ 23.310777] usb_device_match: usb driver name hub, busnum 3 [ 23.316338] hub 3-0:1.0: USB hub found [ 23.320087] hub 3-0:1.0: 1 port detected [ 23.324211] xhci-hcd xhci-hcd.1: xHCI Host Controller [ 23.329084] xhci-hcd xhci-hcd.1: new USB bus registered, assigned bus number 4 [ 23.336488] usb_set_configuration: has interfaces 1 [ 23.341205] usb_device_match: usb driver name usbfs, busnum 4 [ 23.346797] usb_device_match: usb driver name hub, busnum 4 [ 23.352389] hub 4-0:1.0: USB hub found [ 23.356138] hub 4-0:1.0: 1 port detected [ 23.438081] hub 1-0:1.0: unable to enumerate USB device on port 1 [ 23.566416] Initializing USB Mass Storage driver... [ 23.570540] usb_device_match: usb driver name usb-storage, busnum 1 [ 23.576538] usb_device_match: usb driver name usb-storage, busnum 2 [ 23.582786] usb_device_match: usb driver name usb-storage, busnum 3 [ 23.589065] usb_device_match: usb driver name usb-storage, busnum 4 [ 23.595720] usbcore: registered new interface driver usb-storage [ 23.601280] USB Mass Storage support registered. [ 23.624773] sxuptp_devfilter: Unknown symbol sxuptp_deregister_interface_probe (err 0) [ 23.631708] sxuptp_devfilter: Unknown symbol sxuptp_procfs_get_dir_entry (err 0) [ 23.639112] sxuptp_devfilter: Unknown symbol sxuptp_register_interface_probe (err 0) [ 23.669603] usb_device_match: usb driver name sxuptp_driver, busnum 1 [ 23.675007] usb_device_match: usb driver name sxuptp_driver, busnum 2 [ 23.718119] usb 2-1: new SuperSpeed USB device number 2 using xhci-hcd [ 23.739550] usb_set_configuration: has interfaces 1 [ 23.743486] usb_device_match: usb driver name usbfs, busnum 2 [ 23.749140] usb_device_match: usb driver name hub, busnum 2 [ 23.754670] usb_device_match: usb driver name usb-storage, busnum 2 [ 23.761168] scsi1 : usb-storage 2-1:1.0 [ 23.765167] usb_device_match: usb driver name sxuptp_driver, busnum 3 [ 23.771290] usb_device_match: usb driver name sxuptp_driver, busnum 4 [ 23.777600] usb_device_match: usb driver name sxuptp_driver, busnum 2 [ 23.784129] usbcore: registered new interface driver sxuptp_driver [ 23.821774] fuse init (API version 7.18) [ 23.943111] u32 classifier [ 23.944767] Performance counters on [ 23.948609] input device check on [ 23.952233] Actions configured [ 24.089597] ECM init [ 24.093345] ECM init complete [ 24.758481] scsi 1:0:0:0: Direct-Access SanDisk Ultra Fit 1.00 PQ: 0 ANSI: 6 [ 24.766198] sd 1:0:0:0: [sda] 30375936 512-byte logical blocks: (15.5 GB/14.4 GiB) [ 24.774414] sd 1:0:0:0: [sda] Write Protect is off [ 24.778600] sd 1:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA [ 24.790346] sda: sda1 sda2 sda3 [ 24.794220] sd 1:0:0:0: [sda] Attached SCSI removable disk /etc/rc.common: line 85: /sbin/sound: Permission denied cmd=[insmod /lib/jnl.ko ] [ 25.550234] jnl: driver (lke_8.9.0 lke_8.9.0_r227163_b16, LBD=ON) loaded at bf992000 cmd=[insmod /lib/ufsd.ko ] [ 25.897750] ufsd:: trace mask set to 0000000f [ 25.901093] ufsd: driver (lke_8.9.0 lke_8.9.0_r227163_b16, LBD=ON, delalloc, ioctl, bdi, sd(1), fua, tr) loaded at bf99e000 [ 25.901093] NTFS support included [ 25.901093] Hfs+/HfsJ support included [ 25.901124] optimized: speed [ 25.901124] Build_for__Belkin_Linksys_AC2350_k3.4.0_2014-04-16_lke_8.9.0_r227163_b16 [ 25.901124] Hit enter to continue...The chipset is IPQ806x... ##### fw_md5sum == f29838904cdde98b57e9fda0e9329b76 ##### cmd=[killall httpd ] killall: httpd: no process killed killall: check_http.sh: no process killed cmd=[killall gn-httpd ] killall: gn-httpd: no process killed cmd=[killall gn-httpd ] killall: gn-httpd: no process killed cmd=[killall wm-httpd ] killall: wm-httpd: no process killed [ 28.099062] [wp_unhook]: hook already unregistered cmd=[resetbutton ] WARNING: console log level set to 1 system /etc/init.d/network start signalling TIMER cmd=[brctl addbr br0 ] name=[eth1] lan_ifname=[br0] cmd=[brctl addif br0 eth1 ] [ 31.284817] device eth1 entered promiscuous mode [ 31.292127] ADDRCONF(NETDEV_UP): eth1: link is not ready =====> set br0 hwaddr to B4:75:0E:C0:03:6B [ 31.297563] ADDRCONF(NETDEV_UP): br0: link is not ready Set 1 to /proc/sys/net/ipv4/conf/default/arp_ignore ... Set 1 to /proc/sys/net/ipv4/conf/all/arp_ignore ... Set 1 to /proc/sys/net/ipv4/ip_forward ... Set 1 to /proc/sys/net/ipv4/icmp_echo_ignore_broadcasts ... Set 1 to /proc/sys/net/ipv4/icmp_ignore_bogus_error_responses ... Set 0 to /proc/sys/net/ipv4/tcp_ecn ... Set 30 to /proc/sys/net/ipv4/tcp_fin_timeout ... Set 120 to /proc/sys/net/ipv4/tcp_keepalive_time ... Set 1 to /proc/sys/net/ipv4/tcp_syncookies ... Set 1 to /proc/sys/net/ipv4/tcp_timestamps ... Set 1 to /proc/sys/net/ipv4/tcp_sack ... Set 1 to /proc/sys/net/ipv4/tcp_dsack ... Set 1 to /proc/sys/net/netfilter/nf_conntrack_acct ... Set 0 to /proc/sys/net/netfilter/nf_conntrack_checksum ... Set 16384 to /proc/sys/net/netfilter/nf_conntrack_max ... Set 3600 to /proc/sys/net/netfilter/nf_conntrack_tcp_timeout_established ... Set 60 to /proc/sys/net/netfilter/nf_conntrack_udp_timeout ... Set 180 to /proc/sys/net/netfilter/nf_conntrack_udp_timeout_stream ... Set 0 to /proc/sys/net/bridge/bridge-nf-call-arptables ... Set 1 to /proc/sys/net/bridge/bridge-nf-call-iptables ... Set 1 to /proc/sys/net/bridge/bridge-nf-call-ip6tables ... Set 1 to /proc/sys/dev/nss/general/redirect ... lo: File exists Set 66560 to /proc/sys/net/core/rmem_max ... uci: Entry not found Del guest wlan settings: uci delete wireless.@wifi-iface[1] uci: Entry not found uci: Entry not found [ 31.540299] __sa_exit_module [ 31.547735] Suspending Target - with disable_intr set :wifi0 (sc dd3fa600) [ 31.553639] waiting for target paused event from target :wifi0 (sc dd3fa600) [ 31.617994] __ol_ath_detach: init tx/rx cleanup TODO [ 31.621993] ol_if_dfs_teardown: called [ 31.625898] ol_ath_phyerr_detach: called [ 31.630959] CE_fini 2204 Cleaning up HTT Tx CE [ 31.634395] CE_fini Cleaning up HTT MSG CE(5) [ 31.641768] ol_if_spectral_detach [ 31.644079] SPECTRAL : Module removed (spectral = d9fc2000) [ 31.649890] Green-AP : Green-AP : Detached [ 31.649890] [ 31.655201] Green-AP : Detached [ 31.658356] ath_pci_warm_reset :(sc dd3fa600) [ 31.662667] Target Warm Reset [ 31.665604] Host Intr Cause reg 0x900c : value : 0x4000 [ 31.670884] Target CPU Intr Cause 0x5040 [ 31.774820] addr 0x4050 : 0x4 [ 31.796938] Target CPU Intr Cause after CE reset 0x40 [ 31.801093] RESET_CONTROL after cpu warm reset 0x804 [ 31.906154] Target Warm reset complete [ 31.908997] ath_pci_remove [ 31.911683] ath_pci: driver unloaded [ 31.918619] Removing athdebug proc file [ 31.921462] ath_dev: driver unloaded [ 31.927897] ath_tx99: driver unloaded [ 31.933270] ath_spectral: driver unloaded [ 31.939019] ath_dfs: driver unloaded [ 31.944329] ath_rate_atheros: driver unloaded [ 31.950484] ath_hal: driver unloaded [ 32.006373] ****Address of trace_timer :bfa4035c [ 32.024273] ath_hal: 0.9.17.1 (AR5416, AR9380, WRITE_EEPROM, TX_DATA_SWAP, RX_DATA_SWAP, 11D) [ 32.043236] ath_rate_atheros: Copyright (c) 2001-2005 Atheros Communications, Inc, All Rights Reserved [ 32.062417] ath_dfs: Version 2.0.0 [ 32.062417] Copyright (c) 2005-2006 Atheros Communications, Inc. All Rights Reserved [ 32.083442] ath_spectral: Version 2.0.0 [ 32.083442] Copyright (c) 2005-2009 Atheros Communications, Inc. All Rights Reserved [ 32.094033] SPECTRAL module built on Sep 28 2018 19:40:04 [ 32.109465] ath_tx99: Version 2.0 [ 32.109465] Copyright (c) 2010 Atheros Communications, Inc, All Rights Reserved [ 32.135238] ath_dev: Copyright (c) 2001-2007 Atheros Communications, Inc, All Rights Reserved [ 32.169103] ath_pci: 10.2.2.60.17 (Atheros/multi-bss) [ 32.173164] ath_pci_probe [ 32.175726] PCI device id is 003c :003c [ 32.179881] ath_pci 0000:03:00.0: ath DEBUG: sc=0xdd3fae00 [ 32.185035] [ 32.185035] ol_ath_pci_configure : num_desired MSI set to 0 [ 32.192189] [ 32.192189] Using PCI Legacy Interrupt [ 33.188441] CE_per_engine_handler_adjust, base=dd3fae00 offset=57400 [ 33.193876] CE_per_engine_handler_adjust, base=dd3fae00 offset=57800 [ 33.212339] __ol_ath_attach: ath_attach TODO [ 33.215588] __ol_ath_attach 1272 host_enable 1 [ 33.220024] __ol_ath_attach: dev name wifi0 [ 33.224179] ol_ath_set_default_tgt_config : AC Minfree buffer allocation through module param (umac.ko) [ 33.233583] OL_ACBKMinfree : 0 [ 33.236676] OL_ACBEMinfree : 0 [ 33.239800] OL_ACVIMinfree : 0 [ 33.242924] OL_ACVOMinfree : 0 [ 33.246048] ol_ath_attach() BMI inited. [ 33.255014] ol_ath_attach() BMI Get Target Info. [ 33.258606] ol_ath_attach() TARGET TYPE: 7 Vers 0x4100016c [ 33.264198] NUM_DEV=1 FWMODE=0x2 FWSUBMODE=0x0 FWBR_BUF 0 [ 33.270571] ol_ath_attach() configure Target . [ 33.274101] ol_transfer_bin_file 1787: Download Board data len 2116 [ 33.284879] ol_ath_download_firmware: Using 0x1234 for the remainder of init [ 33.290909] ol_transfer_bin_file 1779: Download OTP data len 7208 [ 33.297813] br0: port 1(eth1) entered forwarding state [ 33.302124] br0: port 1(eth1) entered forwarding state [ 33.307310] ADDRCONF(NETDEV_CHANGE): eth1: link becomes ready [ 33.313089] ADDRCONF(NETDEV_CHANGE): br0: link becomes ready [ 33.443423] ol_transfer_bin_file 1825: Download Firmware data len 229488 [ 34.474945] ol_ath_attach() Download FW. [ 34.478069] ol_ath_attach() HT Create . [ 34.481755] ol_ath_attach() HIF Claim. [ 34.485723] ol_ath_attach() BMI Done. [ 34.489253] ol_ath_attach() WMI attached. wmi_handle d9fa0000 [ 34.495032] +HWT [ 34.496844] SOC_RESET_CONTROL_ADDRESS : 800 [ 34.501030] CPU_INTR_ADDRESS = [0] [ 34.504373] SOC_GLOBAL_RESET_ADDRESS = [0] [ 34.508497] Rx_Filter : [80200] [ 34.511590] CE_per_engine_handler_adjust, base=dd3fae00 offset=57400 [ 34.518056] CE_per_engine_handler_adjust, base=dd3fae00 offset=57800 [ 34.525898] CE_per_engine_handler_adjust, base=dd3fae00 offset=57c00 [ 34.531365] CE_per_engine_handler_adjust, base=dd3fae00 offset=58000 [ 34.537769] CE_per_engine_handler_adjust, base=dd3fae00 offset=58400 [ 34.544298] CE_per_engine_handler_adjust, base=dd3fae00 offset=58800 [ 34.552671] CE_recv_buf_enqueue 653 Populate last entry 512 for CE 5 [ 34.558013] CE_recv_buf_enqueue 662 CE 5 wi 511 dest_ptr 0x5c41d040 nbytes 0 recv_ctxt 0xd9b5ce40 [ 34.566885] -HWT [ 34.568791] HTC Service:0x0300 ep:1 TX flow control disabled [ 34.575757] CE_pkt_dl_len_set CE 4 Pkt download length 64 [ 34.580162] ol_txrx_pdev_attach: 1424 tx desc's allocated ; range starts from da370000 [ 34.588316] HTC Service:0x0100 ep:2 TX flow control disabled [ 34.594376] wmi_service_ready_event_rx: WMI UNIFIED SERVICE READY event [ 34.600437] num_rf_chain : 00000003 [ 34.603873] ht_cap_info: : 0000085b [ 34.607341] vht_cap_info : 338001b2 [ 34.610840] vht_supp_mcs : 0000ffea [ 34.614308] LARGE_AP enabled. num_peers 144, num_vdevs 16, num_tids 256 [ 34.620930] idx 0 req 1 num_units 0 num_unit_info 2 unit size 444 actual units 145 [ 34.628678] chunk 0 len 64380 requested ,ptr 0x5b880000 [ 34.642986] FIRMWARE:P 145 V 16 T 443 [ 34.642986] [ 34.647203] FIRMWARE:_wlan_rtt_enable [ 34.653077] wmi_ready_event_rx: WMI UNIFIED READY event [ 34.657513] ol_ath_connect_htc() WMI is ready [ 34.661824] ol_ath_set_host_app_area TODO [ 34.665854] target uses HTT version 2.1; host uses 2.1 [ 34.675039] ol_ath_attach() connect HTC. [ 34.678038] bypasswmi : 0 [ 34.680631] ol_regdmn_start: reg-domain param: regdmn=0, countryName=, wModeSelect=FFFFFFFF, netBand=FFFFFFFF, extendedChanMode=0. [ 34.692408] ol_regdmn_init_channels: !avail mode 0x680c (0x2) flags 0x2150 [ 34.699218] ol_regdmn_init_channels: !avail mode 0x680c (0x1) flags 0x140 [ 34.705966] ol_regdmn_init_channels: !avail mode 0x680c (0x20) flags 0xd0 [ 34.712808] ol_regdmn_init_channels: !avail mode 0x680c (0x40) flags 0x150 [ 34.719618] ol_regdmn_init_channels: !avail mode 0x680c (0x1000) flags 0x10100 [ 34.726866] ol_regdmn_init_channels: !avail mode 0x680c (0x8000) flags 0x20100 [ 34.734020] ol_regdmn_init_channels: !avail mode 0x680c (0x10000) flags 0x40100 [ 34.741362] ol_regdmn_init_channels: !avail mode 0x680c (0x20000) flags 0x100100 [ 34.748703] ol_regdmn_init_channels: !avail mode 0x680c (0x40000) flags 0x200100 [ 34.756044] ol_regdmn_init_channels: !avail mode 0x680c (0x80000) flags 0x400100 [ 34.763480] ol_regdmn_init_channels: !avail mode 0x680c (0x100000) flags 0x800100 [ 34.771009] ol_ath_phyerr_attach: called [ 34.774882] OL Resmgr Init-ed [ 34.777881] ol_if_spectral_setup [ 34.781005] SPECTRAL : get_capability not registered [ 34.785910] HAL_CAP_PHYDIAG : Capable [ 34.789597] SPECTRAL : Need to fix the capablity check for RADAR (spectral_attach : 231) [ 34.797625] SPECTRAL : get_capability not registered [ 34.802592] HAL_CAP_RADAR : Capable [ 34.806216] SPECTRAL : Need to fix the capablity check for SPECTRAL [ 34.806216] (spectral_attach : 236) [ 34.816057] SPECTRAL : get_capability not registered [ 34.820993] HAL_CAP_SPECTRAL_SCAN : Capable [ 34.825148] SPECTRAL : get_tsf64 not registered [ 34.829709] spectral_init_netlink 52 NULL SKB [ 34.833989] Green-AP : Green-AP : Attached [ 34.834020] [ 34.839612] Green-AP : Attached [ 34.842705] ol_ath_smart_ant_attach: Hardware doest not support Smart Antenna. [ 34.849921] ol_if_dfs_setup: called [ 34.853452] ol_if_dfs_attach: called; ptr=daf0d984, radar_info=db6bbbd0 [ 34.860637] ol_ath_rtt_meas_report_attach: called [ 34.864885] ol_ath_attach() UMAC attach . [ 34.868822] ol_if_dfs_configure: called [ 34.872633] ol_if_dfs_configure: FCC domain [ 34.876788] ol_if_dfs_disable: called [ 34.880506] ol_ath_attach: Calling ol_if_dfs_configure [ 34.885567] __ol_ath_attach: init tx/rx TODO [ 34.889846] __ol_ath_attach: hard_header_len reservation 58 [ 34.906529] Initializing Pktlogs for 11ac [ 34.919650] __sa_init_module [ 35.044392] [ol_ath_iw_setcountry][1438] *p=47, *(p+1)=42 [ 35.048797] isCountryCodeValid: EEPROM regdomain 0x0 [ 35.053701] ol_regdmn_init_channels: !avail mode 0x680c (0x2) flags 0x2150 [ 35.060574] ol_regdmn_init_channels: !avail mode 0x680c (0x1) flags 0x140 [ 35.067353] ol_regdmn_init_channels: !avail mode 0x680c (0x20) flags 0xd0 [ 35.074133] ol_regdmn_init_channels: !avail mode 0x680c (0x40) flags 0x150 [ 35.080974] ol_regdmn_init_channels: !avail mode 0x680c (0x1000) flags 0x10100 [ 35.088191] ol_regdmn_init_channels: !avail mode 0x680c (0x8000) flags 0x20100 [ 35.095376] ol_regdmn_init_channels: !avail mode 0x680c (0x10000) flags 0x40100 [ 35.102686] ol_regdmn_init_channels: !avail mode 0x680c (0x20000) flags 0x100100 [ 35.110059] ol_regdmn_init_channels: !avail mode 0x680c (0x40000) flags 0x200100 [ 35.117400] ol_regdmn_init_channels: !avail mode 0x680c (0x80000) flags 0x400100 [ 35.124804] ol_regdmn_init_channels: !avail mode 0x680c (0x100000) flags 0x800100 [ 35.198937] ath_ioctl: SIOC80211IFCREATE CALLED [ 35.202467] wmi_unified_vdev_create_send: ID = 0 VAP Addr = b4:75:0e:c0:03:6d: [ 35.209746] Setting dscp for vap id: 0 [ 35.213402] __ieee80211_smart_ant_init: Smart Antenna is not supported [ 35.219993] VAP device ath0 created osifp: (da236cc0) os_if: (daf70000) [ 35.234457] Set freq vap stop send + daf70000 [ 35.237769] OL vap_stop + [ 35.240424] wmi_unified_vdev_stop_send for vap 0 (d9fa0000) [ 35.245985] OL vap_stop - [ 35.248578] STOPPED EVENT for vap 0 (d9fa0000) [ 35.253108] Set freq vap stop send -daf70000 [ 35.378975] Set wait done --daf70000 [ 35.396376] ol_ath_wmm_update: [ 35.414214] [ 35.414214] DES SSID SET= [ 35.420118] [ 35.420118] DES SSID SET=Linksys07450 [ 35.443767] OL vap_stop + [ 35.445392] wmi_unified_vdev_stop_send for vap 0 (d9fa0000) [ 35.451171] STOPPED EVENT for vap 0 (d9fa0000) [ 35.455357] OL vap_stop - [ 35.489440] [wifi0] FWLOG: [35146] WAL_DBGID_TX_AC_BUFFER_SET ( 0x3, 0x1e, 0x460, 0x460, 0x0 ) [ 35.497000] [wifi0] FWLOG: [35146] WAL_DBGID_TX_AC_BUFFER_SET ( 0x12, 0x1e, 0x460, 0x460, 0x0 ) [ 35.505685] [wifi0] FWLOG: [35146] WAL_DBGID_TX_AC_BUFFER_SET ( 0x45, 0x1e, 0x460, 0x460, 0x0 ) [ 35.514370] [wifi0] FWLOG: [35146] WAL_DBGID_TX_AC_BUFFER_SET ( 0x67, 0x1e, 0x460, 0x460, 0x0 ) [ 35.523055] [wifi0] FWLOG: [35152] WHAL_ERROR_RECV_STOPPCU ( 0x110298a, 0x3 ) [ 35.530178] [wifi0] FWLOG: [35152] WHAL_ERROR_RESET_PM ( ) [ 35.589065] wmi_unified_scan_start_send for vap 0 (d9fa0000) [ 35.594001] 8021q: adding VLAN 0 to HW filter on device ath0 /sbin/wifi: eval: line 1: ubus: not found /sbin/wifi: eval: line 1: ubus: not found /sbin/wifi: eval: line 1: ubus: not found /sbin/wifi: eval: line 1: ubus: not found /sbin/wifi: eval: line 1: ubus: not found /sbin/wifi: eval: line 1: ubus: not found /sbin/wifi: eval: line 1: ubus: not found /sbin/wifi: eval: line 1: ubus: not found Configuration file: /var/run/hostapd-ath0.conf [ 36.078006] ieee80211_ioctl_siwmode: imr.ifm_active=131712, new mode=3, valid=1 [ 36.084536] Scan in progress.. Cancelling it [ 36.088909] ol_scan_cancel for (d9fa0000) [ 36.093876] OL vap_stop + [ 36.095470] wmi_unified_vdev_stop_send for vap 0 (d9fa0000) [ 36.101062] OL vap_stop - [ 36.101093] STOPPED EVENT for vap 0 (d9fa0000) [ 36.148078] DEVICE IS DOWN ifname=ath0 [ 36.150952] DEVICE IS DOWN ifname=ath0 ath0: Could not connect to kernel driver [ 36.155201] OL vap_stop + [ 36.161012] wmi_unified_vdev_stop_send for vap 0 (d9fa0000) [ 36.166510] OL vap_stop - [ 36.166572] STOPPED EVENT for vap 0 (d9fa0000) Using interface ath0 with hwaddr b4:75:0e:c0:03:6d and ssid 'Linksys07450' WPS: Converting display to virtual_display for WPS 2.0 compliance WPS: Converting push_button to virtual_push_button for WPS 2.0 compliance hostapd_init_wps: config methods=2288 [ 36.299031] wmi_unified_scan_start_send for vap 0 (d9fa0000) [ 36.303842] 8021q: adding VLAN 0 to HW filter on device ath0 name=[ath0] lan_ifname=[br0] cmd=[brctl addif br0 ath0 ] [ 36.317900] device ath0 entered promiscuous mode [ 36.324586] br0: port 2(ath0) entered forwarding state [ 36.329209] br0: port 2(ath0) entered forwarding state ========Get wireless 2.4G MAC: B4:75:0E:C0:03:6D======== GN_MAC: mac B4:75:0E:C0:03:6D GN_MAC: get GN mac B6:75:0E:C0:03:6D [ 39.068978] osif_vap_init: Timeout waiting for vap to stop...returning cmd=[insmod /lib/modules/3.4.0/qdpc-host.ko rx_pkt_align=1 use_nss=1 ] [ 39.106779] parent cap:128, dev cap:256 [ 39.109621] Setting MPS to 128 [ 39.112652] PCI: enabling device 0000:01:00.0 (0144 -> 0146) [ 39.118431] PCIe MSI Interrupt Enabled [ 39.121993] qdpc_map_sysctl_regs() Mapping sysctl [ 39.126710] BAR:0 vaddr=0xe0a00000 busaddr=08000000 offset=0 len=65536 [ 39.133208] qdpc_map_epmem() Mapping epmem [ 39.137269] BAR:2 vaddr=0xe0a20000 busaddr=08010000 offset=0 len=65536 [ 39.143798] qdpc_map_dma_regs() Mapping dma registers [ 39.148828] BAR:3 vaddr=0xe0a40000 busaddr=08020000 offset=0 len=65536 [ 39.155326] qdpc-host version v36.7.3.23 Quantenna Communications Inc. [ 39.161918] Tx Descriptor table: uncache virtual addr: 0xffda4000 paddr: 0x5b7f2000 [ 39.169478] Rx Descriptor table: uncache virtual addr: 0xffda45a0 paddr: 0x5b7f25a0 [ 39.177100] EP_handled_idx: uncache virtual addr: 0xffda51a0 paddr: 0x5b7f31a0 [ 39.185192] host0: Vmac Ethernet found [ 39.188097] nss context created at 00000005 cmd=[ifconfig host0 up ] Starting qtna wifi done cmd=[qtna_wifi.sh 0 10.254.254.253 ] cmd=[tftpd -s /tmp -c -l -P 8350 ] cmd=[cron ] The boot is UNKNOWN tftp server started tftpd: standalone socket [ 39.237956] PCI memory is little endian [ 39.240737] EP map start addr : 0x00000000, Host memory start : 0x41500000 [ 39.247610] Setting HOST ready... [ 39.297969] Requested DMA mask:0xffffffff [ 39.300937] priv->pdev->mask:0xffffffff [ 39.304748] set dma_mask = DMA_BIT_MASK(64):0xffffffffffffffff [ 39.310621] EP FW load request... [ 39.313870] Start download Firmware u-boot.bin... cron: No such file or directory cron: created [HTTPD Starting on /www] cmd=[httpd ] [ 39.491815] device host0 entered promiscuous mode [ 39.495532] br0: port 3(host0) entered forwarding state [ 39.500718] br0: port 3(host0) entered forwarding state waiting for QTN starting...... [ 39.558263] FW Data[0]: VA:0xe09ec000 PA:0x5a900000 Sz=68772.. [ 39.607966] done! [ 39.657981] Image. Sz:68772 State:0xc [ 39.660668] Image downloaded....! [ 39.663917] Start booting EP... [ 40.204873] OL vap_start + [ 40.206529] wmi_unified_vdev_start_send for vap 0 (d9fa0000) [ 40.212183] OL vap_start - [ 40.218056] ol_vdev_start_resp_ev for vap 0 (d9fa0000) [ 40.222180] ol_ath_vap_join: join operation is only for STA/IBSS mode [ 40.228616] ol_ath_wmm_update: [ 40.231677] wmi_unified_vdev_up_send for vap 0 (d9fa0000) [ 40.237019] __ieee80211_smart_ant_init: Smart Antenna is not supported [ 40.243611] Notification to UMAC VAP layer unknown sockaddr family on listen socket - 58336 cmd=[dnsmasq -h -i br0 -c 0 -r /tmp/resolv.conf ] dnsmasq: unknown user or group: nobody cmd=[route del -net 224.0.0.0 netmask 240.0.0.0 dev br0 ] route: SIOCDELRT: No such process cmd=[route add -net 224.0.0.0 netmask 240.0.0.0 dev br0 ] cmd=[cesmDNS -o /tmp/.mdns_host_info -d -h Linksys07450 -l 192.168.1.1 ] br0 192.168.1.100 86400 write_dhcpd_conf: file=/tmp/dhcpd-br0.conf, ifname=br0, lan_ip=lan_ipaddr lan_mask=lan_netmask cmd=[dhcpd -cf /tmp/dhcpd-br0.conf -lf /tmp/dhcpd.leases -df /tmp/udhcpd.leases -pf /var/run/dhcpd.pid br0 ] Internet Systems Consortium DHCP Server 4.1.1-P1 Copyright 2004-2010 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/ Wrote 0 leases to leases file. Listening on Socket/br0/192.168.1.0/24 Sending on Socket/br0/192.168.1.0/24 cmd=[upnp -D -W eth0 ] zebra disabled. enter start_cifs... read_disk_data: bus number=2 UPnP::upnp_device_attach:br0: attach InternetGatewayDevice.xml ssdp byebye UPnP::upnp_init:UPnP daemon is ready to run Failed trying to open `/proc/sestat': No such file or directory read_disk_data: bus number=2 Failed trying to open `/proc/sestat': No such file or directory enter write_cifs_config_file...1 hahaha enter add_accounts... add_accounts: buf=[admin:admin:admin:/:rw] add_accounts: write=rw, basic_info[0]=admin, new_passwd=admin cmd=[adduser -p admin admin -g root ] addgroup: gid '0' in use adduser: /tmp/ftproot/admin: No such file or directory Changing password for admin set new password over. Password for admin changed by root admin: eval /usr/sbin/smbadduser admin admin cmd=[/usr/sbin/smbadduser admin admin ] [ 42.857981] PCI memory is little endian [ 42.860762] DMA offset : 0xbeb00000, no need to reset the value. [ 42.866760] Setting HOST ready... [ 42.917963] Requested DMA mask:0xffffffff [ 42.920930] priv->pdev->mask:0xffffffff [ 42.924742] set dma_mask = DMA_BIT_MASK(64):0xffffffffffffffff [ 42.930584] EP FW load request... [ 42.933864] Start download Firmware topaz-linux.lzma.img... cmd=[adduser -p guest guest -g guest ] adduser: /tmp/ftproot/guest: No such file or directory Changing password for guest set new password over. Password for guest changed by root cmd=[/usr/sbin/smbd -D ] [ 48.327928] br0: port 1(eth1) entered forwarding state cmd=[/usr/sbin/nmbd -D ] read_disk_data: bus number=2 Failed trying to open `/proc/sestat': No such file or directory read_disk_data: bus number=2 Failed trying to open `/proc/sestat': No such file or directory enter write_cifs_config_file...1 hahaha enter add_accounts... add_accounts: buf=[admin:admin:admin:/:rw] add_accounts: write=rw, basic_info[0]=admin, new_passwd=admin cmd=[adduser -p admin admin -g root ] addgroup: gid '0' in use adduser: /tmp/ftproot/admin: No such file or directory Changing password for admin set new password over. Password for admin changed by root admin: eval /usr/sbin/smbadduser admin admin cmd=[/usr/sbin/smbadduser admin admin ] [ 49.748890] FW Data[0]: VA:0xe2001000 PA:0x59b00000 Sz=1048576.. [ 49.797969] done! [ 49.800000] FW Data[1]: VA:0xe2101000 PA:0x59b00000 Sz=1048576.. [ 49.847953] done! [ 49.849671] FW Data[2]: VA:0xe2201000 PA:0x59b00000 Sz=1048576.. [ 49.897969] done! [ 49.900000] FW Data[3]: VA:0xe2301000 PA:0x59b00000 Sz=1048576.. [ 49.947953] done! [ 49.948890] FW Data[4]: VA:0xe2401000 PA:0x59b00000 Sz=49885.. [ 49.997969] done! [ 50.047953] Image. Sz:4244189 State:0xc [ 50.051671] Image downloaded....! [ 50.054045] Start booting EP... cmd=[adduser -p guest guest -g guest ] adduser: /tmp/ftproot/guest: No such file or directory Changing password for guest set new password over. Password for guest changed by root cmd=[/usr/sbin/nmbd -D ] Disk disconnected, don't start Twonky MediaServer cmd=[killall -9 vsftpd ] killall: vsftpd: no process killed do not work Enter into FTP root dir fail!It's not exist. cmd=[/usr/sbin/jcpd ] cmd=[nlinkd ] [ 51.367947] br0: port 2(ath0) entered forwarding state lltd:echo Linksys07450 > /proc/sys/kernel/hostname LLTD: wireless interface argument is ath0. cmd=[/sbin/monitor_cable ] cmd=[/usr/sbin/arp -c ] /usr/sbin/arp: No such file or directory ---- begin start_wan ---- [ 51.574289] ADDRCONF(NETDEV_UP): eth0: link is not ready .... Begin monitor_cable: first wan link = 1 ....cmd=[touch /tmp/hosts ] start_dhcpc:=====( wan_or_lan=wan )===== /usr/sbin/dhclient -nw -cf /tmp/dhcpc-wan.conf -sf /tmp/dhcpc -lf /tmp/dhcpc-wan.leases -pf /var/run/dhcpc-wan.pid eth0 & cmd=[killall wan_auto_detect ] killall: wan_auto_detect: no process killed cmd=[/sbin/wan_auto_detect ] start_wan_ipv6: [IPV6] eth0 dhcp DEBUG, adapter index 9 DEBUG, adapter hardware address b4:75:0e:c0:03:6c DEBUG, adapter index 9 DEBUG, adapter hardware address b4:75:0e:c0:03:6c Send PPPoE PADI Send 32 bytes dhcpc_main,reason[PREINIT] cmd=[touch /tmp/hosts ] start_wan_ipv6: [IPV6] 0 TIMER IDLE Disk (8, 0) added. read_disk_data: bus number=2 Failed trying to open `/proc/sestat': No such file or directory The newly added disk is a foreign disk. signalling USER1 mount_foreign_disk: dev name /dev/sda1 type_field=83 Unknown FileSystem Logical sector size is zero.[ 52.934770] FAT-fs (sda1): utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive! mount_foreign_disk: dosfsck -s /dev/sda1 > /tmp/volume_label_0[ 52.946485] FAT-fs (sda1): bogus number of reserved sectors [ 52.956888] FAT-fs (sda1): Can't find a valid FAT filesystem pOrHo mount_foreign_disk: try to mount by every filesystem. mount_foreign_disk: mount result=-1 [ 53.009340] ufsd: failed to mount sda1 Failed to mount /dev/sda1 as type vfat: Invalid argument. mount_foreign_disk: mount result=-1 Failed to mount /dev/sda1 as type ufsd: Invalid argument. mount_foreign_disk: mount result=-1 Failed to mount /dev/sda1 as type iso9660: No such device. Warning: Failing trying to mount a f[ 53.072164] FAT-fs (sda2): utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive! oreign share. mount_foreign_disk: dev name /dev/sda2 type_field[ 53.088503] FAT-fs (sda2): bogus number of reserved sectors [ 53.098812] FAT-fs (sda2): Can't find a valid FAT filesystem =83 Unknown FileSystem Logical sector size is zero. mount_foreign_disk: dosfsck -s /dev/sda2 > /tmp/volume_label_JEx7DP mount_foreign_disk: try to mount by every filesystem. mount_foreign_disk: mount result=-1[ 53.149390] ufsd: failed to mount sda2 Failed to mount /dev/sda2 as type vfat: Invalid argument. mount_foreign_disk: mount result=-1 Failed to mount /dev/sda2 as type ufsd: Invalid argument. mount_foreign_disk: mount result=-1 Failed to mount /dev/sda2 as type iso9660: No such device. Warning: Fa[ 53.221368] FAT-fs (sda3): utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive! iling trying to mount a foreign share. mount_foreign_disk: dev [ 53.236238] FAT-fs (sda3): bogus number of reserved sectors [ 53.246672] FAT-fs (sda3): Can't find a valid FAT filesystem name /dev/sda3 type_field=83 Unknown FileSystem Logical sector size is zero. mount_foreign_disk: dosfsck -s /dev/sda3 > /tmp/volume_label_VgjyRz mount_foreign_disk: try to mount by every filesystem. mount_foreign_disk: mount result=-1 [ 53.279662] ufsd: failed to mount sda3 Failed to mount /dev/sda3 as type vfat: Invalid argument. mount_foreign_disk: mount result=-1 Failed to mount /dev/sda3 as type ufsd: Invalid argument. mount_foreign_disk: mount result=-1 Failed to mount /dev/sda3 as type iso9660: No such device. Warning: Failing trying to mount a foreign share. mount_foreign_disk: mount disk over, begin to start services, mount_success=0 mount_foreign_disk: done!!!! TIMER IDLE Restart service=[unplug_wan_cable] stop_dhcp6c cmd=[/usr/sbin/ip -6 addr flush dev eth0 scope global ] cmd=[ip6tables -t filter -F ] cmd=[ip6tables -t filter -Z ] cmd=[ip6tables -t mangle -F ] cmd=[ip6tables -t mangle -Z ] Set 0 to /proc/sys/net/ipv6/conf/all/forwarding ... delete tunnel 6rd failed: No such device cmd=[killall -9 waninfo ] stop_wan_ipv6: done RTNETLINK answers: No such file or directory /proc/sys/net/ctf/wan_mode: No such file or directory cmd=[killall nlinkd ] cmd=[killall -9 nlinkd ] killall: nlinkd: no process killed [ 53.620181] [hnd_unhook]: hook already unregistered [ 53.626460] [hnd_unhook]: hook already unregistered cmd=[killall -9 qos_bw_detect ] killall: qos_bw_detect: no process killed cmd=[killall igmprt ] killall: igmprt: no process killed cmd=[killall pppd ] killall: pppd: no process killed cmd=[killall -9 pppd ] killall: pppd: no process killed cmd=[killall ip-up ] killall: ip-up: no process killed cmd=[killall ip-down ] killall: ip-down: no process killed cmd=[killall -15 pppd ] killall: pppd: no process killed [ 54.527928] br0: port 3(host0) entered forwarding state cmd=[killall -9 pppd ] killall: pppd: no process killed cmd=[killall -15 l2tpd ] killall: l2tpd: no process killed cmd=[killall -9 l2tpd ] killall: l2tpd: no process killed cmd=[killall -9 listen ] killall: listen: no process killed cmd=[killall -9 waninfo ] killall: waninfo: no process killed stop_dhcpc cmd=[killall bpalogin ] killall: bpalogin: no process killed cmd=[killall -9 bpalogin ] killall: bpalogin: no process killed cmd=[killall -9 pppd ] killall: pppd: no process killed cmd=[killall -9 pptp ] killall: pptp: no process killed cmd=[killall -9 ntpclient ] killall: ntpclient: no process killed cmd=[killall -9 redial ] killall: redial: no process killed cmd=[killall wan_auto_detect ] IDLE Hit enter to continue...Hit enter to continue...signalling USER1 Restart service=[wan_auto_detect] stop_dhcp6c cmd=[/usr/sbin/ip -6 addr flush dev eth0 scope global ] cmd=[ip6tables -t filter -F ] cmd=[ip6tables -t filter -Z ] cmd=[ip6tables -t mangle -F ] cmd=[ip6tables -t mangle -Z ] Set 0 to /proc/sys/net/ipv6/conf/all/forwarding ... delete tunnel 6rd failed: No such device cmd=[killall -9 waninfo ] killall: waninfo: no process killed stop_wan_ipv6: done /proc/sys/net/ctf/wan_mode: No such file or directory cmd=[killall -9 nlinkd ] killall: nlinkd: no process killed [ 57.659137] [hnd_unhook]: hook already unregistered [ 57.665417] [hnd_unhook]: hook already unregistered cmd=[killall -9 qos_bw_detect ] killall: qos_bw_detect: no process killed cmd=[killall igmprt ] killall: igmprt: no process killed cmd=[killall pppd ] killall: pppd: no process killed [ 57.907966] EP boot successful, starting config... [ 57.957981] Connection established with Target BBIC4 board cmd=[killall -9 pppd ] killall: pppd: no process killed cmd=[killall ip-up ] killall: ip-up: no process killed cmd=[killall ip-down ] killall: ip-down: no process killed cmd=[killall -15 pppd ] killall: pppd: no process killed cmd=[killall -9 pppd ] killall: pppd: no process killed cmd=[killall -15 l2tpd ] killall: l2tpd: no process killed cmd=[killall -9 l2tpd ] killall: l2tpd: no process killed cmd=[killall -9 listen ] killall: listen: no process killed cmd=[killall -9 waninfo ] killall: waninfo: no process killed stop_dhcpc cmd=[killall bpalogin ] killall: bpalogin: no process killed cmd=[killall -9 bpalogin ] killall: bpalogin: no process killed cmd=[killall -9 pppd ] killall: pppd: no process killed cmd=[killall -9 pptp ] killall: pptp: no process killed cmd=[killall -9 ntpclient ] killall: ntpclient: no process killed cmd=[killall -9 redial ] killall: redial: no process killed cmd=[killall wan_auto_detect ] killall: wan_auto_detect: no process killed [ 59.322086] ADDRCONF(NETDEV_UP): eth0: link is not ready cmd=[touch /tmp/hosts ] start_dhcpc:=====( wan_or_lan=wan )===== /usr/sbin/dhclient -nw -cf /tmp/dhcpc-wan.conf -sf /tmp/dhcpc -lf /tmp/dhcpc-wan.leases -pf /var/run/dhcpc-wan.pid eth0 & cmd=[killall wan_auto_detect ] dhcpc_main,reason[PREINIT] killall: wan_auto_detect: no process killed cmd=[/sbin/wan_auto_detect ] start_wan_ipv6: [IPV6] eth0 dhcp DEBUG, adapter index 9 DEBUG, adapter hardware address b4:75:0e:c0:03:6c DEBUG, adapter index 9 DEBUG, adapter hardware address b4:75:0e:c0:03:6c Send PPPoE PADI Send 32 bytes cmd=[touch /tmp/hosts ] cmd=[nlinkd ] start_wan_ipv6: [IPV6] 0 IDLE Hit enter to continue...[ 60.462480] nss_gmac: eth0 1000Mbps FullDuplex [ 61.475757] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready 4000001F bit 0 - Ethernet interface bit 1 - PCIE EP driver bit 2 - PCIE RC driver bit 3 - WiFi driver bit 4 - Rpcd server bit 30 - Calstate mode bit 31 - System boot up completely killall: qtna_state_check: no process killed send pppoe DEBUG, adapter index 9 DEBUG, adapter hardware address b4:75:0e:c0:03:6c Send PPPoE PADI Send 32 bytes dhcpc_main,reason[BOUND] bound: interface=eth0, new_ip_ipaddr=192.168.12.240 cmd=[killall -SIGUSR1 upnp ] clear upnp entry cmd=[touch /tmp/hosts ] cmd=[killall -10 dhcpd ] dhcpd pid is 7836848 cmd=[killall -10 gn-dhcpd ] killall: gn-dhcpd: no process killed cmd=[killall gn-dhcpd ] killall: gn-dhcpd: no process killed br0 192.168.1.100 86400 write_dhcpd_conf: file=/tmp/dhcpd-br0.conf, ifname=br0, lan_ip=lan_ipaddr lan_mask=lan_netmask cmd=[dhcpd -cf /tmp/dhcpd-br0.conf -lf /tmp/dhcpd.leases -df /tmp/udhcpd.leases -pf /var/run/dhcpd.pid br0 ] Internet Systems Consortium DHCP Server 4.1.1-P1 Copyright 2004-2010 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/ Wrote 0 leases to leases file. Listening on Socket/br0/192.168.1.0/24 Sending on Socket/br0/192.168.1.0/24 There's already a DHCP server running. kill 2138 cmd=[killall dnsmasq ] Hit enter to continue...killall: dnsmasq: no process killed cmd=[dnsmasq -h -i br0 -c 0 -r /tmp/resolv.conf ] Hit enter to continue...begin start_firewall.cmd=[iptables-restore /tmp/.ipt ] Set 600 to /proc/sys/net/netfilter/nf_conntrack_tcp_timeout_established ... Set 65 to /proc/sys/net/netfilter/nf_conntrack_udp_timeout ... cmd=[killall -SIGUSR1 upnp ] =====( auto detect - dhcp connected!! )===== reset upnp entry cmd=[killall igmprt ] killall: igmprt: no process killed Hit enter to continue...[ 68.432489] >> wlan igmp_snooping initial.... begin to start wan service! [ 68.436551] >> wlan0 index 15 name:[ath0]. [ 68.442611] >> wlan1 index 16 name[host0]. cmd=[killall -9 ez-ipupdate ] killall: ez-ipupdate: no process killed cmd=[killall -9 tzoupdate-1.11 ] killall: tzoupdate-1.11: no process killed cmd=[killall process_monitor ] killall: process_monitor: no process killed cmd=[process_monitor ] cmd=[killall zebra ] num_servers=1 killall: zebra: no process killed cmd=[killall ripd ] gethostbyname 1.pool.ntp.org successed!! func[do_ntp],ntp server is:[0.pool.ntp.org 1.pool.ntp.org 2.pool.ntp.org] cmd=[ntpclient -h 4 0.pool.ntp.org 1.pool.ntp.org 2.pool.ntp.org -l -s -i 5 -c 1 ] killall: ripd: no process killed cmd=[killall -9 cron ] File /tmp/ntp_firstboot not exist!, First boot!! Hit enter to continue...cmd=[cron ] cmd=[killall -9 qos_bw_detect ] killall: qos_bw_detect: no process killed cmd=[qos ] cmd=[killall -9 vsftpd ] cmd=[qos_bw_detect ] return code=0, from ntpclient -08,-08,-08 1 1 Time update successfully, adjust time. (adjust:-8.000000) Year:2020,Month:7,Day:10,Hour:11,Min:52,Sec:40 TimeZone:4,i=4,starthour=2,startm=3,endhour=1,endmonth=11,diffm=0,j=13 Adjust daylight dstBias:3600 ,Year:2020,Month:7,Day:10,Hour:12,Min:52,Sec:40 killall: vsftpd: no process killed cmd=[filtersync ] _do_qos:start nss when disable QoS........ cmd=[radvd -C /tmp/radvd.conf ] qos_bw_detect wait_time = 172800 seconds We need to re-update after 86400 seconds Hit enter to continue... BusyBox v1.19.4 (2018-09-28 19:11:11 EDT) built-in shell (ash) Enter 'help' for a list of built-in commands. ~ # df Filesystem 1K-blocks Used Available Use% Mounted on rootfs 26604 52 25156 0% / mtd:ubi_rootfs 29952 29952 0 100% /rom tmpfs 243868 352 243516 0% /tmp tmpfs 512 0 512 0% /dev ubi0:ubi_rootfs_data 26604 52 25156 0% /overlay overlayfs:/overlay 26604 52 25156 0% / ~ # mount rootfs on / type rootfs (rw) mtd:ubi_rootfs on /rom type squashfs (ro,relatime) proc on /proc type proc (rw,noatime) sysfs on /sys type sysfs (rw,noatime) tmpfs on /tmp type tmpfs (rw,nosuid,nodev,noatime) tmpfs on /dev type tmpfs (rw,noatime,size=512k,mode=755) devpts on /dev/pts type devpts (rw,noatime,mode=600) ubi0:ubi_rootfs_data on /overlay type ubifs (rw,noatime) overlayfs:/overlay on / type overlayfs (rw,noatime,lowerdir=/,upperdir=/overlay) ramfs on /foreign_shares type ramfs (rw,relatime) debugfs on /sys/kernel/debug type debugfs (rw,relatime) none on /proc/bus/usb type usbfs (rw,relatime) ~ # cat /proc/mtd dev: size erasesize name mtd0: 04000000 00020000 "rootfs" mtd1: 00010000 00010000 "sbl1" mtd2: 00020000 00010000 "mibib" mtd3: 00020000 00010000 "sbl2" mtd4: 00030000 00010000 "sbl3" mtd5: 00010000 00010000 "ddrconfig" mtd6: 00010000 00010000 "ssd" mtd7: 00030000 00010000 "tz" mtd8: 00020000 00010000 "rpm" mtd9: 00040000 00010000 "oldappsbl" mtd10: 00040000 00010000 "APPSBLENV" mtd11: 00020000 00010000 "ART" mtd12: 00050000 00010000 "uboot" mtd13: 00020000 00010000 "oldnss1" mtd14: 00020000 00010000 "nvram" mtd15: 001e0000 00010000 "oldkernel" mtd16: 001d1000 0001f000 "kernel" mtd17: 01d2f000 0001f000 "ubi_rootfs" mtd18: 01de9000 0001f000 "ubi_rootfs_data" ~ # ls -ls /dev/ubi ubi0 ubi0_0 ubi0_1 ubi0_2 ubi_ctrl ~ # ls -ls /dev/ubi* 0 crw-r--r-- 1 root root 248, 0 Jan 1 1970 /dev/ubi0 0 crw-r--r-- 1 root root 248, 1 Jan 1 1970 /dev/ubi0_0 0 crw-r--r-- 1 root root 248, 2 Jan 1 1970 /dev/ubi0_1 0 crw-r--r-- 1 root root 248, 3 Jan 1 1970 /dev/ubi0_2 0 crw-r--r-- 1 root root 10, 58 Jan 1 1970 /dev/ubi_ctrl


[ 0.000000] Booting Linux on physical CPU 0x0 [ 0.000000] Linux version 5.4.50 (openwrt@tchome) (gcc version 8.4.0 (OpenWrt GCC 8.4.0 r13773-a6160de3f7)) #0 SMP Fri Jul 10 23:09:18 2020 [ 0.000000] CPU: ARMv7 Processor [512f04d0] revision 0 (ARMv7), cr=10c5787d [ 0.000000] CPU: div instructions available: patching division code [ 0.000000] CPU: PIPT / VIPT nonaliasing data cache, PIPT instruction cache [ 0.000000] OF: fdt: Machine model: Linksys EA8300 V1 WiFi Router [ 0.000000] Memory policy: Data cache writealloc [ 0.000000] On node 0 totalpages: 122880 [ 0.000000] Normal zone: 960 pages used for memmap [ 0.000000] Normal zone: 0 pages reserved [ 0.000000] Normal zone: 122880 pages, LIFO batch:31 [ 0.000000] percpu: Embedded 15 pages/cpu s29900 r8192 d23348 u61440 [ 0.000000] pcpu-alloc: s29900 r8192 d23348 u61440 alloc=15*4096 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 121920 [ 0.000000] Kernel command line: [ 0.000000] Bootloader command line (ignored): console=ttyHSL1,115200n8 ubi.mtd=rootfs root=mtd:ubi_rootfs [ 0.000000] Dentry cache hash table entries: 65536 (order: 6, 262144 bytes, linear) [ 0.000000] Inode-cache hash table entries: 32768 (order: 5, 131072 bytes, linear) [ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off [ 0.000000] Memory: 478444K/491520K available (5712K kernel code, 165K rwdata, 884K rodata, 1024K init, 222K bss, 13076K reserved, 0K cma-reserved, 0K highmem) [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 [ 0.000000] rcu: Hierarchical RCU implementation. [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies. [ 0.000000] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16 [ 0.000000] clocksource: dg_timer: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 305801671480 ns [ 0.000008] sched_clock: 32 bits at 6MHz, resolution 160ns, wraps every 343597383600ns [ 0.000021] Switching to timer-based delay loop, resolution 160ns [ 0.000212] Calibrating delay loop (skipped), value calculated using timer frequency.. 12.50 BogoMIPS (lpj=62500) [ 0.000232] pid_max: default: 32768 minimum: 301 [ 0.000379] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 0.000398] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 0.001099] CPU: Testing write buffer coherency: ok [ 0.002096] Setting up static identity map for 0x42300000 - 0x42300060 [ 0.002254] rcu: Hierarchical SRCU implementation. [ 0.002682] smp: Bringing up secondary CPUs ... [ 0.004484] smp: Brought up 1 node, 2 CPUs [ 0.004501] SMP: Total of 2 processors activated (25.00 BogoMIPS). [ 0.004511] CPU: All CPU(s) started in SVC mode. [ 0.014143] random: get_random_u32 called from 0xc0541e44 with crng_init=0 [ 0.014199] VFP support v0.3: implementor 51 architecture 64 part 4d variant 2 rev 0 [ 0.014364] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [ 0.014392] futex hash table entries: 512 (order: 3, 32768 bytes, linear) [ 0.014501] pinctrl core: initialized pinctrl subsystem [ 0.015616] NET: Registered protocol family 16 [ 0.015895] DMA: preallocated 256 KiB pool for atomic coherent allocations [ 0.017253] cpuidle: using governor ladder [ 0.017315] cpuidle: using governor menu [ 0.047968] usbcore: registered new interface driver usbfs [ 0.048060] usbcore: registered new interface driver hub [ 0.048148] usbcore: registered new device driver usb [ 0.048204] pps_core: LinuxPPS API ver. 1 registered [ 0.048217] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [ 0.048250] PTP clock support registered [ 0.049978] clocksource: Switched to clocksource dg_timer [ 0.050788] thermal_sys: Registered thermal governor 'step_wise' [ 0.053364] NET: Registered protocol family 2 [ 0.053906] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 6144 bytes, linear) [ 0.053938] TCP established hash table entries: 4096 (order: 2, 16384 bytes, linear) [ 0.053982] TCP bind hash table entries: 4096 (order: 3, 32768 bytes, linear) [ 0.054037] TCP: Hash tables configured (established 4096 bind 4096) [ 0.054137] UDP hash table entries: 256 (order: 1, 8192 bytes, linear) [ 0.054165] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear) [ 0.054369] NET: Registered protocol family 1 [ 0.054415] PCI: CLS 0 bytes, default 64 [ 0.055655] workingset: timestamp_bits=30 max_order=17 bucket_order=0 [ 0.061524] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 0.061539] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc. [ 0.100925] qcom-pcie 1b500000.pci: 1b500000.pci supply vdda not found, using dummy regulator [ 0.101051] qcom-pcie 1b500000.pci: 1b500000.pci supply vdda_phy not found, using dummy regulator [ 0.101175] qcom-pcie 1b500000.pci: 1b500000.pci supply vdda_refclk not found, using dummy regulator [ 0.101442] qcom-pcie 1b500000.pci: host bridge /soc/pci@1b500000 ranges: [ 0.101466] qcom-pcie 1b500000.pci: Parsing ranges property... [ 0.101516] qcom-pcie 1b500000.pci: IO 0x0fe00000..0x0fefffff -> 0x0fe00000 [ 0.101557] qcom-pcie 1b500000.pci: MEM 0x08000000..0x0fdfffff -> 0x08000000 [ 0.325878] qcom-pcie 1b500000.pci: Link up [ 0.326057] qcom-pcie 1b500000.pci: PCI host bridge to bus 0000:00 [ 0.326082] pci_bus 0000:00: root bus resource [bus 00-ff] [ 0.326103] pci_bus 0000:00: root bus resource [io 0x0000-0xfffff] (bus address [0xfe00000-0xfefffff]) [ 0.326120] pci_bus 0000:00: root bus resource [mem 0x08000000-0x0fdfffff] [ 0.326136] pci_bus 0000:00: scanning bus [ 0.326184] pci 0000:00:00.0: [17cb:0101] type 01 class 0xff0000 [ 0.326357] pci 0000:00:00.0: supports D1 [ 0.326372] pci 0000:00:00.0: PME# supported from D0 D1 D3hot [ 0.326392] pci 0000:00:00.0: PME# disabled [ 0.329944] pci_bus 0000:00: fixups for bus [ 0.329967] PCI: bus0: Fast back to back transfers disabled [ 0.329987] pci 0000:00:00.0: scanning [bus 01-ff] behind bridge, pass 0 [ 0.330127] pci_bus 0000:01: scanning bus [ 0.330423] pci 0000:01:00.0: [1bb5:0008] type 00 class 0x028000 [ 0.330710] pci 0000:01:00.0: reg 0x10: [mem 0x00000000-0x0000ffff pref] [ 0.330889] pci 0000:01:00.0: reg 0x18: [mem 0x00000000-0x0000ffff pref] [ 0.330987] pci 0000:01:00.0: reg 0x1c: [mem 0x00000000-0x0000ffff pref] [ 0.331953] pci 0000:01:00.0: supports D1 [ 0.331967] pci 0000:01:00.0: PME# supported from D0 D1 D3hot [ 0.332013] pci 0000:01:00.0: PME# disabled [ 0.332271] pci 0000:01:00.0: 2.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s x1 link at 0000:00:00.0 (capable of 4.000 Gb/s with 5 GT/s x1 link) [ 0.335773] pci_bus 0000:01: fixups for bus [ 0.335849] PCI: bus1: Fast back to back transfers disabled [ 0.335865] pci_bus 0000:01: bus scan returning with max=01 [ 0.335884] pci 0000:00:00.0: scanning [bus 01-ff] behind bridge, pass 1 [ 0.335903] pci_bus 0000:00: bus scan returning with max=ff [ 0.335938] pci 0000:00:00.0: BAR 8: assigned [mem 0x08000000-0x080fffff] [ 0.335972] pci 0000:01:00.0: BAR 0: assigned [mem 0x08000000-0x0800ffff pref] [ 0.336028] pci 0000:01:00.0: BAR 2: assigned [mem 0x08010000-0x0801ffff pref] [ 0.336082] pci 0000:01:00.0: BAR 3: assigned [mem 0x08020000-0x0802ffff pref] [ 0.336137] pci 0000:00:00.0: PCI bridge to [bus 01-ff] [ 0.336163] pci 0000:00:00.0: bridge window [mem 0x08000000-0x080fffff] [ 0.336369] pcieport 0000:00:00.0: assign IRQ: got 35 [ 0.336893] pcieport 0000:00:00.0: AER: enabled with IRQ 36 [ 0.337490] qcom-pcie 1b700000.pci: 1b700000.pci supply vdda not found, using dummy regulator [ 0.337611] qcom-pcie 1b700000.pci: 1b700000.pci supply vdda_phy not found, using dummy regulator [ 0.337726] qcom-pcie 1b700000.pci: 1b700000.pci supply vdda_refclk not found, using dummy regulator [ 0.337995] qcom-pcie 1b700000.pci: host bridge /soc/pci@1b700000 ranges: [ 0.338023] qcom-pcie 1b700000.pci: Parsing ranges property... [ 0.338065] qcom-pcie 1b700000.pci: IO 0x31e00000..0x31efffff -> 0x31e00000 [ 0.338108] qcom-pcie 1b700000.pci: MEM 0x2e000000..0x31dfffff -> 0x2e000000 [ 0.567397] qcom-pcie 1b700000.pci: Link up [ 0.567561] qcom-pcie 1b700000.pci: PCI host bridge to bus 0001:00 [ 0.567581] pci_bus 0001:00: root bus resource [bus 00-ff] [ 0.567596] pci_bus 0001:00: root bus resource [mem 0x2e000000-0x31dfffff] [ 0.567609] pci_bus 0001:00: scanning bus [ 0.567651] pci 0001:00:00.0: [17cb:0101] type 01 class 0xff0000 [ 0.567801] pci 0001:00:00.0: supports D1 [ 0.567815] pci 0001:00:00.0: PME# supported from D0 D1 D3hot [ 0.567833] pci 0001:00:00.0: PME# disabled [ 0.571432] pci_bus 0001:00: fixups for bus [ 0.571453] PCI: bus0: Fast back to back transfers disabled [ 0.571471] pci 0001:00:00.0: scanning [bus 01-ff] behind bridge, pass 0 [ 0.571591] pci_bus 0001:01: scanning bus [ 0.571780] pci 0001:01:00.0: [168c:003c] type 00 class 0x028000 [ 0.572139] pci 0001:01:00.0: reg 0x10: [mem 0x00000000-0x001fffff 64bit] [ 0.572556] pci 0001:01:00.0: reg 0x30: [mem 0x00000000-0x0000ffff pref] [ 0.573388] pci 0001:01:00.0: supports D1 D2 [ 0.573403] pci 0001:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold [ 0.573449] pci 0001:01:00.0: PME# disabled [ 0.577166] pci_bus 0001:01: fixups for bus [ 0.577243] PCI: bus1: Fast back to back transfers disabled [ 0.577259] pci_bus 0001:01: bus scan returning with max=01 [ 0.577276] pci 0001:00:00.0: scanning [bus 01-ff] behind bridge, pass 1 [ 0.577292] pci_bus 0001:00: bus scan returning with max=ff [ 0.577318] pci 0001:00:00.0: BAR 8: assigned [mem 0x2e000000-0x2e2fffff] [ 0.577342] pci 0001:01:00.0: BAR 0: assigned [mem 0x2e000000-0x2e1fffff 64bit] [ 0.577480] pci 0001:01:00.0: BAR 6: assigned [mem 0x2e200000-0x2e20ffff pref] [ 0.577498] pci 0001:00:00.0: PCI bridge to [bus 01-ff] [ 0.577518] pci 0001:00:00.0: bridge window [mem 0x2e000000-0x2e2fffff] [ 0.577709] pcieport 0001:00:00.0: assign IRQ: got 37 [ 0.578367] pcieport 0001:00:00.0: AER: enabled with IRQ 38 [ 0.578964] qcom-pcie 1b900000.pci: 1b900000.pci supply vdda not found, using dummy regulator [ 0.579086] qcom-pcie 1b900000.pci: 1b900000.pci supply vdda_phy not found, using dummy regulator [ 0.579188] qcom-pcie 1b900000.pci: 1b900000.pci supply vdda_refclk not found, using dummy regulator [ 0.579446] qcom-pcie 1b900000.pci: host bridge /soc/pci@1b900000 ranges: [ 0.579470] qcom-pcie 1b900000.pci: Parsing ranges property... [ 0.579512] qcom-pcie 1b900000.pci: IO 0x35e00000..0x35efffff -> 0x35e00000 [ 0.579548] qcom-pcie 1b900000.pci: MEM 0x32000000..0x35dfffff -> 0x32000000 [ 1.729990] qcom-pcie 1b900000.pci: Phy link never came up [ 1.731998] qcom-pcie 1b900000.pci: cannot initialize host [ 1.732373] qcom-pcie: probe of 1b900000.pci failed with error -110 [ 1.734653] L2 @ QSB rate. Forcing new rate. [ 1.734881] L2 @ 384000 KHz [ 1.735064] CPU0 @ 800000 KHz [ 1.735078] CPU1 @ QSB rate. Forcing new rate. [ 1.735207] CPU1 @ 384000 KHz [ 1.738963] gsbi 16300000.gsbi: GSBI port protocol: 6 crci: 0 [ 1.739660] gsbi 1a200000.gsbi: GSBI port protocol: 3 crci: 0 [ 1.741208] Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled [ 1.742019] msm_serial 16340000.serial: msm_serial: detected port #0 [ 1.742072] msm_serial 16340000.serial: uartclk = 7372800 [ 1.742143] 16340000.serial: ttyMSM0 at MMIO 0x16340000 (irq = 39, base_baud = 460800) is a MSM [ 1.742180] msm_serial: console setup on port #0 [ 2.630565] printk: console [ttyMSM0] enabled [ 2.635571] msm_serial: driver initialized [ 2.644505] loop: module loaded [ 2.645841] nand: device found, Manufacturer ID: 0x2c, Chip ID: 0xa1 [ 2.646624] nand: Micron MT29F1G08ABBDAH4 [ 2.653323] nand: 128 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64 [ 2.657173] 1 fixed-partitions partitions found on MTD device qcom_nand.0 [ 2.664686] Creating 1 MTD partitions on "qcom_nand.0": [ 2.671535] 0x000000000000-0x000008000000 : "ubi" [ 2.684598] random: fast init done [ 3.184954] random: crng init done [ 4.135759] spi_qup 1a280000.spi: IN:block:16, fifo:64, OUT:block:16, fifo:64 [ 4.141447] spi-nor spi0.0: mx25u3235f (4096 Kbytes) [ 4.141976] 15 qcom-smem partitions found on MTD device spi0.0 [ 4.146922] Creating 15 MTD partitions on "spi0.0": [ 4.152676] 0x000000000000-0x000000010000 : "0:SBL1" [ 4.158782] 0x000000010000-0x000000030000 : "0:MIBIB" [ 4.163927] 0x000000030000-0x000000050000 : "0:SBL2" [ 4.168762] 0x000000050000-0x000000080000 : "0:SBL3" [ 4.173898] 0x000000080000-0x000000090000 : "0:DDRCONFIG" [ 4.178766] 0x000000090000-0x0000000a0000 : "0:SSD" [ 4.184135] 0x0000000a0000-0x0000000d0000 : "0:TZ" [ 4.188722] 0x0000000d0000-0x0000000f0000 : "0:RPM" [ 4.193716] 0x0000000f0000-0x000000130000 : "0:OLDAPPSBL" [ 4.198378] 0x000000130000-0x000000170000 : "0:APPSBLENV" [ 4.204039] 0x000000170000-0x000000190000 : "0:ART" [ 4.209328] 0x000000190000-0x0000001e0000 : "0:APPSBL" [ 4.214139] 0x0000001e0000-0x000000200000 : "0:NSS1" [ 4.219204] 0x000000200000-0x000000220000 : "0:NVRAM" [ 4.224454] 0x000000220000-0x000000400000 : "0:HLOS" [ 4.231406] libphy: ipq8064_mdio_bus: probed [ 4.283114] switch0: Atheros AR8337 rev. 2 switch registered on 37000000.mdio-mii [ 5.384612] libphy: Fixed MDIO Bus: probed [ 5.385625] ipq806x-gmac-dwmac 37200000.ethernet: IRQ eth_wake_irq not found [ 5.387620] ipq806x-gmac-dwmac 37200000.ethernet: IRQ eth_lpi not found [ 5.395255] ipq806x-gmac-dwmac 37200000.ethernet: PTP uses main clock [ 5.402184] ipq806x-gmac-dwmac 37200000.ethernet: User ID: 0x10, Synopsys ID: 0x37 [ 5.407763] ipq806x-gmac-dwmac 37200000.ethernet: DWMAC1000 [ 5.415335] ipq806x-gmac-dwmac 37200000.ethernet: DMA HW capability register supported [ 5.421129] ipq806x-gmac-dwmac 37200000.ethernet: RX Checksum Offload Engine supported [ 5.428763] ipq806x-gmac-dwmac 37200000.ethernet: COE Type 2 [ 5.436763] ipq806x-gmac-dwmac 37200000.ethernet: TX Checksum insertion supported [ 5.442559] ipq806x-gmac-dwmac 37200000.ethernet: Wake-Up On Lan supported [ 5.449858] ipq806x-gmac-dwmac 37200000.ethernet: Enhanced/Alternate descriptors [ 5.456710] ipq806x-gmac-dwmac 37200000.ethernet: Enabled extended descriptors [ 5.464271] ipq806x-gmac-dwmac 37200000.ethernet: Ring mode enabled [ 5.471299] ipq806x-gmac-dwmac 37200000.ethernet: Enable RX Mitigation via HW Watchdog Timer [ 5.477390] ipq806x-gmac-dwmac 37200000.ethernet: device MAC address fa:49:36:39:6b:57 [ 5.487500] ipq806x-gmac-dwmac 37400000.ethernet: IRQ eth_wake_irq not found [ 5.493894] ipq806x-gmac-dwmac 37400000.ethernet: IRQ eth_lpi not found [ 5.501375] ipq806x-gmac-dwmac 37400000.ethernet: PTP uses main clock [ 5.507868] ipq806x-gmac-dwmac 37400000.ethernet: User ID: 0x10, Synopsys ID: 0x37 [ 5.514051] ipq806x-gmac-dwmac 37400000.ethernet: DWMAC1000 [ 5.521473] ipq806x-gmac-dwmac 37400000.ethernet: DMA HW capability register supported [ 5.527200] ipq806x-gmac-dwmac 37400000.ethernet: RX Checksum Offload Engine supported [ 5.535043] ipq806x-gmac-dwmac 37400000.ethernet: COE Type 2 [ 5.542901] ipq806x-gmac-dwmac 37400000.ethernet: TX Checksum insertion supported [ 5.548640] ipq806x-gmac-dwmac 37400000.ethernet: Wake-Up On Lan supported [ 5.556115] ipq806x-gmac-dwmac 37400000.ethernet: Enhanced/Alternate descriptors [ 5.562894] ipq806x-gmac-dwmac 37400000.ethernet: Enabled extended descriptors [ 5.570423] ipq806x-gmac-dwmac 37400000.ethernet: Ring mode enabled [ 5.577370] ipq806x-gmac-dwmac 37400000.ethernet: Enable RX Mitigation via HW Watchdog Timer [ 5.583649] ipq806x-gmac-dwmac 37400000.ethernet: device MAC address b6:c3:1d:f8:f4:4b [ 5.593817] i2c /dev entries driver [ 5.603512] cpuidle: enable-method property 'qcom,kpss-acc-v1' found operations [ 5.603843] cpuidle: enable-method property 'qcom,kpss-acc-v1' found operations [ 5.611712] sdhci: Secure Digital Host Controller Interface driver [ 5.617904] sdhci: Copyright(c) Pierre Ossman [ 5.624251] sdhci-pltfm: SDHCI platform and OF driver helper [ 5.632107] NET: Registered protocol family 10 [ 5.637370] Segment Routing with IPv6 [ 5.638715] NET: Registered protocol family 17 [ 5.643581] 8021q: 802.1Q VLAN Support v1.8 [ 5.646686] Registering SWP/SWPB emulation handler [ 5.683177] qcom_rpm 108000.rpm: RPM firmware 3.0.16777338 [ 5.708566] s1a: supplied by regulator-dummy [ 5.708705] s1a: Bringing 0uV into 1050000-1050000uV [ 5.712506] s1b: supplied by regulator-dummy [ 5.716958] s1b: Bringing 0uV into 1050000-1050000uV [ 5.721635] s2a: supplied by regulator-dummy [ 5.726150] s2a: Bringing 0uV into 800000-800000uV [ 5.730838] s2b: supplied by regulator-dummy [ 5.735025] s2b: Bringing 0uV into 800000-800000uV [ 5.741788] Speed bin: 0 [ 5.743933] PVS bin: 2 [ 5.748893] core: _opp_supported_by_regulators: OPP minuV: 995000 maxuV: 995000, not supported by regulator [ 5.748951] cpu cpu0: _opp_add: OPP not supported by regulators (800000000) [ 5.759853] cpufreq: cpufreq_online: CPU0: Running at unlisted freq: 800000 KHz [ 5.765725] cpufreq: cpufreq_online: CPU0: Unlisted initial frequency changed to: 1000000 KHz [ 5.774260] core: _opp_supported_by_regulators: OPP minuV: 995000 maxuV: 995000, not supported by regulator [ 5.781459] cpu cpu1: _opp_add: OPP not supported by regulators (800000000) [ 5.798718] UBI: auto-attach mtd0 [ 5.798742] ubi0: default fastmap pool size: 50 [ 5.801415] ubi0: default fastmap WL pool size: 25 [ 5.805652] ubi0: attaching mtd0 [ 7.388215] ubi0: scanning is finished [ 7.410482] ubi0: attached mtd0 (name "ubi", size 128 MiB) [ 7.410502] ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes [ 7.414850] ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 [ 7.421788] ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096 [ 7.428566] ubi0: good PEBs: 1024, bad PEBs: 0, corrupted PEBs: 0 [ 7.435411] ubi0: user volume: 3, internal volumes: 1, max. volumes count: 128 [ 7.441652] ubi0: max/mean erase counter: 1/0, WL threshold: 4096, image sequence number: 1594422558 [ 7.448710] ubi0: available PEBs: 495, total reserved PEBs: 529, PEBs reserved for bad PEB handling: 20 [ 7.458886] mtd: device 17 (rootfs) set to be root filesystem [ 7.459038] ubi0: background thread "ubi_bgt0d" started, PID 64 [ 7.468717] block ubiblock0_1: created from ubi0:1(rootfs) [ 7.478785] hctosys: unable to open rtc device (rtc0) [ 7.498199] VFS: Mounted root (squashfs filesystem) readonly on device 31:17. [ 7.500513] Freeing unused kernel memory: 1024K [ 7.532254] Run /sbin/init as init process [ 8.510987] init: Console is alive [ 8.511114] init: - watchdog - [ 11.976623] kmodloader: loading kernel modules from /etc/modules-boot.d/* [ 12.009925] raid6: using algorithm neonx8 gen() 0 MB/s [ 12.009956] raid6: .... xor() 0 MB/s, rmw enabled [ 12.014061] raid6: using neon recovery algorithm [ 12.019966] xor: measuring software checksum speed [ 12.120350] arm4regs : 1061.600 MB/sec [ 12.220349] 8regs : 672.800 MB/sec [ 12.320349] 32regs : 668.400 MB/sec [ 12.420343] neon : 2446.000 MB/sec [ 12.420366] xor: using function: neon (2446.000 MB/sec) [ 12.641377] Btrfs loaded, crc32c=crc32c-generic [ 12.655687] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 12.658601] SCSI subsystem initialized [ 12.666407] libata version 3.00 loaded. [ 12.669630] ehci-fsl: Freescale EHCI Host controller driver [ 12.670139] ehci-platform: EHCI generic platform driver [ 12.677474] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver [ 12.679577] ohci-platform: OHCI generic platform driver [ 12.688165] dwc3-qcom 110f8800.usb3: IRQ hs_phy_irq not found [ 12.690669] dwc3-qcom 110f8800.usb3: IRQ dp_hs_phy_irq not found [ 12.696485] dwc3-qcom 110f8800.usb3: IRQ dm_hs_phy_irq not found [ 12.702637] dwc3-qcom 110f8800.usb3: IRQ ss_phy_irq not found [ 12.710160] dwc3-qcom 100f8800.usb3: IRQ hs_phy_irq not found [ 12.714195] dwc3-qcom 100f8800.usb3: IRQ dp_hs_phy_irq not found [ 12.719922] dwc3-qcom 100f8800.usb3: IRQ dm_hs_phy_irq not found [ 12.726071] dwc3-qcom 100f8800.usb3: IRQ ss_phy_irq not found [ 12.742963] dwc3 11000000.dwc3: Failed to get clk 'ref': -2 [ 12.791328] dwc3 10000000.dwc3: Failed to get clk 'ref': -2 [ 12.854320] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller [ 12.854381] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 [ 12.858917] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228f065 hci version 0x100 quirks 0x0000000002010010 [ 12.866407] xhci-hcd xhci-hcd.0.auto: irq 43, io mem 0x11000000 [ 12.876643] hub 1-0:1.0: USB hub found [ 12.881623] hub 1-0:1.0: 1 port detected [ 12.885565] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller [ 12.889441] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 [ 12.894798] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed [ 12.903115] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. [ 12.909239] hub 2-0:1.0: USB hub found [ 12.917212] hub 2-0:1.0: 1 port detected [ 12.922097] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller [ 12.924771] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 3 [ 12.930191] xhci-hcd xhci-hcd.1.auto: hcc params 0x0228f065 hci version 0x100 quirks 0x0000000002010010 [ 12.937713] xhci-hcd xhci-hcd.1.auto: irq 44, io mem 0x10000000 [ 12.948844] hub 3-0:1.0: USB hub found [ 12.952982] hub 3-0:1.0: 1 port detected [ 12.956885] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller [ 12.960865] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 4 [ 12.966082] xhci-hcd xhci-hcd.1.auto: Host supports USB 3.0 SuperSpeed [ 12.973777] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM. [ 12.980608] hub 4-0:1.0: USB hub found [ 12.988488] hub 4-0:1.0: 1 port detected [ 12.994406] usbcore: registered new interface driver usb-storage [ 12.996203] kmodloader: done loading kernel modules from /etc/modules-boot.d/* [ 13.006292] init: - preinit - [ 15.917227] dwmac1000: Master AXI performs any burst length [ 15.917274] ipq806x-gmac-dwmac 37400000.ethernet eth1: No Safety Features support found [ 15.921738] ipq806x-gmac-dwmac 37400000.ethernet eth1: IEEE 1588-2008 Advanced Timestamp supported [ 15.929791] ipq806x-gmac-dwmac 37400000.ethernet eth1: registered PTP clock [ 15.938733] ipq806x-gmac-dwmac 37400000.ethernet eth1: configuring for fixed/sgmii link mode [ 15.946812] ipq806x-gmac-dwmac 37400000.ethernet eth1: Link is Up - 1Gbps/Full - flow control off [ 15.946868] IPv6: ADDRCONF(NETDEV_CHANGE): eth1: link becomes ready [ 19.085301] Starting lvm2 during preinit [ 21.089217] device-mapper: ioctl: 4.41.0-ioctl (2019-09-16) initialised: dm-devel@redhat.com [ 21.429213] mount_root: loading kmods from internal overlay [ 21.460100] kmodloader: loading kernel modules from //etc/modules-boot.d/* [ 21.463681] kmodloader: done loading kernel modules from //etc/modules-boot.d/* [ 23.188074] UBIFS (ubi0:2): default file-system created [ 23.189798] UBIFS (ubi0:2): Mounting in unauthenticated mode [ 23.193356] UBIFS (ubi0:2): background thread "ubifs_bgt0_2" started, PID 157 [ 23.453765] UBIFS (ubi0:2): UBIFS: mounted UBI device 0, volume 2, name "rootfs_data" [ 23.453808] UBIFS (ubi0:2): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes [ 23.460685] UBIFS (ubi0:2): FS size: 44314624 bytes (42 MiB, 349 LEBs), journal size 2158592 bytes (2 MiB, 17 LEBs) [ 23.470572] UBIFS (ubi0:2): reserved for root: 2093089 bytes (2044 KiB) [ 23.480792] UBIFS (ubi0:2): media format: w4/r0 (latest is w5/r0), UUID 66F4BC49-4029-4011-AA8E-82C7DCAB48CE, small LPT model [ 23.489420] block: attempting to load /tmp/ubifs_cfg/upper/etc/config/fstab [ 23.499073] block: unable to load configuration (fstab: Entry not found) [ 23.505706] block: attempting to load /tmp/ubifs_cfg/etc/config/fstab [ 23.512807] block: unable to load configuration (fstab: Entry not found) [ 23.518882] block: attempting to load /etc/config/fstab [ 23.526369] block: unable to load configuration (fstab: Entry not found) [ 23.530658] block: no usable configuration [ 23.544934] UBIFS (ubi0:2): un-mount UBI device 0 [ 23.545917] UBIFS (ubi0:2): background thread "ubifs_bgt0_2" stops [ 23.553591] UBIFS (ubi0:2): Mounting in unauthenticated mode [ 23.555724] UBIFS (ubi0:2): background thread "ubifs_bgt0_2" started, PID 158 [ 23.739886] UBIFS (ubi0:2): UBIFS: mounted UBI device 0, volume 2, name "rootfs_data" [ 23.739925] UBIFS (ubi0:2): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes [ 23.746811] UBIFS (ubi0:2): FS size: 44314624 bytes (42 MiB, 349 LEBs), journal size 2158592 bytes (2 MiB, 17 LEBs) [ 23.756679] UBIFS (ubi0:2): reserved for root: 2093089 bytes (2044 KiB) [ 23.766916] UBIFS (ubi0:2): media format: w4/r0 (latest is w5/r0), UUID 66F4BC49-4029-4011-AA8E-82C7DCAB48CE, small LPT model [ 25.615772] ubi0 error: 0xc06599b0: cannot open device 0, volume 2, error -16 [ 25.615827] ubi0 error: 0xc06599b0: cannot open device 0, volume 2, error -16 [ 26.985704] block: attempting to load /tmp/ubifs_cfg/upper/etc/config/fstab [ 26.985790] block: unable to load configuration (fstab: Entry not found) [ 26.991577] block: attempting to load /tmp/ubifs_cfg/etc/config/fstab [ 26.998474] block: unable to load configuration (fstab: Entry not found) [ 27.004863] block: attempting to load /etc/config/fstab [ 27.011632] block: unable to load configuration (fstab: Entry not found) [ 27.016494] block: no usable configuration [ 27.025178] mount_root: overlay filesystem has not been fully initialized yet [ 27.027536] mount_root: switching to ubifs overlay [ 27.066857] overlayfs: upper fs does not support xattr, falling back to index=off and metacopy=off. [ 27.072508] urandom-seed: Seed file not found (/etc/urandom.seed) [ 27.112552] ipq806x-gmac-dwmac 37400000.ethernet eth1: Link is Down [ 27.161181] procd: - early - [ 27.161333] procd: - watchdog - [ 27.732439] procd: - watchdog - [ 27.732704] procd: - ubus - [ 27.795801] procd: - init - [ 28.127652] urngd: v1.0.2 started. [ 28.134320] kmodloader: loading kernel modules from /etc/modules.d/* [ 28.148232] NET: Registered protocol family 38 [ 28.153981] FS-Cache: Loaded [ 28.157294] Key type dns_resolver registered [ 28.164736] Key type cifs.idmap registered [ 28.175300] RPC: Registered named UNIX socket transport module. [ 28.175322] RPC: Registered udp transport module. [ 28.180014] RPC: Registered tcp transport module. [ 28.184956] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 28.194653] tun: Universal TUN/TAP device driver, 1.6 [ 28.210514] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). [ 28.215579] NFS: Registering the id_resolver key type [ 28.215941] Key type id_resolver registered [ 28.220954] Key type id_legacy registered [ 28.236993] Mirror/redirect action on [ 28.240169] u32 classifier [ 28.240184] input device check on [ 28.242323] Actions configured [ 28.261510] fuse: init (API version 7.31) [ 28.264404] Loading modules backported from Linux version v5.7-rc3-0-g6a8b55ed4056 [ 28.264495] Backport generated by backports.git v5.7-rc3-1-0-gc0c7d2bb [ 28.349020] xt_time: kernel timezone is -0000 [ 28.389221] PPP generic driver version 2.4.2 [ 28.390520] NET: Registered protocol family 24 [ 28.420944] ath10k_pci 0001:01:00.0: assign IRQ: got 37 [ 28.420967] ath10k 5.4 driver, optimized for CT firmware, probing pci device: 0x3c. [ 28.421023] ath10k_mac_create, priv_size: 868 hw: 37b53e8d hw->priv: ab0078a2 [ 28.437075] ath10k_pci 0001:01:00.0: enabling device (0140 -> 0142) [ 28.437182] ath10k_pci 0001:01:00.0: enabling bus mastering [ 28.437715] ath10k_pci 0001:01:00.0: pci irq msi oper_irq_mode 2 irq_mode 0 reset_mode 0 [ 29.297554] ath10k_pci 0001:01:00.0: qca988x hw2.0 target 0x4100016c chip_id 0x043202ff sub 0000:0000 [ 29.297589] ath10k_pci 0001:01:00.0: kconfig debug 0 debugfs 1 tracing 0 dfs 0 testmode 0 [ 29.306684] ath10k_pci 0001:01:00.0: firmware ver 10.1-ct-8x-fW-022-538f0906 [ 29.419120] ath10k_pci 0001:01:00.0: board_file api 1 bmi_id N/A crc32 bebc7c08 [ 30.341299] ath10k_pci 0001:01:00.0: unsupported HTC service id: 1536 [ 30.343860] ath10k_pci 0001:01:00.0: 10.1 wmi init: vdevs: 16 peers: 127 tid: 256 [ 30.356810] ath10k_pci 0001:01:00.0: wmi print 'P 128 V 8 T 410' [ 30.356838] ath10k_pci 0001:01:00.0: wmi print 'msdu-desc: 1424 sw-crypt: 0 ct-sta: 0' [ 30.361945] ath10k_pci 0001:01:00.0: wmi print 'alloc rem: 20984 iram: 25656' [ 30.415394] ath10k_pci 0001:01:00.0: htt-ver 2.1 wmi-op 2 htt-op 2 cal otp max-sta 128 raw 0 hwcrypto 1 [ 30.428566] ath10k_pci 0001:01:00.0: NOTE: Firmware DBGLOG output disabled in debug_mask: 0x10000000 [ 30.537788] ath: EEPROM regdomain sanitized [ 30.537798] ath: EEPROM regdomain: 0x64 [ 30.537805] ath: EEPROM indicates we should expect a direct regpair map [ 30.537820] ath: Country alpha2 being used: 00 [ 30.537826] ath: Regpair used: 0x64 [ 30.546635] kmodloader: done loading kernel modules from /etc/modules.d/* [ 46.070350] ubi0 error: 0xc06599b0: cannot open device 0, volume 2, error -16 [ 46.070882] ubi0 error: 0xc06599b0: cannot open device 0, volume 2, error -16 [ 46.077119] dwmac1000: Master AXI performs any burst length [ 46.083671] ipq806x-gmac-dwmac 37400000.ethernet eth1: No Safety Features support found [ 46.088964] ipq806x-gmac-dwmac 37400000.ethernet eth1: IEEE 1588-2008 Advanced Timestamp supported [ 46.097120] ipq806x-gmac-dwmac 37400000.ethernet eth1: registered PTP clock [ 46.106031] ipq806x-gmac-dwmac 37400000.ethernet eth1: configuring for fixed/sgmii link mode [ 46.115041] ipq806x-gmac-dwmac 37400000.ethernet eth1: Link is Up - 1Gbps/Full - flow control off [ 46.124651] IPv6: ADDRCONF(NETDEV_CHANGE): eth1: link becomes ready [ 46.134886] br-lan: port 1(eth1.1) entered blocking state [ 46.141997] br-lan: port 1(eth1.1) entered disabled state [ 46.147639] device eth1.1 entered promiscuous mode [ 46.152915] device eth1 entered promiscuous mode [ 46.161360] br-lan: port 1(eth1.1) entered blocking state [ 46.167615] br-lan: port 1(eth1.1) entered forwarding state [ 46.186958] dwmac1000: Master AXI performs any burst length [ 46.195298] ipq806x-gmac-dwmac 37200000.ethernet eth0: No Safety Features support found [ 46.200844] ipq806x-gmac-dwmac 37200000.ethernet eth0: IEEE 1588-2008 Advanced Timestamp supported [ 46.208884] ipq806x-gmac-dwmac 37200000.ethernet eth0: registered PTP clock [ 46.217842] ipq806x-gmac-dwmac 37200000.ethernet eth0: configuring for fixed/rgmii link mode [ 46.225546] ipq806x-gmac-dwmac 37200000.ethernet eth0: Link is Up - 1Gbps/Full - flow control off [ 46.233895] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready [ 47.131573] IPv6: ADDRCONF(NETDEV_CHANGE): br-lan: link becomes ready root@OpenWrt:/# df -h Filesystem Size Used Available Use% Mounted on /dev/root 15.0M 15.0M 0 100% /rom tmpfs 234.1M 2.6M 231.5M 1% /tmp /dev/ubi0_2 38.4M 64.0K 36.4M 0% /overlay overlayfs:/overlay 38.4M 64.0K 36.4M 0% / tmpfs 512.0K 0 512.0K 0% /dev root@OpenWrt:/# mount /dev/root on /rom type squashfs (ro,relatime) proc on /proc type proc (rw,nosuid,nodev,noexec,noatime) sysfs on /sys type sysfs (rw,nosuid,nodev,noexec,noatime) tmpfs on /tmp type tmpfs (rw,nosuid,nodev,noatime) /dev/ubi0_2 on /overlay type ubifs (rw,noatime,assert=read-only,ubi=0,vol=2) overlayfs:/overlay on / type overlay (rw,noatime,lowerdir=/,upperdir=/overlay/upper,workdir=/overlay/work) tmpfs on /dev type tmpfs (rw,nosuid,relatime,size=512k,mode=755) devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,mode=600,ptmxmode=000) debugfs on /sys/kernel/debug type debugfs (rw,noatime) root@OpenWrt:/# free total used free shared buff/cache available Mem: 479468 43500 382452 2652 53516 390872 Swap: 0 0 0 root@OpenWrt:/# cat /proc/cpuinfo processor : 0 model name : ARMv7 Processor rev 0 (v7l) BogoMIPS : 6.00 Features : half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt vfpd32 CPU implementer : 0x51 CPU architecture: 7 CPU variant : 0x2 CPU part : 0x04d CPU revision : 0 processor : 1 model name : ARMv7 Processor rev 0 (v7l) BogoMIPS : 12.50 Features : half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt vfpd32 CPU implementer : 0x51 CPU architecture: 7 CPU variant : 0x2 CPU part : 0x04d CPU revision : 0 Hardware : Generic DT based system Revision : 0000 Serial : 0000000000000000


Room for additional notes.

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: 2023/02/17 18:17
  • by danitool