Xiaomi AX1800 (AX5/RA67)

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

This page is dedicated to the RA67 hardware model. This (usually white, flat, rectangular) model is sold under the names “Redmi AX5” as well as “Xiaomi AX1800” in some regions (Europe). It is not the same router as the black/cylindrical “Xiaomi router AX1800” rm1800 hardware model sold in the Chinese region. Pay attention to download the correct firmware for your model and region.

Xiaomi AX1800 - AX5 (RA67)

Not supported.

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

CPU Ram Flash WLAN2.4 WLAN5.0
Qualcomm Atheros IPQ6000 quad-core A53 @ 1.2 GHz 256 Mib 128 MiB b/g/n an/ac/ax
Architecture ARMv7
Vendor Qualcomm
Bootloader U-Boot
System-On-Chip Qualcomm IPQ6000
CPU/Speed 1.2GHz
Flash-Chip F59D1G81MB
Flash size 128 MiB
RAM 256 MiB
Wireless-2.4GHz Qualcomm QCN5022 2×2 802.11bgnax
Wireless-5GHz Qualcomm QCN5052 2×2 802.11acax
Ethernet 10/100/1000 Mbit/s w/ vlan support
Switch Qualcomm Atheros IPQ8075
Serial Yes

Flash layout in Original FW:

root@XiaoQiang:~# cat /proc/mtd
dev:    size   erasesize  name
mtd0: 00100000 00020000 "0:SBL1"
mtd1: 00100000 00020000 "0:MIBIB"
mtd2: 00300000 00020000 "0:QSEE"
mtd3: 00080000 00020000 "0:DEVCFG"
mtd4: 00080000 00020000 "0:RPM"
mtd5: 00080000 00020000 "0:CDT"
mtd6: 00080000 00020000 "0:APPSBLENV"
mtd7: 00100000 00020000 "0:APPSBL"
mtd8: 00080000 00020000 "0:ART"
mtd9: 00080000 00020000 "bdata"
mtd10: 00080000 00020000 "crash"
mtd11: 00080000 00020000 "crash_syslog"
mtd12: 023c0000 00020000 "rootfs"
mtd13: 023c0000 00020000 "rootfs_1"
mtd14: 01ec0000 00020000 "overlay"
mtd15: 00080000 00020000 "rsvd0"
mtd16: 0041e000 0001f000 "kernel"
mtd17: 0160a000 0001f000 "ubi_rootfs"
mtd18: 01876000 0001f000 "data"

Flash layout in QSDK FW:

root@OpenWrt:~# cat /proc/mtd
dev:    size   erasesize  name
mtd0: 00100000 00020000 "0:SBL1"
mtd1: 00100000 00020000 "0:MIBIB"
mtd2: 00300000 00020000 "0:QSEE"
mtd3: 00080000 00020000 "0:DEVCFG"
mtd4: 00080000 00020000 "0:RPM"
mtd5: 00080000 00020000 "0:CDT"
mtd6: 00080000 00020000 "0:APPSBLENV"
mtd7: 00100000 00020000 "0:APPSBL"
mtd8: 00080000 00020000 "0:ART"
mtd9: 00080000 00020000 "bdata"
mtd10: 00080000 00020000 "crash"
mtd11: 00080000 00020000 "crash_syslog"
mtd12: 023c0000 00020000 "rootfs"
mtd13: 08000000 00020000 "rootfs_1"
mtd14: 01ec0000 00020000 "overlay"
mtd15: 00080000 00020000 "rsvd0"
mtd16: 00900000 00020000 "0:WIFIFW"
mtd17: 00554000 0001f000 "kernel"
mtd18: 019cb000 0001f000 "ubi_rootfs"
mtd19: 0578d000 0001f000 "rootfs_data"
mtd20: 0022e000 0001f000 "wifi_fw"
  1. Setup the router admin password (quick way is using the mobile setup app)
  2. Login to the router web interface using the password set using the app and get the value of “stok=” from the URL
  3. Think of a password for SSH logins (8+ chars long, no special chars)

Now you need to use the following URL(s) in order to enable SSH access after modifying them with you values for :

  • Replace <STOK> with the stok value gaind above
  • Replace <PASSWORD> with the password generated above

nvram set ssh_en=1; nvram commit;

http://192.168.31.1/cgi-bin/luci/;stok=<STOK>/api/misystem/set_config_iotdev?bssid=Xiaomi&user_id=longdike&ssid=-h%3Bnvram%20set%20ssh%5Fen%3D1%3B%20nvram%20commit%3B

sed -i 's/channel=.*/channel=\“debug\”/g' /etc/init.d/dropbear;

http://192.168.31.1/cgi-bin/luci/;stok=<STOK>/api/misystem/set_config_iotdev?bssid=Xiaomi&user_id=longdike&ssid=-h%3Bsed%20-i%20%27s/channel=.*/channel=%5C"debug%5C"/g%27%20/etc/init.d/dropbear%3B

/etc/init.d/dropbear start

http://192.168.31.1/cgi-bin/luci/;stok=<STOK>/api/misystem/set_config_iotdev?bssid=Xiaomi&user_id=longdike&ssid=-h%3B/etc/init.d/dropbear%20start%3B

/etc/init.d/dropbear enable

http://192.168.31.1/cgi-bin/luci/;stok=<STOK>/api/misystem/set_config_iotdev?bssid=Xiaomi&user_id=longdike&ssid=-h%3B/etc/init.d/dropbear%20enable%3B

echo -e “<PASSWORD>/n<PASSWORD>” | passwd root

http://192.168.31.1/cgi-bin/luci/;stok=<STOK>/api/misystem/set_config_iotdev?bssid=Xiaomi&user_id=longdike&ssid=ssid=-h%0Aecho%20-e%20%27<PASSWORD>%5Cn<PASSWORD>%27%20%7C%20passwd%20root%0A

Now you should be able to login using ssh root@192.168.31.1 using the password above.

Here is a bash script helper:

rawurlencode() {
  local string="${1}"
  local strlen=${#string}
  local encoded=""
  local pos c o

  for (( pos=0 ; pos<strlen ; pos++ )); do
     c=${string:$pos:1}
     case "$c" in
        [-_.~a-zA-Z0-9] ) o="${c}" ;;
        * )               printf -v o '%%%02x' "'$c"
     esac
     encoded+="${o}"
  done
  echo "${encoded}"    # You can either set a return variable (FASTER) 
  REPLY="${encoded}"   #+or echo the result (EASIER)... or both... :p
}

xiaomiCmd() {
    parsed=$(rawurlencode "$1")
    url="http://192.168.31.1/cgi-bin/luci/;stok=$stok/api/misystem/set_config_iotdev?bssid=redmi&user_id=doctor&ssid=-h%0A$parsed%0A"
    echo $url
    curl "$url"
    echo
}

enableSsh() {
    xiaomiCmd "nvram set ssh_en=1;nvram commit"
    xiaomiCmd "sed -i '/flg_ssh.*release/ { :a; N; /fi/! ba };/return 0/d' /etc/init.d/dropbear"
    xiaomiCmd "echo -e '$password\n$password' | passwd root"
    xiaomiCmd "/etc/init.d/dropbear enable;/etc/init.d/dropbear start"
}
echo your have to enter stok and password variables before running enableSsh:
echo 'stok=<STOK>'
echo 'password=<PASSWORD>'
echo enableSsh

Here is a JavaScript to do the same thing, use in browser console (Press F12)

function getSTOK() {
    let match = location.href.match(/;stok=(.*?)\//);
    if (!match) {
        return null;
    }
    return match[1];
}

function execute(stok, command) {
    command = encodeURIComponent(command);
    let path = `/cgi-bin/luci/;stok=${stok}/api/misystem/set_config_iotdev?bssid=SteelyWing&user_id=SteelyWing&ssid=-h%0A${command}%0A`;
    console.log(path);
    return fetch(new Request(location.origin + path));
}

function enableSSH() {
    stok = getSTOK();
    if (!stok) {
        console.error('stok not found in URL');
        return;
    }
    console.log(`stok = "${stok}"`);

    password = prompt('Input new SSH password');
    if (!password) {
        console.error('You must input password');
        return;
    }

    execute(stok, 
`
nvram set ssh_en=1
nvram commit
sed -i 's/channel=.*/channel=\\"debug\\"/g' /etc/init.d/dropbear
/etc/init.d/dropbear start
`
    )
        .then((response) => response.text())
        .then((text) => console.log(text));
    console.log('New SSH password: ' + password);
    execute(stok, `echo -e "${password}\\n${password}" | passwd root`)
        .then((response) => response.text())
        .then((text) => console.log(text));
}

enableSSH();

Format: Log Type - Time(microsec) - Message - Optional Info Log Type: B - Since Boot(Power On Reset), D - Delta, S - Statistic S - QC_IMAGE_VERSION_STRING=BOOT.XF.0.3-00077-IPQ60xxLZB-2 S - IMAGE_VARIANT_STRING=IPQ6018LA S - OEM_IMAGE_VERSION_STRING=crm-ubuntu64 S - Boot Interface: NAND S - Secure Boot: Off S - Boot Config @ 0x000a602c = 0x000002e5 S - JTAG ID @ 0x000a607c = 0x001390e1 S - OEM ID @ 0x000a6080 = 0x00000000 S - Serial Number @ 0x000a4128 = 0x17811385 S - OEM Config Row 0 @ 0x000a4188 = 0x0000000000000000 S - OEM Config Row 1 @ 0x000a4190 = 0x0000000000000000 S - Feature Config Row 0 @ 0x000a4130 = 0x0000800018200021 S - Feature Config Row 1 @ 0x000a4138 = 0x02c3e83783000009 S - PBL Patch Ver: 1 S - I-cache: On S - D-cache: On B - 3413 - PBL, Start B - 592 - bootable_media_detect_entry, Start B - 4339 - bootable_media_detect_success, Start B - 5147 - elf_loader_entry, Start B - 5319 - auth_hash_seg_entry, Start B - 7787 - auth_hash_seg_exit, Start B - 8283 - elf_segs_hash_verify_entry, Start B - 110450 - elf_segs_hash_verify_exit, Start B - 114874 - auth_xbl_sec_hash_seg_entry, Start B - 115018 - auth_xbl_sec_hash_seg_exit, Start B - 121565 - xbl_sec_segs_hash_verify_entry, Start B - 121565 - xbl_sec_segs_hash_verify_exit, Start B - 122494 - PBL, End B - 103273 - SBL1, Start B - 243359 - GCC [RstStat:0x0, RstDbg:0x600000] WDog Stat : 0x4 B - 245799 - clock_init, Start D - 2745 - clock_init, Delta B - 254278 - boot_flash_init, Start D - 30012 - boot_flash_init, Delta B - 287554 - sbl1_ddr_set_default_params, Start D - 244 - sbl1_ddr_set_default_params, Delta B - 294203 - boot_config_data_table_init, Start D - 4788 - boot_config_data_table_init, Delta - (575 Bytes) B - 304085 - CDT Version:2,Platform ID:8,Major ID:3,Minor ID:2,Subtype:0 B - 308873 - Image Load, Start D - 6619 - OEM_MISC Image Loaded, Delta - (0 Bytes) B - 318206 - Image Load, Start D - 5063 - PMIC Image Loaded, Delta - (0 Bytes) B - 326075 - sbl1_ddr_set_params, Start B - 331047 - CPR configuration: 0x366 B - 334249 - Pre_DDR_clock_init, Start D - 213 - Pre_DDR_clock_init, Delta D - 0 - sbl1_ddr_set_params, Delta B - 370880 - Image Load, Start D - 457 - APDP Image Loaded, Delta - (0 Bytes) B - 383995 - Image Load, Start D - 427 - QTI_MISC Image Loaded, Delta - (0 Bytes) B - 386435 - Image Load, Start D - 793 - Auth Metadata D - 610 - Segments hash check D - 22570 - QSEE Dev Config Image Loaded, Delta - (36354 Bytes) B - 410957 - Image Load, Start D - 6557 - Auth Metadata D - 10492 - Segments hash check D - 343674 - QSEE Image Loaded, Delta - (1470632 Bytes) B - 755088 - Image Load, Start D - 732 - Auth Metadata D - 1006 - Segments hash check D - 35685 - RPM Image Loaded, Delta - (102664 Bytes) B - 792420 - Image Load, Start D - 671 - Auth Metadata D - 3141 - Segments hash check D - 121085 - APPSBL Image Loaded, Delta - (544096 Bytes) B - 929152 - SBL1, End D - 826184 - SBL1, Delta S - Flash Throughput, 4000 KB/s (2154993 Bytes, 443644 us) S - Core 0 Frequency, 800 MHz S - DDR Frequency, 466 MHz U-Boot 2016.01 (Aug 06 2020 - 11:50:22 +0000), Build: jenkins-common_router_openwrt_ota_publish-159 DRAM: smem ram ptable found: ver: 2 len: 4 256 MiB NAND: ONFI device found ID = 1580a1c8 Vendor = c8 Device = a1 qpic_nand: changing oobsize to 64 from 128 bytes SF: Unsupported flash IDs: manuf 00, jedec 0000, ext_jedec 0000 ipq_spi: SPI Flash not found (bus/cs/speed/mode) = (0/0/48000000/0) 128 MiB MMC: sdhci: Node Not found, skipping initialization PCI0 is not defined in the device tree In: serial@78B1000 Out: serial@78B1000 Err: serial@78B1000 machid: 8030200 eth0 MAC Address from ART is not valid,use random ethaddr bootwait is off, bootdelay=5 ### main_loop: bootcmd="bootmiwifi" Hit any key to stop autoboot: 0 trigger button release! boot from rootfs 0 miwifi: check crash in rmem ! ubi0: attaching mtd1 ubi0: scanning is finished ubi0: attached mtd1 (name "mtd=0", size 36 MiB) ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096 ubi0: good PEBs: 288, bad PEBs: 0, corrupted PEBs: 0 ubi0: user volume: 3, internal volumes: 1, max. volumes count: 128 ubi0: max/mean erase counter: 5/1, WL threshold: 4096, image sequence number: 133286235 ubi0: available PEBs: 0, total reserved PEBs: 288, PEBs reserved for bad PEB handling: 20 Read 0 bytes from volume kernel to 44000000 No size specified -> Using max size (3809280) Erasing NAND... Erasing at 0x7e0000 -- 100% complete. Writing to NAND... OK ## Loading kernel from FIT Image at 44000000 ... Using 'config@cp03-c1' configuration Trying 'kernel@1' kernel subimage Description: ARM OpenWrt Linux-4.4.60 Type: Kernel Image Compression: gzip compressed Data Start: 0x440000e4 Data Size: 3566564 Bytes = 3.4 MiB Architecture: ARM OS: Linux Load Address: 0x41208000 Entry Point: 0x41208000 Hash algo: crc32 Hash value: 94f0d038 Hash algo: sha1 Hash value: 481c9bd07f80757cd53dbd73e0243dd7bb5ec8f1 Verifying Hash Integrity ... crc32+ sha1+ OK ## Loading fdt from FIT Image at 44000000 ... Using 'config@cp03-c1' configuration Trying 'fdt@cp03-c1' fdt subimage Description: ARM OpenWrt qcom-ipq60xx-cpxx device tree blob Type: Flat Device Tree Compression: uncompressed Data Start: 0x44387cfc Data Size: 66171 Bytes = 64.6 KiB Architecture: ARM Hash algo: crc32 Hash value: 8ddaf3f4 Hash algo: sha1 Hash value: 66b6d6cfec35d855bdf2edcfc9b7f3cc4b0b4314 Verifying Hash Integrity ... crc32+ sha1+ OK Booting using the fdt blob at 0x44387cfc Uncompressing Kernel Image ... OK Loading Device Tree to 484ec000, end 484ff27a ... OK Could not find PCI in device tree Using machid 0x8030200 from environment Starting kernel ... [ 0.000000] Booting Linux on physical CPU 0x0 [ 0.000000] Initializing cgroup subsys cpuset [ 0.000000] Initializing cgroup subsys cpu [ 0.000000] Initializing cgroup subsys cpuacct [ 0.000000] Linux version 4.4.60 (jenkins@e3ea780c3f1c) (gcc version 5.5.0 (OpenWrt GCC 5.5.0 unknown) ) #0 SMP PREEMPT Thu Aug 6 11:50:22 2020 [ 0.000000] CPU: ARMv7 Processor [51af8014] revision 4 (ARMv7), cr=10c0383d [ 0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache [ 0.000000] Machine model: Qualcomm Technologies, Inc. IPQ6018/AP-CP03-C1 [ 0.000000] Memory policy: Data cache writealloc [ 0.000000] psci: probing for conduit method from DT. [ 0.000000] psci: PSCIv1.0 detected in firmware. [ 0.000000] psci: Using standard PSCI v0.2 function IDs [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. [ 0.000000] PERCPU: Embedded 11 pages/cpu @8fd5d000 s14860 r8192 d22004 u45056 [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 50624 [ 0.000000] Kernel command line: ubi.mtd=rootfs root=mtd:ubi_rootfs rootfstype=squashfs rootwait swiotlb=1 coherent_pool=2M [ 0.000000] PID hash table entries: 1024 (order: 0, 4096 bytes) [ 0.000000] Dentry cache hash table entries: 32768 (order: 5, 131072 bytes) [ 0.000000] Inode-cache hash table entries: 16384 (order: 4, 65536 bytes) [ 0.000000] Memory: 194288K/204800K available (4838K kernel code, 368K rwdata, 2216K rodata, 224K init, 270K bss, 10512K reserved, 0K cma-reserved, 0K highmem) [ 0.000000] Virtual kernel memory layout: [ 0.000000] vector : 0xffff0000 - 0xffff1000 ( 4 kB) [ 0.000000] fixmap : 0xffc00000 - 0xfff00000 (3072 kB) [ 0.000000] vmalloc : 0x90800000 - 0xff800000 (1776 MB) [ 0.000000] lowmem : 0x80000000 - 0x90000000 ( 256 MB) [ 0.000000] pkmap : 0x7fe00000 - 0x80000000 ( 2 MB) [ 0.000000] modules : 0x7f000000 - 0x7fe00000 ( 14 MB) [ 0.000000] .text : 0x81208000 - 0x818ebe14 (7056 kB) [ 0.000000] .init : 0x818ec000 - 0x81924000 ( 224 kB) [ 0.000000] .data : 0x81924000 - 0x81980040 ( 369 kB) [ 0.000000] .bss : 0x81983000 - 0x819c6870 ( 271 kB) [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 [ 0.000000] Preemptible hierarchical RCU implementation. [ 0.000000] Build-time adjustment of leaf fanout to 32. [ 0.000000] NR_IRQS:16 nr_irqs:16 16 [ 0.000000] Architected cp15 timer(s) running at 24.00MHz (virt). [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns [ 0.000005] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns [ 0.000016] Switching to timer-based delay loop, resolution 41ns [ 0.000623] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=240000) [ 0.000635] pid_max: default: 32768 minimum: 301 [ 0.000720] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes) [ 0.000730] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes) [ 0.001232] Initializing cgroup subsys io [ 0.001247] Initializing cgroup subsys memory [ 0.001270] Initializing cgroup subsys devices [ 0.001282] Initializing cgroup subsys freezer [ 0.001296] Initializing cgroup subsys net_cls [ 0.001306] Initializing cgroup subsys pids [ 0.001328] CPU: Testing write buffer coherency: ok [ 0.001675] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000 [ 0.001722] Setting up static identity map for 0x41208280 - 0x412082d8 [ 0.052377] MSM Memory Dump base table set up [ 0.052402] MSM Memory Dump apps data table set up [ 0.090263] CPU1: thread -1, cpu 1, socket 0, mpidr 80000001 [ 0.120249] CPU2: thread -1, cpu 2, socket 0, mpidr 80000002 [ 0.150283] CPU3: thread -1, cpu 3, socket 0, mpidr 80000003 [ 0.150335] Brought up 4 CPUs [ 0.150354] SMP: Total of 4 processors activated (192.00 BogoMIPS). [ 0.150360] CPU: All CPU(s) started in SVC mode. [ 0.167655] VFP support v0.3: implementor 51 architecture 3 part 40 variant 3 rev 4 [ 0.167974] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [ 0.167996] futex hash table entries: 1024 (order: 4, 65536 bytes) [ 0.168217] pinctrl core: initialized pinctrl subsystem [ 0.169205] NET: Registered protocol family 16 [ 0.170269] DMA: preallocated 2048 KiB pool for atomic coherent allocations [ 0.200106] cpuidle: using governor ladder [ 0.230126] cpuidle: using governor menu [ 0.243543] irq: no irq domain found for /soc/smp2p-wcss/slave-kernel ! [ 0.256588] CPU: IPQ6018, SoC Version: 1.0 [ 0.256801] <CORE> glink_init: IPC Logging Disabled [ 0.257081] <CORE> glink_core_register_transport: IPC Logging disabled [ 0.257146] msm_glink_smem_native_xprt rx fifo not found [ 0.257444] <CORE> glink_core_register_transport: IPC Logging disabled [ 0.257483] glink_core_link_up glink is up [ 0.257772] msm_rpm_dev_probe: APSS-RPM communication over GLINK [ 0.257846] msm_rpm_trans_notify_state: glink config params: transport=(null), edge=rpm, name=rpm_requests [ 0.258704] qcom,cpr4-apss-regulator b018000.cpr4-ctrl: CPR valid fuse count: 4 [ 0.259635] IPC logging disabled [ 0.259641] IPC logging disabled [ 0.259646] IPC logging disabled [ 0.259651] IPC logging disabled [ 0.259656] IPC logging disabled [ 0.259854] sps:sps is ready. [ 0.291663] pps_core: LinuxPPS API ver. 1 registered [ 0.291672] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [ 0.291700] PTP clock support registered [ 0.292943] Advanced Linux Sound Architecture Driver Initialized. [ 0.293640] clocksource: Switched to clocksource arch_sys_counter [ 0.296378] NET: Registered protocol family 2 [ 0.296856] TCP established hash table entries: 2048 (order: 1, 8192 bytes) [ 0.296887] TCP bind hash table entries: 2048 (order: 2, 16384 bytes) [ 0.296928] TCP: Hash tables configured (established 2048 bind 2048) [ 0.296967] UDP hash table entries: 256 (order: 1, 8192 bytes) [ 0.296990] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes) [ 0.297135] NET: Registered protocol family 1 [ 0.304781] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 0.304799] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc. [ 0.308426] io scheduler noop registered [ 0.308439] io scheduler deadline registered (default) [ 0.316811] NET: Registered protocol family 27 [ 0.316823] IPC_RTR: ipc_router_create_log_ctx: IPC Logging disabled [ 0.316837] qmi_log_init: IPC Logging disabled [ 0.316843] qmi_log_init: IPC Logging disabled [ 0.316971] msm_rpm_log_probe: OK [ 0.317271] msm-dcc b3000.dcc: DCC XPU is not specified [ 0.317523] msm-dcc b3000.dcc: jiffies_64: 0xffff8aef, cntvct_64: 0x46b51d5 [ 0.317534] msm-dcc b3000.dcc: gcnt_hi: 0x00000000(0x90b04004) [ 0.317545] msm-dcc b3000.dcc: gcnt_lo: 0x046b5421(0x90b04000) [ 0.318241] TZ Log : Will warn on Access Violation, as paniconaccessviolation is not set [ 0.318941] msm_serial 78b1000.serial: msm_serial: detected port #0 [ 0.318976] msm_serial 78b1000.serial: uartclk = 1843200 [ 0.319007] 78b1000.serial: ttyMSM0 at MMIO 0x78b1000 (irq = 20, base_baud = 115200) is a MSM [ 0.319026] msm_serial: console setup on port #0 [ 0.975814] console [ttyMSM0] enabled [ 0.980842] msm_serial: driver initialized [ 0.984348] msm_serial_hsl_init: driver initialized [ 0.997533] brd: module loaded [ 0.999391] nand: Could not find valid ONFI parameter page; aborting [ 0.999513] nand: device found, Manufacturer ID: 0xc8, Chip ID: 0xa1 [ 1.006049] nand: GigaDevice NAND 128MiB 1,8V 8-bit [ 1.012323] nand: 128 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64 [ 1.017058] 22 ofpart partitions found on MTD device qcom_nand.0 [ 1.024595] Creating 22 MTD partitions on "qcom_nand.0": [ 1.030729] 0x000000000000-0x000000180000 : "0:SBL1" [ 1.038291] 0x000000180000-0x000000280000 : "0:MIBIB" [ 1.042726] 0x000000280000-0x000000600000 : "0:QSEE" [ 1.049851] 0x000000600000-0x000000680000 : "0:DEVCFG" [ 1.052143] 0x000000680000-0x000000700000 : "0:RPM" [ 1.057132] 0x000000700000-0x000000780000 : "0:CDT" [ 1.061896] 0x000000780000-0x000000800000 : "0:APPSBLENV" [ 1.066807] 0x000000800000-0x000000980000 : "0:APPSBL" [ 1.073248] 0x000000980000-0x000000a00000 : "0:ART" [ 1.077411] 0x000000a00000-0x000000a80000 : "bdata" [ 1.082192] 0x000000a80000-0x000000b00000 : "crash" [ 1.087031] 0x000000b00000-0x000000b80000 : "crash_syslog" [ 1.091793] 0x000000b80000-0x000000c00000 : "0:BOOTCONFIG" [ 1.097398] 0x000000c00000-0x000000c80000 : "0:BOOTCONFIG1" [ 1.102888] 0x000000c80000-0x000001000000 : "0:QSEE_1" [ 1.111091] 0x000001000000-0x000001080000 : "0:DEVCFG_1" [ 1.113571] 0x000001080000-0x000001100000 : "0:RPM_1" [ 1.119068] 0x000001100000-0x000001180000 : "0:CDT_1" [ 1.124046] 0x000001180000-0x000003580000 : "rootfs" [ 1.161268] mtd: device 18 (rootfs) set to be root filesystem [ 1.161597] mtdsplit: no squashfs found in "rootfs" [ 1.166009] 0x000003580000-0x000005980000 : "rootfs_1" [ 1.203865] 0x000005980000-0x000007e20000 : "overlay" [ 1.237865] 0x000007e20000-0x000007ea0000 : "cfg_bak" [ 1.239622] libphy: Fixed MDIO Bus: probed [ 1.462573] qca-mdio 90000.mdio: Could not find phy-reset-gpio [ 1.462708] libphy: qca_mdio: probed [ 1.468483] qca-mdio 90000.mdio: qca-mdio driver was registered [ 1.471154] Unable to create IPC log context! [ 1.477080] cnss: Platform driver probed successfully. [ 1.481350] i2c /dev entries driver [ 1.491185] [ 1.491185] Version Rollback Feature Disabled [ 1.491868] DEV CI test message [ 1.496652] remoteproc remoteproc0: q6v5-wcss is available [ 1.499425] subsys-restart: ssr_parse_restart_orders(): q6v5_m3 device has been added to q6v5-m3's restart group [ 1.504565] subsys-restart: ssr_parse_restart_orders(): q6v5_wcss device has been added to q6v5-m3's restart group [ 1.514960] remoteproc remoteproc1: q6v5-m3 is available [ 1.525552] of_graph_get_next_endpoint(): no port node found in /soc/csr@6001000 [ 1.530548] coresight-csr 6001000.csr: CSR initialized [ 1.537999] of_graph_get_next_endpoint(): no port node found in /soc/cti@6010000 [ 1.542977] of_graph_get_next_endpoint(): no port node found in /soc/cti@6011000 [ 1.550537] of_graph_get_next_endpoint(): no port node found in /soc/cti@6012000 [ 1.557915] of_graph_get_next_endpoint(): no port node found in /soc/cti@6013000 [ 1.565294] of_graph_get_next_endpoint(): no port node found in /soc/cti@6014000 [ 1.572657] of_graph_get_next_endpoint(): no port node found in /soc/cti@6015000 [ 1.580047] of_graph_get_next_endpoint(): no port node found in /soc/cti@6016000 [ 1.587435] of_graph_get_next_endpoint(): no port node found in /soc/cti@6017000 [ 1.594814] of_graph_get_next_endpoint(): no port node found in /soc/cti@6018000 [ 1.602180] of_graph_get_next_endpoint(): no port node found in /soc/cti@6019000 [ 1.609566] of_graph_get_next_endpoint(): no port node found in /soc/cti@601a000 [ 1.616951] of_graph_get_next_endpoint(): no port node found in /soc/cti@601b000 [ 1.624302] of_graph_get_next_endpoint(): no port node found in /soc/cti@601c000 [ 1.631667] of_graph_get_next_endpoint(): no port node found in /soc/cti@601d000 [ 1.639061] of_graph_get_next_endpoint(): no port node found in /soc/cti@601e000 [ 1.646438] of_graph_get_next_endpoint(): no port node found in /soc/cti@601f000 [ 1.653818] of_graph_get_next_endpoint(): no port node found in /soc/cti@6198000 [ 1.661282] of_graph_get_next_endpoint(): no port node found in /soc/cti@6199000 [ 1.668681] of_graph_get_next_endpoint(): no port node found in /soc/cti@619a000 [ 1.676082] of_graph_get_next_endpoint(): no port node found in /soc/cti@619b000 [ 1.683483] of_graph_get_next_endpoint(): no port node found in /soc/cti@610c000 [ 1.690856] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x06064000 [ 1.697926] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x06064000sps_register_bam_device : unable to create IPC Logging 2 for bam 0x06064000 [ 1.713619] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x06064000sps_register_bam_device : unable to create IPC Logging 4 for bam 0x06064000 [ 1.728127] sps:BAM 0x06064000 is registered.[ 1.735072] coresight-tmc 6048000.tmc: TMC initialized [ 1.739163] coresight-tmc 6047000.tmc: TMC initialized [ 1.744342] coresight-funnel 6041000.funnel: FUNNEL initialized [ 1.749347] coresight-funnel 6100000.funnel: FUNNEL initialized [ 1.755182] coresight-funnel 6130000.funnel: FUNNEL initialized [ 1.761071] coresight-funnel 6120000.funnel: FUNNEL initialized [ 1.766997] coresight-funnel 61a1000.funnel: FUNNEL initialized [ 1.773518] coresight-etm4x 619c000.etm: ETM 4.0 initialized [ 1.779209] coresight-etm4x 619d000.etm: ETM 4.0 initialized [ 1.785152] coresight-etm4x 619e000.etm: ETM 4.0 initialized [ 1.790818] coresight-etm4x 619f000.etm: ETM 4.0 initialized [ 1.796020] coresight-replicator-qcom 6046000.replicator: REPLICATOR 1.0 initialized [ 1.801771] coresight-stm 6002000.stm: STM initialized [ 1.810400] of_graph_get_next_endpoint(): no port node found in /soc/hwevent@6101000 [ 1.814188] coresight-hwevent 6101000.hwevent: Hardware Event driver initialized [ 1.824675] Netfilter messages via NETLINK v0.30. [ 1.829353] nf_conntrack version 0.5.0 (3035 buckets, 40000 max) [ 1.834623] ip_tables: (C) 2000-2006 Netfilter Core Team [ 1.840847] NET: Registered protocol family 10 [ 1.846059] ip6_tables: (C) 2000-2006 Netfilter Core Team [ 1.849805] NET: Registered protocol family 17 [ 1.855092] bridge: automatic filtering via arp/ip/ip6tables has been deprecated. Update your scripts to load br_netfilter if you need this. [ 1.859411] Bridge firewalling registered [ 1.872142] 8021q: 802.1Q VLAN Support v1.8 [ 1.876162] Registering SWP/SWPB emulation handler [ 1.881941] qcom,cpr4-apss-regulator b018000.cpr4-ctrl: CPR valid fuse count: 4 [ 1.885556] ubi0: attaching mtd18 [ 2.089805] ubi0: scanning is finished [ 2.097760] ubi0: attached mtd18 (name "rootfs", size 36 MiB) [ 2.097785] ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes [ 2.102480] ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 [ 2.109268] ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096 [ 2.116121] ubi0: good PEBs: 288, bad PEBs: 0, corrupted PEBs: 0 [ 2.122878] ubi0: user volume: 3, internal volumes: 1, max. volumes count: 128 [ 2.129143] ubi0: max/mean erase counter: 5/1, WL threshold: 4096, image sequence number: 133286235 [ 2.136177] ubi0: available PEBs: 0, total reserved PEBs: 288, PEBs reserved for bad PEB handling: 20 [ 2.145131] ubi0: background thread "ubi_bgt0d" started, PID 123 [ 2.166561] hctosys: unable to open rtc device (rtc0) [ 2.196234] crash_kernel_init, res rsvd1, 4d400000, 100000, /reserved-memory/rsvd1@4D400000 [ 2.196270] mtd dev crash, size 0x80000 [ 2.204204] crash_kernel_init, crash init, res->start:913800004d400000,crash_buf:0x800000007ffe4,crash_buf_len 0x8ecae200, crash_avail_sz 0x81909cd8 [ 2.207828] Crash kernel dumper registered ok! [ 2.221204] crash_syslog_init, res rsvd2, 4d500000, 100000, /reserved-memory/rsvd2@4D500000 [ 2.225963] mtd dev crash_syslog, size 0x80000 [ 2.235126] crash_syslog_init, crash init, crash_buf_len 0x3ffe4, crash_avail_sz 0x40000 [ 2.239253] Crash syslog dumper register ok! [ 2.248248] ALSA device list: [ 2.251903] No soundcards found. [ 2.257724] VFS: Mounted root (squashfs filesystem) readonly on device 31:23. [ 2.258592] Freeing unused kernel memory: 224K (818ec000 - 81924000) [ 2.770545] init: Console is alive [ 2.770668] init: - watchdog - [ 2.910230] random: nonblocking pool is initialized [ 4.027260] kmodloader: loading kernel modules from /etc/modules-boot.d/* [ 4.063923] Button Hotplug driver version 0.4.1 [ 4.066857] qcom,cpr4-apss-regulator b018000.cpr4-ctrl: CPR valid fuse count: 4 [ 4.066896] kmodloader: done loading kernel modules from /etc/modules-boot.d/* [ 4.075211] init: - preinit - Press the [f] key and hit [enter] to enter failsafe mode Press the [1], [2], [3] or [4] key and hit [enter] to select the debug level [ 7.733761] UBIFS (ubi0:2): background thread "ubifs_bgt0_2" started, PID 183 [ 7.771854] UBIFS (ubi0:2): recovery needed [ 7.856333] UBIFS (ubi0:2): recovery completed [ 7.856457] UBIFS (ubi0:2): UBIFS: mounted UBI device 0, volume 2, name "rootfs_data" [ 7.859714] UBIFS (ubi0:2): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes [ 7.867613] UBIFS (ubi0:2): FS size: 6602752 bytes (6 MiB, 52 LEBs), journal size 1015809 bytes (0 MiB, 6 LEBs) [ 7.877481] UBIFS (ubi0:2): reserved for root: 311863 bytes (304 KiB) [ 7.887372] UBIFS (ubi0:2): media format: w4/r0 (latest is w4/r0), UUID 5CF73D5D-790A-4F6C-9503-CB3068C5FE0D, small LPT model [ 7.898468] mount_root: switching to ubifs overlay [ 8.029694] ubi1: attaching mtd20 [ 8.235662] ubi1: scanning is finished [ 8.243529] ubi1: attached mtd20 (name "overlay", size 36 MiB) [ 8.243555] ubi1: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes [ 8.248266] ubi1: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 [ 8.255118] ubi1: VID header offset: 2048 (aligned 2048), data offset: 4096 [ 8.261964] ubi1: good PEBs: 293, bad PEBs: 0, corrupted PEBs: 0 [ 8.268743] ubi1: user volume: 1, internal volumes: 1, max. volumes count: 128 [ 8.274999] ubi1: max/mean erase counter: 1/0, WL threshold: 4096, image sequence number: 1049124281 [ 8.282022] ubi1: available PEBs: 0, total reserved PEBs: 293, PEBs reserved for bad PEB handling: 20 [ 8.291337] ubi1: background thread "ubi_bgt1d" started, PID 197 UBI device number 1, total 293 LEBs (37203968 bytes, 35.4 MiB), available 0 LEBs (0 bytes), LEB size 126976 bytes (124.0 KiB) ubimkvol: error!: UBI device does not have free logical eraseblocks [ 8.331957] UBIFS (ubi1:0): background thread "ubifs_bgt1_0" started, PID 208 [ 8.369583] UBIFS (ubi1:0): recovery needed [ 8.496132] UBIFS (ubi1:0): recovery completed [ 8.496249] UBIFS (ubi1:0): UBIFS: mounted UBI device 1, volume 0, name "data" [ 8.499478] UBIFS (ubi1:0): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes [ 8.506712] UBIFS (ubi1:0): FS size: 32886784 bytes (31 MiB, 259 LEBs), journal size 1650688 bytes (1 MiB, 13 LEBs) [ 8.516671] UBIFS (ubi1:0): reserved for root: 1553323 bytes (1516 KiB) [ 8.526912] UBIFS (ubi1:0): media format: w4/r0 (latest is w4/r0), UUID F7418AD7-BE72-4E92-BCAB-4829BD33BDF7, small LPT model 65536+0 records in 65536+0 records out 65536 bytes (64.0KB) copied, 0.324056 seconds, 197.5KB/s [ 8.917415] urandom-seed: Seed file not found (/etc/urandom.seed) [ 9.504083] procd: - early - [ 9.504143] procd: - watchdog - [ 10.097058] procd: - watchdog - [ 10.097222] procd: - ubus - [ 10.149929] procd: - init - Please press Enter to activate this console. /etc/rc.d/S00sysfixtime: Tue Sep 7 16:17:06 UTC 2021 /etc/rc.d/S00wifi_fw_mount: 65536+0 records in /etc/rc.d/S00wifi_fw_mount: 65536+0 records out /etc/rc.d/S00wifi_fw_mount: 65536 bytes (64.0KB) copied, 0.338705 seconds, 189.0KB/s /etc/rc.d/S03cgroup_init: mount: mounting none on /dev/cgroup/mem failed: Resource busy /etc/rc.d/S03cgroup_init: mount: mounting none on /dev/cgroup/net_cls failed: Resource busy /etc/rc.d/S03cgroup_init: mount: mounting none on /dev/cgroup/cpu failed: Resource busy [ 10.765757] cgroup: mkdir (310) created nested cgroup for controller "memory" which has incomplete hierarchy support. Nested cgroups may change behavior in the future. [ 10.765805] cgroup: "memory" requires setting use_hierarchy to 1 on the root [ 10.879126] kmodloader: loading kernel modules from /etc/modules.d/* [ 10.904978] cfg80211: World regulatory domain updated: [ 10.905005] cfg80211: DFS Master region: unset [ 10.909003] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time) [ 10.913617] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A) [ 10.923225] cfg80211: (2457000 KHz - 2482000 KHz @ 20000 KHz, 92000 KHz AUTO), (N/A, 2000 mBm), (N/A) [ 10.931261] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A) [ 10.932559] qcom,cpr4-apss-regulator b018000.cpr4-ctrl: CPR valid fuse count: 4 [ 10.948367] cfg80211: (5170000 KHz - 5250000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (N/A) [ 10.955656] cfg80211: (5250000 KHz - 5330000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (0 s) [ 10.965382] cfg80211: (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s) [ 10.974838] cfg80211: (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A) [ 10.982900] cfg80211: (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A) [ 11.457689] ssdk_switch_device_num_init[998]:INFO:ess-switch dts node number: 1 [ 11.461419] ssdk_dt_get_switch_node[836]:INFO:ess-switch DT exist! [ 11.468308] ssdk_dt_parse_access_mode[737]:INFO:switch_access_mode: local bus [ 11.474480] ssdk_dt_parse_access_mode[750]:INFO:switchreg_base_addr: 0x3a000000 [ 11.481585] ssdk_dt_parse_access_mode[751]:INFO:switchreg_size: 0x1000000 [ 11.488878] ssdk_dt_parse_mac_mode[242]:INFO:mac mode = 0x0 [ 11.495310] ssdk_dt_parse_mac_mode[251]:INFO:mac mode1 = 0xff [ 11.500854] ssdk_dt_parse_mac_mode[260]:INFO:mac mode2 = 0xff [ 11.506641] ssdk_dt_parse_uniphy[279]:INFO:ess-uniphy DT exist! [ 11.512467] ssdk_dt_parse_intf_mac[683]:INFO:dp1 MAC b6:fe:ef:d3:6f:27 [ 11.518250] ssdk_dt_parse_intf_mac[683]:INFO:dp2 MAC 9c:9d:7e:4b:40:60 [ 11.524773] ssdk_dt_parse_intf_mac[683]:INFO:dp3 MAC 9c:9d:7e:4b:40:60 [ 11.531269] ssdk_dt_parse_intf_mac[683]:INFO:dp4 MAC 9c:9d:7e:4b:40:60 [ 11.537780] ssdk_dt_parse_intf_mac[683]:INFO:dp5 MAC 28:d1:27:fe:4d:76 [ 11.544322] ssdk_plat_init start [ 11.625072] ssdk_ppe_clock_init[517]:INFO:ppe and uniphy clock init successfully! [ 11.628725] HPPE initializing... [ 11.631781] malibu_phy_api_ops_init[2849]:INFO:qca probe malibu phy driver succeeded! [ 11.642630] regi_init[3359]:INFO:Initializing HPPE!! [ 11.863667] ssdk_ppe_reset_init[798]:INFO:ppe reset successfully! [ 11.869629] qca_hppe_tdm_hw_init[737]:INFO:tdm setup num=96 [ 11.872988] qca_hppe_portctrl_hw_init[159]:INFO:Cypress PPE port initializing [ 11.984128] __adpt_hppe_uniphy_psgmii_mode_set[620]:INFO:uniphy 0 psgmii channel selection [ 12.198858] ssdk_switch_register[1617]:INFO:Chip version 0x1501 [ 12.201842] qca_link_polling_select[1279]:INFO:link-polling-required node does not exist [ 12.208081] ssdk_switch_register[1642]:INFO:polling is selected [ 12.215816] regi_init[3363]:INFO:Initializing HPPE Done!! [ 12.220740] regi_init[3407]:INFO:qca-ssdk module init succeeded! [ 12.229030] tun: Universal TUN/TAP device driver, 1.6 [ 12.229177] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com> [ 12.238865] EDMA ver 1 hw init [ 12.240418] EDMA HW Reset completed succesfully [ 12.243273] Num rings - TxDesc:1 (23-23) TxCmpl:1 (23-23) [ 12.247730] RxDesc:1 (15-15) RxFill:1 (7-7) [ 12.254060] qcom,cpr4-apss-regulator b018000.cpr4-ctrl: CPR valid fuse count: 4 [ 12.259960] qcom,cpr4-apss-regulator b018000.cpr4-ctrl: CPR valid fuse count: 4 [ 12.260127] ********************************************************** [ 12.260129] * NSS Data Plane driver [ 12.260131] ********************************************************** [ 12.273103] l2tp_core: L2TP core driver, V2.0 [ 12.273955] l2tp_netlink: L2TP netlink interface [ 12.293589] qcom,cpr4-apss-regulator b018000.cpr4-ctrl: CPR valid fuse count: 4 [ 12.518627] nss_driver - fw of size 725584 bytes copied to load addr: 40000000, nss_id : 0 [ 12.519906] Supported Frequencies - [ 12.525818] 187.2 MHz 748.8 MHz [ 12.531763] 1.4976 GHz [ 12.532714] [ 12.535265] node size 2 # items 4 [ 12.536543] memory: 40000000 268435456 (avl 213606400) items 4 active_cores 1 [ 12.539772] addr/size storage words 2 2 # words 4 in DTS, ddr size 800000 [ 12.546939] 7f24cf80: NSS core 0 DDR from 40000000 to 40800000 [ 12.553823] 7f24cf80: meminfo init succeed [ 12.575443] qcom,cpr4-apss-regulator b018000.cpr4-ctrl: CPR valid fuse count: 4 [ 12.576952] gre: GRE over IPv4 demultiplexor driver [ 12.582591] ip_gre: GRE over IPv4 tunneling driver [ 12.600476] Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011) [ 12.600939] node size 2 # items 4 [ 12.601259] Invalid macid 6 [ 12.609102] memory: 40000000 268435456 (avl 213606400) items 4 active_cores 1 [ 12.611722] addr/size storage words 2 2 # words 4 in DTS, ddr size 800000 [ 12.615852] QCA multicast snooping installed successfully [ 12.617925] ip_set: protocol 6 [ 12.631160] 7f24cf80: nss core 0 booted successfully [ 12.636452] QCA Hy-Fi multicast installation successfully [ 12.645414] PPP generic driver version 2.4.2 [ 12.646191] NET: Registered protocol family 24 [ 12.661487] diag: IPC Logging disabled [ 12.678284] qcom,cpr4-apss-regulator b018000.cpr4-ctrl: CPR valid fuse count: 4 [ 12.692788] Create netlink socket fail [ 12.692961] cannot find nss-macsec0 node [ 12.695579] cannot find nss-macsec1 node [ 12.699590] cannot find nss-macsec2 node [ 12.703417] nss_macsec init success [ 12.712841] u32 classifier [ 12.712862] input device check on [ 12.714457] Actions configured [ 12.719448] Mirror/redirect action on [ 12.736597] ipaccount: ifname [lo] event[5] [ 12.736626] ipaccount: ifname [miireg] event[5] [ 12.739598] ipaccount: ifname [eth0] event[5] [ 12.744138] ipaccount: ifname [eth1] event[5] [ 12.748627] ipaccount: ifname [eth2] event[5] [ 12.752962] ipaccount: ifname [eth3] event[5] [ 12.757404] ipaccount: ifname [eth4] event[5] [ 12.761648] ipaccount: ifname [ip6tnl0] event[5] [ 12.766010] ipaccount: ifname [gre0] event[5] [ 12.770672] ipaccount: ifname [gretap0] event[5] [ 12.774946] ipaccount: ifname [bond0] event[5] [ 12.779609] ipaccount: ifname [teql0] event[5] [ 12.786641] arp_tables: (C) 2002 David S. Miller [ 12.791873] l2tp_ppp: PPPoL2TP kernel driver, V2.0 [ 12.814783] nf_conntrack_rtsp v0.6.21 loading [ 12.819856] nf_nat_rtsp v0.6.21 loading [ 12.822734] PPP MPPE Compression module registered [ 12.823987] PPTP driver version 0.8.5 [ 12.843391] xt_time: kernel timezone is -0000 [ 12.845099] kmodloader: done loading kernel modules from /etc/modules.d/* [ 14.537948] Not a bridge device, or device not found: br-lan [ 14.715745] Not a bridge device, or device not found: br-lan /etc/rc.d/S10boot: cp: omitting directory '/cfg/default/internal' [ 16.727971] configuring additional NSS pbufs [ 16.733175] additional pbufs of size 1400832 got added to NSS [ 16.772167] mem_manager: module license 'unspecified' taints kernel. [ 16.772196] Disabling lock debugging due to kernel taint [ 16.800972] qdf_dbg_mask value is invalid [ 16.800995] Using the default module debug levels instead [ 16.804028] qdf_print_ctrl_register: Allocated print control object 0 [ 16.809461] MINIDUMP VA .bss start=7f614240 module=qdf [ 20.738983] wlan: [1164:E:CONFIG] cfg_uint_item_handler: 142: allow_mon_vaps_in_sr= - Invalid format (status 16); Using default 0 [ 20.739088] wlan: [1164:E:CONFIG] cfg_uint_item_handler: 171: gScanProbeRepeatTime=50 - Out of range [0, 30]; Using 50 [ 20.749925] MINIDUMP VA .bss start=7f878340 module=umac****** No Coldboot/QDSS Support for low mem ****** ******No cold_boot_support***** [ 21.430403] [ 21.430403] MINIDUMP VA .bss start=7fa25b40 module=qca_ol[ 21.639969] wlan: [1168:I:ANY] =======ol_if_register_wifi3_0========== [ 21.639969] [ 21.640012] wlan: [1168:I:ANY] osif_nss_register_module: 90: NSS wifi ops registered for target_type:1 with soc_ops:7fb12ad4 [ 21.646834] remoteproc remoteproc1: powering up q6v5-m3 [ 21.670707] remoteproc remoteproc1: Booting fw image IPQ6018/m3_fw.mdt, size 6860 [ 21.670740] Sanity check passed for M3 image [ 21.750011] remoteproc remoteproc1: remote processor q6v5-m3 is now up [ 21.750136] <SSR>: glink SUBSYS_BEFOER_POWERUP reinit done [ 21.755471] wlan: [1168:I:ANY] ol_ath_ahb_ssr: 192: ol_ath_ahb_ssr: SSR event 2 [ 21.760911] remoteproc remoteproc0: powering up q6v5-wcss [ 21.793009] remoteproc remoteproc0: Booting fw image IPQ6018/q6_fw.mdt, size 7340 [ 21.793476] Sanity check passed for the image [ 23.136533] glink_core_link_up glink is up [ 23.136793] glink_xprt_open_event [ 23.139560] Subsystem error monitoring/handling services are up [ 23.139585] remoteproc remoteproc0: remote processor q6v5-wcss is now up [ 23.139631] wlan: [1168:I:ANY] ol_ath_ahb_ssr: 192: ol_ath_ahb_ssr: SSR event 3 [ 23.155795] IPC_RTR: ipc_router_create_log_ctx: IPC Logging disabled [ 23.264709] diag: In diag_send_feature_mask_update, control channel is not open, p: 2, 7f3f3ac4 [ 23.265159] cnss: QMI WLFW service connected, state: 0x1 [ 23.273673] cnss: device_id : 65533 mem mode : [2] [ 23.278486] cnss: No board_id entry in device tree [ 23.291740] cnss: BDF location : 0x4abc0000 [ 23.291765] cnss: BDF IPQ6018/bdwlan.bin size 65536 [ 23.295047] cnss: BDF download response , result: 0, err: 0x0 [ 23.299855] cnss: per device BDF location : 0x4abe0000 [ 23.305575] cnss: CALDATA IPQ6018/caldata.bin size 65536 offset 0x20000 [ 23.311664] cnss: BDF download response , result: 0, err: 0x0 [ 23.352565] wlan: [1168:I:ANY] pld_ahb_wlan_enable: 689: cnss_mode: Mission mode [ 23.358532] wlan: [1168:I:ANY] qca_napi_create: 369: qca_napi_create: napi instance 0 created on pipe 4 [ 23.359210] wlan: [1168:I:ANY] __ol_ath_attach: 3520: Allocated soc 88cc0500 [ 23.368449] wlan: [1168:E:CONFIG] cfg_uint_item_handler: 171: dp_int_timer_threshold_tx=1000 - Out of range [8, 100]; Using 1000 [ 23.375593] wlan: [1168:E:CONFIG] cfg_uint_item_handler: 171: dp_nss_comp_ring_size=4096 - Out of range [8192, 49152]; Using 8192 [ 23.387341] wlan: [1168:I:ANY] osif_nss_wifi_soc_setup: 177: nss-wifili:#1 register wifili function for soc [ 23.398624] wlan: [1168:I:ANY] osif_nss_wifi_soc_setup: 189: nss register id -1 nss config 3 Target Type 19 [ 23.408529] wlan: [1168:I:ANY] __ol_ath_attach: 3746: dev name soc0 [ 23.418505] wlan: [1168:I:ANY] ol_ath_soc_attach: 7023: WMI attached. wmi_handle 8ea7e600 [ 23.424441] wlan: [1168:I:ANY] htc_wmi_init: 6324: htc_wmi_init() HT Create . 89392000 [ 23.432635] wlan: [1168:I:ANY] htc_wmi_init: 6331: htc_wmi_init() Skipping BMI Done. [ 23.440557] wlan: [1168:I:ANY] htc_wmi_init: 6388: [htc_wmi_init:6388] host_enable 0 nss_nwifi_offload 0 [ 23.453148] wlan: [1168:I:ANY] ol_target_init_complete: 6506: CDP soc attach success [ 23.457999] wlan: [1168:I:ANY] ol_target_init_complete: 6513: Soc attach success NSS config 0 [ 23.465783] wlan: [1168:I:ANY] htc_set_async_ep: 428: htc_set_async_ep: htc_handle 89392000, ep 2, value 1 [ 23.474202] wlan: [1168:I:ANY] htc_set_async_ep: 428: htc_set_async_ep: htc_handle 89392000, ep 3, value 1 [ 23.484664] wlan: [516:I:TIF] HE_CAP Info = 1a08010d [ 23.493391] wlan: [516:I:TIF] Num HW modes = 2 [ 23.498528] wlan: [516:I:TIF] Num PHY = 2 [ 23.502769] wlan: [516:I:TIF] Preferred HW Mode = 1 Num Radios = 2 [ 23.506865] wlan: [516:I:TIF] init_deinit_add_11ax_modes: 1440: Adding 11ax regulatory modes, [ 23.512933] wlan: [516:I:TIF] init_deinit_add_11ax_modes: 1444: phy_id = 0 wireless modes = 391f9001 [ 23.521537] wlan: [516:I:TIF] init_deinit_add_11ax_modes: 1440: Adding 11ax regulatory modes, [ 23.530736] wlan: [516:I:TIF] init_deinit_add_11ax_modes: 1444: phy_id = 1 wireless modes = 680680c [ 23.539246] wlan: [516:I:TIF] init_deinit_add_11ax_modes: 1467: hw_mode_id = 1 phy_id = 0 wireless modes = 0 [ 23.548447] wlan: [516:I:TIF] init_deinit_add_11ax_modes: 1467: hw_mode_id = 1 phy_id = 1 wireless modes = 0 [ 23.558257] wlan: [516:I:TIF] init_deinit_add_11ax_modes: 1467: hw_mode_id = 5 phy_id = 0 wireless modes = 0 [ 23.568066] wlan: [516:I:TIF] init_deinit_add_11ax_modes: 1467: hw_mode_id = 5 phy_id = 1 wireless modes = 0 [ 23.578171] wlan: [516:I:dfs] WLAN_DEBUG_DFS_ALWAYS : wlan_dfs_pdev_obj_create_notification: 389: dfs_offload 1 [ 23.587689] wlan: [516:I:dfs] WLAN_DEBUG_DFS_ALWAYS : dfs_agile_soc_obj_init: 1579: dfs->dfs_psoc_idx: 0 [ 23.597493] wlan: [516:I:dfs] WLAN_DEBUG_DFS_ALWAYS : dfs_agile_soc_obj_init: 1585: dfs_soc_obj->num_dfs_privs: 1 [ 23.607459] wlan: [516:I:dfs] WLAN_DEBUG_DFS_ALWAYS : wlan_dfs_pdev_obj_create_notification: 361: Do not allocate DFS object for 2G, pdev_id = 1 [ 23.624901] wlan: [516:I:TIF] init_deinit_update_pdev_tgt_info: 1082: CDP PDEV ATTACH success [ 23.632694] wlan: [516:I:TIF] init_deinit_update_pdev_tgt_info: 1082: CDP PDEV ATTACH success [ 23.739714] wlan: [516:I:ANY] copy_fw_abi_version_tlv: 6649: copy_fw_abi_version_tlv: INIT_CMD version: 1, 0, 0x5f414351, 0x4c4d, 0x0, 0x0 [ 23.822447] wlan: [516:I:ANY] dp_peer_map_attach_wifi3: 8665: dp_peer_map_attach_wifi3 max_peers 167, max_ast_index: 528 [ 23.822447] [ 23.822539] wlan: [516:I:ANY] ready_extract_init_status_tlv: 8473: ready_extract_init_status_tlv:0 [ 23.833821] wlan: [1168:I:ANY] ol_ath_connect_htc: 1236: WMI is ready [ 23.855462] wlan: [1168:E:WMI] wmi_unified_register_event_handler: Event id 141 is unavailable [ 23.855496] wlan: [1168:E:WMI] wmi_unified_register_event_handler: Event id 137 is unavailable [ 23.862986] wlan: [1168:I:ANY] ol_ath_soc_attach: 7110: connect HTC [ 23.871611] wlan: [1168:I:ANY] ol_ath_soc_attach: 7111: bypasswmi : 0 [ 23.877737] wlan: [1168:E:WMI] wmi_unified_register_event_handler: Event id 38 is unavailable [ 23.884330] wlan: [1168:E:WMI] wmi_unified_register_event_handler: Event id 138 is unavailable [ 23.892827] wlan: [1168:E:WMI] wmi_unified_register_event_handler: Event id 139 is unavailable [ 23.901354] wlan: [1168:E:WMI] wmi_unified_register_event_handler: Event id 55 is unavailable [ 23.909941] wlan: [1168:E:WMI] wmi_unified_register_event_handler: Event id 49 is unavailable [ 23.918539] wlan: [1168:I:ANY] ol_ath_soc_attach: 7191: ol_ath_soc_attach() UMAC attach . [ 23.927097] wlan: [1168:I:ANY] __ol_ath_attach: 3862: pdev_netdev name wifi0 [ 23.935213] wlan: [1168:I:ANY] __ol_ath_attach: 3908: Skip txrx_pdev_attach_target [ 23.942392] wlan: [1168:I:ANY] __ol_ath_attach: 3933: BURSTING enabled by default [ 23.949860] wlan: [1168:I:ANY] ol_ath_pdev_attach: 8488: interface_id 0 [ 23.957341] wlan: [1168:I:TIF] ol_ath_pdev_regdmn_init: 7352: phy id = 0 Modes supported [ 23.963763] wlan: [1168:I:TIF] ol_ath_pdev_regdmn_init: 7359: 11b = 0 11g = 0 11a = 1 11n = 1 11ac = 1 11ax = 1 [ 23.972091] wlan: [1168:I:TIF] ol_ath_pdev_regdmn_init: 7368: Reg cap - phy_id = 0 supp_bnd = 2, modes = 391f9001, lo_2g = 0, hi_2g = 0 lo_g5 = 4910, hi_5g = 6100 [ 23.982346] wlan: [1168:I:ANY] ol_ath_update_wireless_modes: 1351: wireless_modes = 391f9001 before update [ 23.996706] wlan: [1168:I:ANY] ol_ath_update_wireless_modes: 1366: Wireless_modes = 391f9001 after update [ 24.006383] wlan: [1168:I:ANY] ol_ath_update_ext_caps: 1918: 11ax 5G supported case [ 24.016187] wlan: [1168:I:ANY] ol_resmgr_create: 223: OL Resmgr Init-ed [ 24.023549] wlan: [1168:I:ANY] ieee80211_cbs_init [ 24.030070] wlan: [1168:I:ANY] CBS Inited [ 24.030070] [ 24.034953] wlan: [1168:I:ANY] acfg_attach: 3473: acfg_attach: 3473: Netlink socket created:8694c400 [ 24.040404] wlan: [1168:I:ANY] ol_if_eeprom_attach: 1459: rate power table override is only supported for AR98XX [ 24.049704] wlan: [1168:I:ANY] ol_ath_stats_attach: 2134: periodic_chan_stats: 1 [ 24.060895] wlan: [1168:I:ANY] wlan_scan_update_channel_list: 1090: num_chan: 25 [ 24.067260] wlan: [0:I:ANY] ol_ath_pdev_attach: 8852: Set global_ic[1], ptr:7f878670 [ 24.074609] wlan: [0:I:ANY] dp_lag_soc_enable: 91: pdev(8d917d04) Enabling DBDC Repeater 1 [ 24.082348] wlan: [0:I:ANY] dp_lag_pdev_set_primary_radio: 44: pdev(8d917d04) is_primary 1 [ 24.082376] wlan: [0:E:NSS] [nss-wifili]: NSS Wifili DBDC Repeater enable message passed [ 24.098750] wlan: [1168:I:ANY] ol_ath_pdev_attach: 8981: Pdev = 0 Number of peers = 69 [ 24.107123] wlan: [1168:I:ANY] ol_ath_pri20_cfg_blockchanlist_parse: 560: cfg block channel list is empty [ 24.107377] wlan: [0:I:ANY] ol_ath_twt_enable_complete_event_handler: 13830: twt enabled. [ 24.107377] [ 24.124462] wlan: [1168:I:ANY] ol_ath_configure_cong_ctrl_max_msdus: 3451: pdev_idx = 0 tx_desc_limit = 4096 [ 24.134003] wlan: [1168:I:ANY] osif_wrap_attach: 239: osif wrap attached [ 24.134003] [ 24.143967] wlan: [1168:I:ANY] osif_wrap_devt_init: 201: osif wrap dev table init done [ 24.143967] [ 24.152034] wlan: [1168:I:ANY] osif_wrap_attach: 247: Wrap Attached: Wrap_com =869c9e00 ic->ic_wrap_com=869c9e00 &wrap_com->wc_devt=869c9e00 [ 24.152034] [ 24.161273] wlan: [1168:I:ANY] __ol_ath_attach: 4114: needed_headroom reservation 44 [ 24.175478] wlan: [1168:I:ANY] ol_ath_enable_fraglist: 3010: Enabled Fraglist bit for the radio wifi0 features 41 [ 24.183519] wlan: [1168:I:ANY] wlan_cfg80211_init: 10899: Number of 5G channels: 25 [ 24.193976] wlan: [1168:I:ANY] ieee80211_cfg80211_radio_attach: 10993: ic: 0x88180500, wdev: 0x8818fc5c, wiphy: 0x8ec73960, netdev: 0x88180000 [ 24.201549] ipaccount: ifname [wifi0] event[16] [ 24.214825] ipaccount: ifname [wifi0] event[5] [ 24.218830] wlan: [1168:I:ANY] __ol_ath_attach: 3862: pdev_netdev name wifi1 [ 24.223144] wlan: [1168:I:ANY] __ol_ath_attach: 3908: Skip txrx_pdev_attach_target [ 24.230371] wlan: [1168:I:ANY] __ol_ath_attach: 3933: BURSTING enabled by default [ 24.237859] wlan: [1168:I:ANY] ol_ath_pdev_attach: 8488: interface_id 1 [ 24.245326] wlan: [1168:I:TIF] ol_ath_pdev_regdmn_init: 7352: phy id = 1 Modes supported [ 24.251704] wlan: [1168:I:TIF] ol_ath_pdev_regdmn_init: 7359: 11b = 1 11g = 1 11a = 0 11n = 1 11ac = 1 11ax = 1 [ 24.260072] wlan: [1168:I:TIF] ol_ath_pdev_regdmn_init: 7368: Reg cap - phy_id = 1 supp_bnd = 1, modes = 680680c, lo_2g = 2312, hi_2g = 2732 lo_g5 = 0, hi_5g = 0 [ 24.270321] wlan: [1168:I:ANY] ol_ath_update_wireless_modes: 1351: wireless_modes = 680680c before update [ 24.284632] wlan: [1168:I:ANY] ol_ath_update_wireless_modes: 1366: Wireless_modes = 680680c after update [ 24.294258] wlan: [1168:I:ANY] ol_ath_update_ext_caps: 1926: 11ax 2G supported case [ 24.303970] wlan: [1168:I:ANY] ol_resmgr_create: 223: OL Resmgr Init-ed [ 24.311234] wlan: [1168:I:ANY] ieee80211_cbs_init [ 24.317776] wlan: [1168:I:ANY] CBS Inited [ 24.317776] [ 24.322623] wlan: [1168:I:ANY] acfg_attach: 3448: Offload using existing sock 8694c400 [ 24.328135] wlan: [1168:I:ANY] ol_if_eeprom_attach: 1459: rate power table override is only supported for AR98XX [ 24.336009] wlan: [1168:I:ANY] ol_ath_stats_attach: 2134: periodic_chan_stats: 1 [ 24.346858] wlan: [1168:I:ANY] wlan_scan_update_channel_list: 1090: num_chan: 11 [ 24.353758] wlan: [0:I:ANY] ol_ath_pdev_attach: 8852: Set global_ic[2], ptr:7f878670 [ 24.361070] wlan: [0:I:ANY] dp_lag_soc_enable: 91: pdev(8d917304) Enabling DBDC Repeater 1 [ 24.368858] wlan: [0:I:ANY] dp_lag_pdev_set_primary_radio: 44: pdev(8d917304) is_primary 0 [ 24.368921] wlan: [0:E:NSS] [nss-wifili]: NSS Wifili DBDC Repeater enable message passed [ 24.385262] wlan: [1168:I:ANY] ol_ath_pdev_attach: 8981: Pdev = 1 Number of peers = 69 [ 24.393611] wlan: [1168:I:ANY] ol_ath_pri20_cfg_blockchanlist_parse: 560: cfg block channel list is empty [ 24.393839] wlan: [0:I:ANY] ol_ath_twt_enable_complete_event_handler: 13830: twt enabled. [ 24.393839] [ 24.410934] wlan: [1168:I:ANY] ol_ath_configure_cong_ctrl_max_msdus: 3451: pdev_idx = 1 tx_desc_limit = 4096 [ 24.420494] wlan: [1168:I:ANY] osif_wrap_attach: 239: osif wrap attached [ 24.420494] [ 24.430429] wlan: [1168:I:ANY] osif_wrap_devt_init: 201: osif wrap dev table init done [ 24.430429] [ 24.438504] wlan: [1168:I:ANY] osif_wrap_attach: 247: Wrap Attached: Wrap_com =869c8200 ic->ic_wrap_com=869c8200 &wrap_com->wc_devt=869c8200 [ 24.438504] [ 24.447741] wlan: [1168:I:ANY] __ol_ath_attach: 4114: needed_headroom reservation 44 [ 24.461940] wlan: [1168:I:ANY] ol_ath_enable_fraglist: 3010: Enabled Fraglist bit for the radio wifi1 features 41 [ 24.469949] wlan: [1168:I:ANY] wlan_cfg80211_init: 10887: Number of 2G channels: 11 [ 24.480358] wlan: [1168:I:ANY] ieee80211_cfg80211_radio_attach: 10993: ic: 0x881a0500, wdev: 0x881afc5c, wiphy: 0x8ec77160, netdev: 0x881a0000 [ 24.488018] ipaccount: ifname [wifi1] event[16] [ 24.501311] ipaccount: ifname [wifi1] event[5] [ 24.505289] wlan: [1168:I:Dynamic Mode Change] ol_ath_check_and_reconfig_hw_mode: 3420: Running with HW mode = 1 [ 24.509620] ipaccount: ifname [soc0] event[16] [ 24.520738] ipaccount: ifname [soc0] event[5] [ 24.524231] wlan: [1168:E:QLD] qld_register: 108: Handle or address is NULL [ 24.528629] wlan: [1168:I:ANY] wlan_pdev_operation: 744: num_radios=1, wifi_radios[0].sc = 88180500_radio_type = 2 [ 24.535419] wlan: [1168:I:ANY] wlan_pdev_operation: 744: num_radios=2, wifi_radios[1].sc = 881a0500_radio_type = 2 [ 24.545860] wlan: [1168:I:ANY] init_ath_pci_3_0: 151: \x016ath_ol_pci_wifi3.0: (Atheros/multi-bss) [ 24.556275] MINIDUMP VA .bss start=7fb12d80 module=wifi_3_0No Direct-Attach chipsets found. /etc/rc.d/S10boot: /sbin/wifi: eval: line 1: disable_qcawifi: not found /etc/rc.d/S10boot: /sbin/wifi: eval: line 1: disable_qcawifi: not found /etc/rc.d/S10boot: killall: iface-mgr: no process killed /etc/rc.d/S10boot: killall: qldtool: no process killed /etc/rc.d/S10boot: killall: cfr_test_app: no process killed [ 28.418148] wlan: [1714:I:ANY] ol_ath_ahb_ssr: 192: ol_ath_ahb_ssr: SSR event 0 [ 28.418196] wlan: [1714:I:ANY] ol_ath_ahb_ssr: 238: nss-wifi: soc_stop soc->soc_idx: 0 [ 28.424569] wlan: [1714:E:NSS] [nss-wifili]: sending soc stop message to NSS [ 28.932566] wlan: [1714:I:ANY] ol_ath_ahb_remove: 813: Suspending Target - with disable_intr set :soc0 (sc 8efd3000) soc=88cc0500 [ 28.932609] wlan: [1714:I:ANY] wlan_pdev_operation: 847: wlan_pdev_operation: disable_target_intr val is 1 [ 28.943244] wlan: [1714:I:ANY] wlan_pdev_operation: 847: wlan_pdev_operation: disable_target_intr val is 1 [ 28.952771] wlan: [1714:I:ANY] ol_ath_ahb_remove: 816: waiting for target paused event from target :soc0 (sc 8efd3000) [ 28.962392] wlan: [1714:I:ANY] ol_ath_ahb_remove: 834: AHB Call to nss detach [ 28.973062] wlan: [1714:I:ANY] ol_ath_ahb_remove: 837: Call to nss detach ops 7fb12ad4 [ 28.980268] wlan: [1714:I:ANY] ol_ath_ahb_remove: 839: nss-wifi: detach [ 28.988164] wlan: [1714:E:NSS] [nss-wifili]: sending soc stop message to NSS [ 29.495229] wlan: [1714:E:NSS] [nss-wifili]: calling pdev de-attach with id 0 [ 29.497977] wlan: [1714:E:NSS] [nss-wifili]: calling pdev de-attach with id 1 [ 29.505724] wlan: [1714:E:NSS] nss-wifili: Free Host Pool Memory [ 29.508564] wlan: [1714:E:QLD] qld_register: 108: Handle or address is NULL [ 29.514769] wlan: [1714:I:ANY] osif_wrap_devt_detach: 217: osif wrap dev table detached [ 29.514769] [ 29.521397] wlan: [1714:I:ANY] osif_wrap_detach: 271: osif wrap detached [ 29.521397] [ 29.531281] wlan: [1714:I:ANY] acfg_detach: 3500: acfg_detach Netlink socket released [ 29.539215] wlan: [0:I:ANY] ol_ath_pdev_detach: 9421: ol_ath_pdev_detach: remove global_ic[1]..gloabl_ic ptr:7f878670 [ 29.547025] wlan: [1714:I:ANY] ieee80211_cfg80211_radio_detach: 11026: ieee80211_cfg80211_radio_detach: ic: 0x88180500, wdev: 0x8818fc5c, netdev: 0x88180000 [ 29.623678] ipaccount: ifname [wifi0] event[6] [ 29.663722] ipaccount: ifname [wifi0] event[17] [ 29.723802] PCIe: User of event deregistration is NULL [ 29.773783] wlan: [1714:E:QLD] qld_register: 108: Handle or address is NULL [ 29.773877] wlan: [1714:I:ANY] osif_wrap_devt_detach: 217: osif wrap dev table detached [ 29.773877] [ 29.779552] wlan: [1714:I:ANY] osif_wrap_detach: 271: osif wrap detached [ 29.779552] [ 29.789393] wlan: [0:I:ANY] ol_ath_pdev_detach: 9421: ol_ath_pdev_detach: remove global_ic[0]..gloabl_ic ptr:7f878670 [ 29.797371] wlan: [1714:I:ANY] ieee80211_cfg80211_radio_detach: 11026: ieee80211_cfg80211_radio_detach: ic: 0x881a0500, wdev: 0x881afc5c, netdev: 0x881a0000 [ 29.863675] ipaccount: ifname [wifi1] event[6] [ 29.913705] ipaccount: ifname [wifi1] event[17] [ 29.953794] PCIe: User of event deregistration is NULL [ 29.993858] ipaccount: ifname [soc0] event[6] [ 30.043714] ipaccount: ifname [soc0] event[17] [ 30.043821] wlan: [1714:I:ANY] ol_ath_phyerr_detach: 351: \x016ol_ath_phyerr_detach: called [ 30.047058] wlan: [1714:E:WMI] Event id 55 is unavailable [ 30.055386] wlan: [1714:E:WMI] Event id 141 is unavailable [ 30.060589] wlan: [1714:E:WMI] Event id 137 is unavailable [ 30.076164] wlan: [1714:I:ANY] \x016ath_ahb_remove [ 30.076164] [ 30.119309] remoteproc remoteproc0: stopped remote processor q6v5-wcss [ 30.119594] glink_core_link_down glink is down [ 30.124776] <SSR>: glink SUBSYS_AFTER_SHUTDOWN cleanup done [ 30.129187] wlan: [1714:I:ANY] ol_ath_ahb_ssr: 192: ol_ath_ahb_ssr: SSR event 1 [ 30.134734] remoteproc remoteproc1: stopped remote processor q6v5-m3 [ 30.173690] glink_xprt_close_event [ 30.183721] cnss: QMI WLFW service disconnected, state: 0x0 [ 30.258164] wlan: [1739:E:QLD] qld_list_deinit: 63: Handle NULL [ 30.258340] wlan: [1739:F:SER] wlan_serialization_deinit: 618: deregistered callbacks with obj mgr successfully /etc/rc.d/S10boot: cp: omitting directory '/cfg/default/internal' [ 30.598979] qdf_dbg_mask value is invalid [ 30.599003] Using the default module debug levels instead [ 30.601990] qdf_print_ctrl_register: Allocated print control object 0 [ 30.607475] MINIDUMP VA .bss start=7fb5a240 module=qdf [ 34.079834] wlan: [1792:E:CONFIG] cfg_uint_item_handler: 142: allow_mon_vaps_in_sr= - Invalid format (status 16); Using default 0 [ 34.079938] wlan: [1792:E:CONFIG] cfg_uint_item_handler: 171: gScanProbeRepeatTime=50 - Out of range [0, 30]; Using 50 [ 34.090761] MINIDUMP VA .bss start=7f84c340 module=umac****** No Coldboot/QDSS Support for low mem ****** ******No cold_boot_support***** [ 34.642707] [ 34.642707] MINIDUMP VA .bss start=7f9f9b40 module=qca_ol[ 34.808400] wlan: [1795:I:ANY] =======ol_if_register_wifi3_0========== [ 34.808400] [ 34.808444] wlan: [1795:I:ANY] osif_nss_register_module: 90: NSS wifi ops registered for target_type:1 with soc_ops:7fae6ad4 [ 34.815267] remoteproc remoteproc1: powering up q6v5-m3 [ 34.826789] remoteproc remoteproc1: Booting fw image IPQ6018/m3_fw.mdt, size 6860 [ 34.831616] Sanity check passed for M3 image [ 34.840012] remoteproc remoteproc1: remote processor q6v5-m3 is now up [ 34.843733] <SSR>: glink SUBSYS_BEFOER_POWERUP reinit done [ 34.849936] wlan: [1795:I:ANY] ol_ath_ahb_ssr: 192: ol_ath_ahb_ssr: SSR event 2 [ 34.855426] remoteproc remoteproc0: powering up q6v5-wcss [ 34.862700] remoteproc remoteproc0: Booting fw image IPQ6018/q6_fw.mdt, size 7340 [ 34.868567] Sanity check passed for the image [ 35.177592] glink_core_link_up glink is up [ 35.177830] glink_xprt_open_event [ 35.180681] Subsystem error monitoring/handling services are up [ 35.180767] IPC_RTR: ipc_router_create_log_ctx: IPC Logging disabled [ 35.180779] remoteproc remoteproc0: remote processor q6v5-wcss is now up [ 35.180827] wlan: [1795:I:ANY] ol_ath_ahb_ssr: 192: ol_ath_ahb_ssr: SSR event 3 [ 35.203985] cnss: QMI WLFW service connected, state: 0x1 [ 35.210308] cnss: device_id : 65533 mem mode : [2] [ 35.224353] cnss: No board_id entry in device tree [ 35.224597] cnss: BDF location : 0x4abc0000 [ 35.228022] cnss: BDF IPQ6018/bdwlan.bin size 65536 [ 35.232312] cnss: BDF download response , result: 0, err: 0x0 [ 35.237169] cnss: per device BDF location : 0x4abe0000 [ 35.242901] cnss: CALDATA IPQ6018/caldata.bin size 65536 offset 0x20000 [ 35.249064] cnss: BDF download response , result: 0, err: 0x0 [ 35.290870] wlan: [1795:I:ANY] pld_ahb_wlan_enable: 689: cnss_mode: Mission mode [ 35.296629] wlan: [1795:I:ANY] qca_napi_create: 369: qca_napi_create: napi instance 0 created on pipe 4 [ 35.297517] wlan: [1795:I:ANY] __ol_ath_attach: 3520: Allocated soc 86f80500 [ 35.306748] wlan: [1795:E:CONFIG] cfg_uint_item_handler: 171: dp_int_timer_threshold_tx=1000 - Out of range [8, 100]; Using 1000 [ 35.313902] wlan: [1795:E:CONFIG] cfg_uint_item_handler: 171: dp_nss_comp_ring_size=4096 - Out of range [8192, 49152]; Using 8192 [ 35.325649] wlan: [1795:I:ANY] osif_nss_wifi_soc_setup: 177: nss-wifili:#1 register wifili function for soc [ 35.336931] wlan: [1795:I:ANY] osif_nss_wifi_soc_setup: 189: nss register id -1 nss config 3 Target Type 19 [ 35.346834] wlan: [1795:I:ANY] __ol_ath_attach: 3746: dev name soc0 [ 35.356793] wlan: [1795:I:ANY] ol_ath_soc_attach: 7023: WMI attached. wmi_handle 879a2400 [ 35.362729] wlan: [1795:I:ANY] htc_wmi_init: 6324: htc_wmi_init() HT Create . 8efd7000 [ 35.370954] wlan: [1795:I:ANY] htc_wmi_init: 6331: htc_wmi_init() Skipping BMI Done. [ 35.378850] wlan: [1795:I:ANY] htc_wmi_init: 6388: [htc_wmi_init:6388] host_enable 0 nss_nwifi_offload 0 [ 35.391461] wlan: [1795:I:ANY] ol_target_init_complete: 6506: CDP soc attach success [ 35.396308] wlan: [1795:I:ANY] ol_target_init_complete: 6513: Soc attach success NSS config 0 [ 35.404089] wlan: [1795:I:ANY] htc_set_async_ep: 428: htc_set_async_ep: htc_handle 8efd7000, ep 2, value 1 [ 35.412494] wlan: [1795:I:ANY] htc_set_async_ep: 428: htc_set_async_ep: htc_handle 8efd7000, ep 3, value 1 [ 35.422972] wlan: [517:I:TIF] HE_CAP Info = 1a08010d [ 35.431715] wlan: [517:I:TIF] Num HW modes = 2 [ 35.436828] wlan: [517:I:TIF] Num PHY = 2 [ 35.441074] wlan: [517:I:TIF] Preferred HW Mode = 1 Num Radios = 2 [ 35.445170] wlan: [517:I:TIF] init_deinit_add_11ax_modes: 1440: Adding 11ax regulatory modes, [ 35.451238] wlan: [517:I:TIF] init_deinit_add_11ax_modes: 1444: phy_id = 0 wireless modes = 391f9001 [ 35.459841] wlan: [517:I:TIF] init_deinit_add_11ax_modes: 1440: Adding 11ax regulatory modes, [ 35.469042] wlan: [517:I:TIF] init_deinit_add_11ax_modes: 1444: phy_id = 1 wireless modes = 680680c [ 35.477551] wlan: [517:I:TIF] init_deinit_add_11ax_modes: 1467: hw_mode_id = 1 phy_id = 0 wireless modes = 0 [ 35.486754] wlan: [517:I:TIF] init_deinit_add_11ax_modes: 1467: hw_mode_id = 1 phy_id = 1 wireless modes = 0 [ 35.496564] wlan: [517:I:TIF] init_deinit_add_11ax_modes: 1467: hw_mode_id = 5 phy_id = 0 wireless modes = 0 [ 35.506371] wlan: [517:I:TIF] init_deinit_add_11ax_modes: 1467: hw_mode_id = 5 phy_id = 1 wireless modes = 0 [ 35.516487] wlan: [517:I:dfs] WLAN_DEBUG_DFS_ALWAYS : wlan_dfs_pdev_obj_create_notification: 389: dfs_offload 1 [ 35.525995] wlan: [517:I:dfs] WLAN_DEBUG_DFS_ALWAYS : dfs_agile_soc_obj_init: 1579: dfs->dfs_psoc_idx: 0 [ 35.535798] wlan: [517:I:dfs] WLAN_DEBUG_DFS_ALWAYS : dfs_agile_soc_obj_init: 1585: dfs_soc_obj->num_dfs_privs: 1 [ 35.545764] wlan: [517:I:dfs] WLAN_DEBUG_DFS_ALWAYS : wlan_dfs_pdev_obj_create_notification: 361: Do not allocate DFS object for 2G, pdev_id = 1 [ 35.563040] wlan: [517:I:TIF] init_deinit_update_pdev_tgt_info: 1082: CDP PDEV ATTACH success [ 35.571023] wlan: [517:I:TIF] init_deinit_update_pdev_tgt_info: 1082: CDP PDEV ATTACH success [ 35.677745] wlan: [517:I:ANY] copy_fw_abi_version_tlv: 6649: copy_fw_abi_version_tlv: INIT_CMD version: 1, 0, 0x5f414351, 0x4c4d, 0x0, 0x0 [ 35.755605] wlan: [517:I:ANY] dp_peer_map_attach_wifi3: 8665: dp_peer_map_attach_wifi3 max_peers 167, max_ast_index: 528 [ 35.755605] [ 35.755701] wlan: [517:I:ANY] ready_extract_init_status_tlv: 8473: ready_extract_init_status_tlv:0 [ 35.766978] wlan: [1795:I:ANY] ol_ath_connect_htc: 1236: WMI is ready [ 35.788475] wlan: [1795:E:WMI] wmi_unified_register_event_handler: Event id 141 is unavailable [ 35.788509] wlan: [1795:E:WMI] wmi_unified_register_event_handler: Event id 137 is unavailable [ 35.796038] wlan: [1795:I:ANY] ol_ath_soc_attach: 7110: connect HTC [ 35.804580] wlan: [1795:I:ANY] ol_ath_soc_attach: 7111: bypasswmi : 0 [ 35.810737] wlan: [1795:E:WMI] wmi_unified_register_event_handler: Event id 38 is unavailable [ 35.817342] wlan: [1795:E:WMI] wmi_unified_register_event_handler: Event id 138 is unavailable [ 35.825849] wlan: [1795:E:WMI] wmi_unified_register_event_handler: Event id 139 is unavailable [ 35.834366] wlan: [1795:E:WMI] wmi_unified_register_event_handler: Event id 55 is unavailable [ 35.842943] wlan: [1795:E:WMI] wmi_unified_register_event_handler: Event id 49 is unavailable [ 35.851551] wlan: [1795:I:ANY] ol_ath_soc_attach: 7191: ol_ath_soc_attach() UMAC attach . [ 35.860098] wlan: [1795:I:ANY] __ol_ath_attach: 3862: pdev_netdev name wifi0 [ 35.868224] wlan: [1795:I:ANY] __ol_ath_attach: 3908: Skip txrx_pdev_attach_target [ 35.875415] wlan: [1795:I:ANY] __ol_ath_attach: 3933: BURSTING enabled by default [ 35.882866] wlan: [1795:I:ANY] ol_ath_pdev_attach: 8488: interface_id 0 [ 35.890354] wlan: [1795:I:TIF] ol_ath_pdev_regdmn_init: 7352: phy id = 0 Modes supported [ 35.896772] wlan: [1795:I:TIF] ol_ath_pdev_regdmn_init: 7359: 11b = 0 11g = 0 11a = 1 11n = 1 11ac = 1 11ax = 1 [ 35.905112] wlan: [1795:I:TIF] ol_ath_pdev_regdmn_init: 7368: Reg cap - phy_id = 0 supp_bnd = 2, modes = 391f9001, lo_2g = 0, hi_2g = 0 lo_g5 = 4910, hi_5g = 6100 [ 35.915358] wlan: [1795:I:ANY] ol_ath_update_wireless_modes: 1351: wireless_modes = 391f9001 before update [ 35.929671] wlan: [1795:I:ANY] ol_ath_update_wireless_modes: 1366: Wireless_modes = 391f9001 after update [ 35.939393] wlan: [1795:I:ANY] ol_ath_update_ext_caps: 1918: 11ax 5G supported case [ 35.949201] wlan: [1795:I:ANY] ol_resmgr_create: 223: OL Resmgr Init-ed [ 35.956567] wlan: [1795:I:ANY] ieee80211_cbs_init [ 35.963070] wlan: [1795:I:ANY] CBS Inited [ 35.963070] [ 35.967966] wlan: [1795:I:ANY] acfg_attach: 3473: acfg_attach: 3473: Netlink socket created:8a060800 [ 35.973418] wlan: [1795:I:ANY] ol_if_eeprom_attach: 1459: rate power table override is only supported for AR98XX [ 35.982713] wlan: [1795:I:ANY] ol_ath_stats_attach: 2134: periodic_chan_stats: 1 [ 35.993924] wlan: [1795:I:ANY] wlan_scan_update_channel_list: 1090: num_chan: 25 [ 36.000259] wlan: [0:I:ANY] ol_ath_pdev_attach: 8852: Set global_ic[1], ptr:7f84c670 [ 36.007627] wlan: [0:I:ANY] dp_lag_soc_enable: 91: pdev(8a2b7c04) Enabling DBDC Repeater 1 [ 36.015395] wlan: [0:I:ANY] dp_lag_pdev_set_primary_radio: 44: pdev(8a2b7c04) is_primary 1 [ 36.015398] wlan: [0:E:NSS] [nss-wifili]: NSS Wifili DBDC Repeater enable message passed [ 36.031763] wlan: [1795:I:ANY] ol_ath_pdev_attach: 8981: Pdev = 0 Number of peers = 69 [ 36.040144] wlan: [1795:I:ANY] ol_ath_pri20_cfg_blockchanlist_parse: 560: cfg block channel list is empty [ 36.040394] wlan: [0:I:ANY] ol_ath_twt_enable_complete_event_handler: 13830: twt enabled. [ 36.040394] [ 36.057451] wlan: [1795:I:ANY] ol_ath_configure_cong_ctrl_max_msdus: 3451: pdev_idx = 0 tx_desc_limit = 4096 [ 36.067014] wlan: [1795:I:ANY] osif_wrap_attach: 239: osif wrap attached [ 36.067014] [ 36.076979] wlan: [1795:I:ANY] osif_wrap_devt_init: 201: osif wrap dev table init done [ 36.076979] [ 36.085054] wlan: [1795:I:ANY] osif_wrap_attach: 247: Wrap Attached: Wrap_com =8db9d400 ic->ic_wrap_com=8db9d400 &wrap_com->wc_devt=8db9d400 [ 36.085054] [ 36.094303] wlan: [1795:I:ANY] __ol_ath_attach: 4114: needed_headroom reservation 44 [ 36.108490] wlan: [1795:I:ANY] ol_ath_enable_fraglist: 3010: Enabled Fraglist bit for the radio wifi0 features 41 [ 36.116539] wlan: [1795:I:ANY] wlan_cfg80211_init: 10899: Number of 5G channels: 25 [ 36.126958] wlan: [1795:I:ANY] ieee80211_cfg80211_radio_attach: 10993: ic: 0x86b40500, wdev: 0x86b4fc5c, wiphy: 0x8a2ce960, netdev: 0x86b40000 [ 36.134578] ipaccount: ifname [wifi0] event[16] [ 36.147838] ipaccount: ifname [wifi0] event[5] [ 36.151836] wlan: [1795:I:ANY] __ol_ath_attach: 3862: pdev_netdev name wifi1 [ 36.156204] wlan: [1795:I:ANY] __ol_ath_attach: 3908: Skip txrx_pdev_attach_target [ 36.163350] wlan: [1795:I:ANY] __ol_ath_attach: 3933: BURSTING enabled by default [ 36.170860] wlan: [1795:I:ANY] ol_ath_pdev_attach: 8488: interface_id 1 [ 36.178341] wlan: [1795:I:TIF] ol_ath_pdev_regdmn_init: 7352: phy id = 1 Modes supported [ 36.184720] wlan: [1795:I:TIF] ol_ath_pdev_regdmn_init: 7359: 11b = 1 11g = 1 11a = 0 11n = 1 11ac = 1 11ax = 1 [ 36.193045] wlan: [1795:I:TIF] ol_ath_pdev_regdmn_init: 7368: Reg cap - phy_id = 1 supp_bnd = 1, modes = 680680c, lo_2g = 2312, hi_2g = 2732 lo_g5 = 0, hi_5g = 0 [ 36.203325] wlan: [1795:I:ANY] ol_ath_update_wireless_modes: 1351: wireless_modes = 680680c before update [ 36.217647] wlan: [1795:I:ANY] ol_ath_update_wireless_modes: 1366: Wireless_modes = 680680c after update [ 36.227274] wlan: [1795:I:ANY] ol_ath_update_ext_caps: 1926: 11ax 2G supported case [ 36.237013] wlan: [1795:I:ANY] ol_resmgr_create: 223: OL Resmgr Init-ed [ 36.244268] wlan: [1795:I:ANY] ieee80211_cbs_init [ 36.250759] wlan: [1795:I:ANY] CBS Inited [ 36.250759] [ 36.255667] wlan: [1795:I:ANY] acfg_attach: 3448: Offload using existing sock 8a060800 [ 36.261102] wlan: [1795:I:ANY] ol_if_eeprom_attach: 1459: rate power table override is only supported for AR98XX [ 36.269037] wlan: [1795:I:ANY] ol_ath_stats_attach: 2134: periodic_chan_stats: 1 [ 36.279770] wlan: [1795:I:ANY] wlan_scan_update_channel_list: 1090: num_chan: 11 [ 36.286784] wlan: [0:I:ANY] ol_ath_pdev_attach: 8852: Set global_ic[2], ptr:7f84c670 [ 36.294108] wlan: [0:I:ANY] dp_lag_soc_enable: 91: pdev(8a2b7d04) Enabling DBDC Repeater 1 [ 36.301862] wlan: [0:E:NSS] [nss-wifili]: NSS Wifili DBDC Repeater enable message passed [ 36.301866] wlan: [0:I:ANY] dp_lag_pdev_set_primary_radio: 44: pdev(8a2b7d04) is_primary 0 [ 36.301899] wlan: [1795:I:ANY] ol_ath_pdev_attach: 8981: Pdev = 1 Number of peers = 69 [ 36.302000] wlan: [1795:I:ANY] ol_ath_pri20_cfg_blockchanlist_parse: 560: cfg block channel list is empty [ 36.302015] wlan: [1795:I:ANY] ol_ath_configure_cong_ctrl_max_msdus: 3451: pdev_idx = 1 tx_desc_limit = 4096 [ 36.302042] wlan: [1795:I:ANY] osif_wrap_attach: 239: osif wrap attached [ 36.302042] [ 36.302049] wlan: [1795:I:ANY] osif_wrap_devt_init: 201: osif wrap dev table init done [ 36.302049] [ 36.302059] wlan: [1795:I:ANY] osif_wrap_attach: 247: Wrap Attached: Wrap_com =8ea7e000 ic->ic_wrap_com=8ea7e000 &wrap_com->wc_devt=8ea7e000 [ 36.302059] [ 36.302091] wlan: [1795:I:ANY] __ol_ath_attach: 4114: needed_headroom reservation 44 [ 36.302100] wlan: [1795:I:ANY] ol_ath_enable_fraglist: 3010: Enabled Fraglist bit for the radio wifi1 features 41 [ 36.302130] wlan: [1795:I:ANY] wlan_cfg80211_init: 10887: Number of 2G channels: 11 [ 36.302433] wlan: [1795:I:ANY] ieee80211_cfg80211_radio_attach: 10993: ic: 0x86fc0500, wdev: 0x86fcfc5c, wiphy: 0x8a2cc960, netdev: 0x86fc0000 [ 36.302470] ipaccount: ifname [wifi1] event[16] [ 36.303161] ipaccount: ifname [wifi1] event[5] [ 36.303325] wlan: [1795:I:Dynamic Mode Change] ol_ath_check_and_reconfig_hw_mode: 3420: Running with HW mode = 1 [ 36.303339] ipaccount: ifname [soc0] event[16] [ 36.303881] ipaccount: ifname [soc0] event[5] [ 36.303914] wlan: [1795:E:QLD] qld_register: 108: Handle or address is NULL [ 36.303936] wlan: [1795:I:ANY] wlan_pdev_operation: 744: num_radios=1, wifi_radios[0].sc = 86b40500_radio_type = 2 [ 36.303946] wlan: [1795:I:ANY] wlan_pdev_operation: 744: num_radios=2, wifi_radios[1].sc = 86fc0500_radio_type = 2 [ 36.303974] wlan: [1795:I:ANY] init_ath_pci_3_0: 151: \x016ath_ol_pci_wifi3.0: (Atheros/multi-bss) [ 36.480158] [ 36.480158] MINIDUMP VA .bss start=7fae6d80 module=wifi_3_0 [ 36.480159] wlan: [0:I:ANY] ol_ath_twt_enable_complete_event_handler: 13830: twt enabled. [ 36.480159] /etc/rc.d/S10boot: kill: you need to specify whom to kill acfg_tool: Issuing blocking call to wait for events [ 37.750969] ipaccount: ifname [bond0] event[11] /etc/rc.d/S15qca-wpa-supplicant: Successfully initialized wpa_supplicant /etc/rc.d/S16qca-ssdk: /etc/rc.d/S16qca-ssdk: starting /etc/rc.d/S19dnsmasq: cp: can't stat '/etc/dnsmasq.d/*': No such file or directory [ 40.816835] xt_connbytes: Forcing CT accounting to be enabled mi_iptv: modify wan_ifname : eth4 -> eth4 mi_iptv: invalid internet_vid 0 [ 41.568820] ECM init [ 41.568881] ECM database jhash random seed: 0x544b272d [ 41.571577] ECM init complete /etc/rc.d/S19qca-nss-ecm: net.bridge.bridge-nf-call-ip6tables = 1 /etc/rc.d/S19qca-nss-ecm: net.bridge.bridge-nf-call-iptables = 1 /etc/rc.d/S19qca-nss-ecm: dev.nss.general.redirect = 1 /etc/rc.d/S20network: uci: Invalid argument /etc/rc.d/S21nginx: start fcgi-cgi by spawn-fcgi. /etc/rc.d/S21nginx: start nginx ok. lbd: stopping daemon /etc/init.d/network: Command failed: Not found [ 43.627662] ipaccount: ifname [br-lan] event[16] [ 43.628972] ipaccount: ifname [br-lan] event[5] [ 43.632446] ipaccount: ifname [eth1] event[13] [ 43.636206] ipaccount: ifname [eth1] event[1] [ 43.641371] ipaccount: ifname [eth1] event[20] [ 43.645020] ipaccount: ifname [eth1] event[26] [ 43.649153] ipaccount: ifname [eth1] event[21] [ 43.653468] ipaccount: ifname [eth1] event[11] [ 43.657815] device eth1 entered promiscuous mode [ 43.662725] ipaccount: ifname [br-lan] event[11] [ 43.674006] ipaccount: ifname [br-lan] event[8] [ 43.674111] ipaccount: ifname [eth1] event[27] [ 43.684596] ipaccount: ifname [br-lan] event[8] [ 43.684726] ipaccount: ifname [br-lan] event[13] [ 43.687972] br-lan: port 1(eth1) entered forwarding state [ 43.692855] br-lan: port 1(eth1) entered forwarding state [ 43.707337] ipaccount: ifname [br-lan] event[1] [ 43.718238] ipaccount: ifname [eth2] event[13] [ 43.718839] ipaccount: ifname [eth2] event[1] [ 43.723532] ipaccount: ifname [eth2] event[20] [ 43.726535] ipaccount: ifname [eth2] event[26] [ 43.731085] ipaccount: ifname [eth2] event[21] [ 43.735697] ipaccount: ifname [eth2] event[11] [ 43.739215] device eth2 entered promiscuous mode [ 43.746238] br-lan: port 2(eth2) entered forwarding state [ 43.748456] br-lan: port 2(eth2) entered forwarding state [ 43.754047] ipaccount: ifname [eth2] event[27] [ 43.761695] ipaccount: ifname [eth3] event[13] [ 43.764031] ipaccount: ifname [eth3] event[1] [ 43.769735] ipaccount: ifname [eth3] event[20] [ 43.773418] ipaccount: ifname [eth3] event[26] [ 43.779923] ipaccount: ifname [eth3] event[21] [ 43.781181] ipaccount: ifname [eth3] event[11] [ 43.785717] device eth3 entered promiscuous mode [ 43.790104] br-lan: port 3(eth3) entered forwarding state [ 43.794750] br-lan: port 3(eth3) entered forwarding state [ 43.800365] ipaccount: ifname [eth3] event[27] [ 43.809027] ipaccount: ifname [eth4] event[13] [ 43.810500] ipaccount: ifname [eth4] event[1] [ 43.815313] ipaccount: ifname [lo] event[13] [ 43.819118] ipaccount: ifname [lo] event[1] /etc/init.d/network: File not preset /etc/init.d/network: Failed to get common data /etc/init.d/network: File not preset /etc/init.d/network: Failed to get common data /etc/init.d/network: Command failed: Not found [ 43.985539] __mc_netlink_receive: Disable bridge snooping! [ 44.021434] hyfi_netlink_receive:114:hyfi: Not attached to bridge br-lan /etc/rc.d/S49messagingagent.sh: start messagingagent ok. /etc/init.d/network: Command failed: Not found /etc/init.d/network: killall: iface-mgr: no process killed /etc/init.d/network: killall: qldtool: no process killed /etc/rc.d/S50acd: acd *** not in cap/re mode, skip handle acfg_tool: Issuing blocking call to wait for events qcawificfg80211 disable radio wifi0 crond[3651]: crond (busybox 1.25.1) started, log level 5 [ 44.623785] br-lan: port 1(eth1) entered disabled state [ 44.623904] ipaccount: ifname [eth1] event[4] [ 44.627917] ipaccount: ifname [br-lan] event[4] [ 44.632859] br-lan: port 2(eth2) entered disabled state [ 44.637263] ipaccount: ifname [eth2] event[4] [ 44.642274] br-lan: port 3(eth3) entered disabled state [ 44.647233] ipaccount: ifname [eth3] event[4] [ 44.656959] ipaccount: ifname [eth4] event[4] /etc/init.d/network: error_handler received : -1 /etc/init.d/network: Failed to send message to driver Error:-1 qcawificfg80211 disable radio wifi1 /etc/init.d/network: error_handler received : -1 /etc/init.d/network: Failed to send message to driver Error:-1 /etc/rc.d/S51cp_preinstall_plugins.sh: ls: /usr/share/datacenter/appdata/notuninstallable/app_infos: No such file or directory /etc/rc.d/S51cp_preinstall_plugins.sh: ls: /usr/share/datacenter/appdata/uninstallable/app_infos: No such file or directory /etc/init.d/network: device: wifi0 vifs: cfg023579 /etc/init.d/network: device: wifi1 vifs: cfg043579 acfg_tool: Issuing blocking call to wait for events qcawificfg80211: enable radio wifi0 /etc/init.d/network: cp: omitting directory '/cfg/default/internal' [ 45.623775] ipaccount: ifname [br-lan] event[4] [ 46.304112] __mc_netlink_receive: Disable bridge snooping! [ 46.316952] wlan: [4788:I:ANY] wlan_scan_update_channel_list: 1090: num_chan: 19 [ 46.317164] wlan: [4788:I:dfs] WLAN_DEBUG_DFS_ALWAYS : dfs_init_precac_list: 1445: freq=58 [ 46.323431] wlan: [4788:I:dfs] WLAN_DEBUG_DFS_ALWAYS : dfs_init_precac_list: 1445: freq=106 [ 46.331605] wlan: [4788:I:dfs] WLAN_DEBUG_DFS_ALWAYS : dfs_init_precac_list: 1445: freq=122 [ 46.340846] wlan: [4788:I:ANY] wlan_scan_update_channel_list: 1090: num_chan: 19 [ 46.348235] wlan: [4788:I:dfs] WLAN_DEBUG_DFS_ALWAYS : dfs_init_precac_list: 1445: freq=58 [ 46.355828] wlan: [4788:I:dfs] WLAN_DEBUG_DFS_ALWAYS : dfs_init_precac_list: 1445: freq=106 [ 46.363882] wlan: [4788:I:dfs] WLAN_DEBUG_DFS_ALWAYS : dfs_init_precac_list: 1445: freq=122 [ 46.372157] wlan: [4788:I:ANY] number of channels: 2G = 0 5G = 19 [ 46.380409] wlan: [4788:I:ANY] wlan_cfg80211_set_country: 6058: wlan_cfg80211_set_country: Country: CH ret: 0 [ 46.386733] wlan: [4051:I:ANY] ol_acfg_handle_wifi_ioctl: 417: ol_acfg_handle_wifi_ioctl: req->cmd=75 not valid for radio interface, it's for VAP Error received: -22 Could not send NL command [ 46.619946] __mc_netlink_receive: Enable bridge snooping! /etc/init.d/network: Enable ol_stats by default for Lithium platforms [ 46.847494] wlan: [5035:I:ANY] wlan_cfg80211_set_hwaddr: 6131: wlan_cfg80211_set_hwaddr :9c:9d:7e:4b:40:61 ret: 0 [ 46.916362] wlan: [5058:I:ANY] ol_ath_set_config_param: 1577: set TXBF_SND_PERIOD: value 100 wmi_status 0 [ 47.129596] wlan: [0:I:ANY] ol_ath_set_config_param: 2328: Disconnect_timeout value: 10 [ 47.205107] wlan: [0:I:ANY] ol_ath_set_config_param: 2334: Reconfiguration_timeout value:60 /etc/init.d/network: cat: can't open '/lib/wifi/wifi_nss_hk_olnum': No such file or directory /etc/init.d/network: sh: 64: unknown operand /etc/init.d/network: cat: can't open '/sys/class/net/wl0/address': No such file or directory number of vifs: cfg023579 [ 47.411086] ipaccount: ifname [wifi0] event[13] [ 47.411550] ipaccount: ifname [wifi0] event[1] /etc/init.d/network: cfg80211: ifname: wl0 mode: __ap cfgphy: phy2 [ 47.560227] wlan: [5380:I:ANY] wlan_cfg80211_add_virtual_intf: 325: proprietary mode 6 for interface: wl0 : clone params: 0x00000001 [ 47.560303] wlan: [5380:I:ANY] osifp_create_wlan_vap: 10411: VDEV Create 9c:9d:7e:4b:40:61 [ 47.571371] wlan: [5380:E:CMN_MLME] mlme_vdev_ext_obj_create: 1389: VDEV MLME obj is creation [ 47.579442] wlan: [5380:I:ANY] wlan_vap_create: 1594: enter. devhandle=0x86b40500, opmode=IEEE80211_M_HOSTAP, flags=0x1 [ 47.579442] [ 47.588402] wlan: [5380:I:ANY] ol_ath_vap_set_param: 1121: Setting SGI value: 1 [ 47.600489] wlan: [5380:I:ANY] ol_ath_vap_set_param: 2149: VDEV params:HE su_bfee:1|su_bfer:1|mu_bfee:0|mu_bfer:1|dl_muofdma:1|ul_muofdma:1|ul_mumimo:0 [ 47.607472] wlan: [5380:I:ANY] ol_ath_vap_set_param: 2159: he_bf_cap=0x3b [ 47.621035] wlan: [5380:I:ANY] ol_ath_vap_set_param: 2174: VDEV params:AC/VHT sounding mode:HE|SU/MU sounding mode:SU|Trig/Non-Trig sounding mode:Non-Trigged [ 47.628028] wlan: [5380:I:ANY] MBO Initialized [ 47.642015] wlan: [5380:I:ANY] OCE Initialized [ 47.646348] wlan: [5380:I:ANY] osif_nss_ol_vap_create: 1268: NSS wifi offload VAP create IF 33 nss_id -1 [ 47.650733] wlan: [5380:I:ANY] NSS radio_if 30 [ 47.660482] wlan: [0:I:ANY] osif_nss_vdev_cfg_callback: 1020: VDEV configuration success: 0 [ 47.664751] wlan: [5380:I:ANY] osif_nss_ol_vap_create: 1376: vap create 88131500 : if_num 33 [ 47.672973] wlan: [5380:I:ANY] wlan_vap_create: 1627: exit [ 47.681871] wlan: [5380:I:ANY] osif_create_vap_complete: 10609: TX Checksum:1|SG:1|TSO:1|LRO:0 [ 47.687071] wlan: [5380:I:ANY] WLAN-NSS: VAP NSS ops initialized [ 47.695926] ipaccount: ifname [wl0] event[16] [ 47.703157] ipaccount: ifname [wl0] event[5] [ 47.706410] wlan: [5380:I:ANY] VAP device wl0 created osifp: (88131500) os_if: (85b20000) /etc/init.d/network: sh: 0: unknown operand /etc/rc.d/S51key_services_boot_check: @@@@@@ RA67 key_service_check skip wireless! /etc/init.d/network: sh: out of range /etc/init.d/network: sh: 1: unknown operand /etc/rc.d/S54hyfi-bridging: hyfi-bridging *** not in cap/re mode, skip handle [ 48.982615] wlan: [5839:I:ANY] ieee80211_ucfg_setparam: 1453: Setting Max Stations:64 [ 49.000335] wlan: [5877:I:ANY] ol_ath_vap_set_param: 2149: VDEV params:HE su_bfee:1|su_bfer:1|mu_bfee:0|mu_bfer:0|dl_muofdma:1|ul_muofdma:1|ul_mumimo:0 [ 49.000384] wlan: [5877:I:ANY] ol_ath_vap_set_param: 2159: he_bf_cap=0x33 [ 49.019159] wlan: [5879:I:ANY] wlan_set_param: 2899: HE UL MU MIMO already set with this value =0 /etc/init.d/network: sh: 0: unknown operand /etc/init.d/network: Following channels are blocked from Channel selection algorithm /etc/init.d/network: [52] [56] [60] [64] [100] [104] [108] [112] [116] [120] [124] [128] [132] [136] [140] [144] /etc/init.d/network: sh: 0: unknown operand /etc/init.d/network: sh: 0: unknown operand /etc/rc.d/S55hyd: hyd *** not in cap/re mode, skip handle /etc/init.d/network: sh: out of range /etc/init.d/network: /sbin/wifi: eval: line 1: initted: not found /etc/init.d/network: sh: auto: out of range /etc/init.d/network: sh: 96: unknown operand /etc/init.d/network: sh: 32: unknown operand /etc/init.d/network: sh: 64: unknown operand /etc/init.d/network: sh: 32: unknown operand /etc/rc.d/S60iweventd: iwevent-call start ok [ 49.487695] ipaccount: ifname [wl0] event[13] [ 49.488293] 8021q: adding VLAN 0 to HW filter on device wl0 [ 49.491306] ipaccount: ifname [wl0] event[1] [ 49.498261] ipaccount: ifname [wl0] event[20] [ 49.501303] ipaccount: ifname [wl0] event[26] [ 49.505516] ipaccount: ifname [wl0] event[21] [ 49.509654] device wl0 entered promiscuous mode [ 49.514225] br-lan: port 4(wl0) entered forwarding state [ 49.518289] br-lan: port 4(wl0) entered forwarding state [ 49.524067] ipaccount: ifname [wl0] event[27] [ 49.529206] ipaccount: ifname [br-lan] event[4] [ 49.534558] wlan: [2512:I:ANY] wlan_cfg80211_do_acs: 3474: vap-0(wl0):ACS Params [ 49.537700] wlan: [2512:I:ANY] wlan_cfg80211_do_acs: 3477: ht_enabled:1|ht40_enabled:0|vht_enabled:1|hw_mode:30|chwidth:20| [ 49.545432] wlan: [2512:I:ANY] ieee80211_autoselect_infra_bss_channel: 3995: ACS started: vap:0x85b20000 /etc/init.d/network: OK /etc/init.d/network: sh: out of range /etc/init.d/network: uci: Entry not found qcawificfg80211: enable radio wifi1 [ 49.835606] __mc_netlink_receive: Enable bridge snooping! /etc/init.d/network: cp: omitting directory '/cfg/default/internal' /etc/rc.d/S77trafficd: refresh ifname into ipaacount in [lan-dev 5g-wl 2.4g-wl wl-guest 5g-wl-backhaul] /etc/rc.d/S77trafficd: eth1 eth2 eth3 wl0 wl1 [ 50.064632] ipaccount: refresh dev ifname to [eth1 eth2 eth3 wl0 wl1 wl14 wl5] [ 50.071670] ipaccount: landev_init_all() add dev [eth1] is_wireless: 0. [ 50.079376] ipaccount: landev_init_all() add dev [eth2] is_wireless: 0. [ 50.085648] ipaccount: landev_init_all() add dev [eth3] is_wireless: 0. [ 50.092233] ipaccount: landev_init_all() add dev [wl0] is_wireless: 1. [ 50.098922] ipaccount: landev_init_all() get dev [wl1] not found. [ 50.105535] ipaccount: landev_init_all() get dev [wl14] not found. [ 50.111581] ipaccount: landev_init_all() get dev [wl5] not found. wl14 wl5 /etc/rc.d/S77trafficd: trafficd start ok [ 50.896105] wlan: [6627:I:ANY] wlan_scan_update_channel_list: 1090: num_chan: 13 [ 50.896211] wlan: [6627:I:ANY] number of channels: 2G = 13 5G = 0 [ 50.902582] wlan: [6627:I:ANY] wlan_cfg80211_set_country: 6058: wlan_cfg80211_set_country: Country: CH ret: 0 /etc/init.d/network: Enable ol_stats by default for Lithium platforms xqwhc_repacd: **ppid=1, cmd=</sbin/procd> /etc/rc.d/S97repacd: cat: can't open '/proc/0/cmdline': No such file or directoryxqwhc_repacd: *parent ppid 0, cmd=<> xqwhc_repacd: *** in non-mesh mode, skip repacd handle [ 51.297693] wlan: [6730:I:ANY] wlan_cfg80211_set_hwaddr: 6131: wlan_cfg80211_set_hwaddr :9c:9d:7e:4b:40:62 ret: 0 [ 51.362070] wlan: [6738:I:ANY] ol_ath_set_config_param: 1577: set TXBF_SND_PERIOD: value 100 wmi_status 0 xqwhc_repacd: **ppid=1, cmd=</sbin/procd> xqwhc_repacd: *parent ppid 0, cmd=<> /etc/init.d/repacd: cat: can't open '/proc/0/cmdline': No such file or directory xqwhc_repacd: *** in non-mesh mode, skip repacd handle [ 51.513676] br-lan: port 4(wl0) entered forwarding state [ 51.567893] wlan: [0:I:ANY] ol_ath_set_config_param: 2328: Disconnect_timeout value: 10 [ 51.631363] wlan: [0:I:ANY] ol_ath_set_config_param: 2334: Reconfiguration_timeout value:60 /etc/init.d/network: cat: can't open '/lib/wifi/wifi_nss_hk_olnum': No such file or directory /etc/init.d/network: sh: 64: unknown operand /etc/init.d/network: cat: can't open '/sys/class/net/wl1/address': No such file or directory number of vifs: cfg043579 [ 51.815223] ipaccount: ifname [wifi1] event[13] [ 51.815519] ipaccount: ifname [wifi1] event[1] /etc/init.d/network: cfg80211: ifname: wl1 mode: __ap cfgphy: phy3 [ 51.840552] wlan: [6913:I:ANY] wlan_cfg80211_add_virtual_intf: 325: proprietary mode 6 for interface: wl1 : clone params: 0x00000001 [ 51.840628] wlan: [6913:I:ANY] osifp_create_wlan_vap: 10411: VDEV Create 9c:9d:7e:4b:40:62 [ 51.852407] wlan: [6913:E:CMN_MLME] mlme_vdev_ext_obj_create: 1389: VDEV MLME obj is creation [ 51.859806] wlan: [6913:I:ANY] wlan_vap_create: 1594: enter. devhandle=0x86fc0500, opmode=IEEE80211_M_HOSTAP, flags=0x1 [ 51.859806] [ 51.869378] wlan: [6913:I:ANY] ol_ath_vap_set_param: 1121: Setting SGI value: 1 [ 51.880961] wlan: [6913:I:ANY] ol_ath_vap_set_param: 2149: VDEV params:HE su_bfee:1|su_bfer:1|mu_bfee:0|mu_bfer:1|dl_muofdma:1|ul_muofdma:1|ul_mumimo:0 [ 51.887811] wlan: [6913:I:ANY] ol_ath_vap_set_param: 2159: he_bf_cap=0x3b [ 51.901634] wlan: [6913:I:ANY] ol_ath_vap_set_param: 2174: VDEV params:AC/VHT sounding mode:HE|SU/MU sounding mode:SU|Trig/Non-Trig sounding mode:Non-Trigged [ 51.908356] wlan: [6913:I:ANY] MBO Initialized [ 51.922419] wlan: [6913:I:ANY] OCE Initialized [ 51.926665] wlan: [6913:I:ANY] osif_nss_ol_vap_create: 1268: NSS wifi offload VAP create IF 34 nss_id -1 [ 51.931066] wlan: [6913:I:ANY] NSS radio_if 31 [ 51.940836] wlan: [0:I:ANY] osif_nss_vdev_cfg_callback: 1020: VDEV configuration success: 0 [ 51.945084] wlan: [6913:I:ANY] osif_nss_ol_vap_create: 1376: vap create 85ba5500 : if_num 34 [ 51.953374] wlan: [6913:I:ANY] wlan_vap_create: 1627: exit [ 51.962171] wlan: [6913:I:ANY] osif_create_vap_complete: 10609: TX Checksum:1|SG:1|TSO:1|LRO:0 [ 51.967442] wlan: [6913:I:ANY] WLAN-NSS: VAP NSS ops initialized [ 51.976177] ipaccount: ifname [wl1] event[16] [ 51.984530] ipaccount: ifname [wl1] event[5] [ 51.986476] ipaccount: landev_init set ifname [wl1] [ 51.991051] wlan: [6913:I:ANY] VAP device wl1 created osifp: (85ba5500) os_if: (85bf8000) /etc/init.d/network: sh: 0: unknown operand /etc/init.d/network: sh: out of range /etc/init.d/network: sh: 1: unknown operand [ 53.118619] wlan: [7046:I:ANY] ieee80211_ucfg_setparam: 1453: Setting Max Stations:64 [ 53.135820] wlan: [7049:I:ANY] ol_ath_vap_set_param: 2149: VDEV params:HE su_bfee:1|su_bfer:1|mu_bfee:0|mu_bfer:0|dl_muofdma:1|ul_muofdma:1|ul_mumimo:0 [ 53.135869] wlan: [7049:I:ANY] ol_ath_vap_set_param: 2159: he_bf_cap=0x33 [ 53.153846] wlan: [7051:I:ANY] wlan_set_param: 2899: HE UL MU MIMO already set with this value =0 /etc/init.d/network: sh: 0: unknown operand /etc/init.d/network: sh: 0: unknown operand /etc/init.d/network: sh: 0: unknown operand /etc/init.d/network: sh: out of range /etc/init.d/network: sh: auto: out of range /etc/init.d/network: sh: 96: unknown operand /etc/init.d/network: sh: 32: unknown operand /etc/init.d/network: sh: 64: unknown operand /etc/init.d/network: sh: 32: unknown operand [ 53.452106] ipaccount: ifname [wl1] event[13] [ 53.452394] 8021q: adding VLAN 0 to HW filter on device wl1 [ 53.455621] ipaccount: ifname [wl1] event[1] [ 53.461738] ipaccount: ifname [wl1] event[20] [ 53.465730] ipaccount: ifname [wl1] event[26] [ 53.469813] ipaccount: ifname [wl1] event[21] [ 53.473984] device wl1 entered promiscuous mode [ 53.478454] br-lan: port 5(wl1) entered forwarding state [ 53.482639] br-lan: port 5(wl1) entered forwarding state [ 53.488304] ipaccount: ifname [wl1] event[27] [ 53.494379] wlan: [2512:I:ANY] wlan_cfg80211_do_acs: 3474: vap-1(wl1):ACS Params [ 53.497724] wlan: [2512:I:ANY] wlan_cfg80211_do_acs: 3477: ht_enabled:1|ht40_enabled:0|vht_enabled:1|hw_mode:29|chwidth:20| [ 53.505290] wlan: [2512:I:ANY] ieee80211_autoselect_infra_bss_channel: 3995: ACS started: vap:0x85bf8000 /etc/init.d/network: OK /etc/init.d/network: sh: out of range /etc/init.d/network: /sbin/wifi: eval: line 1: iface_mgr_setup: not found ****** No Coldboot/QDSS Support for low mem ****** /etc/init.d/network: sh: 0: unknown operand /etc/init.d/network: device: wifi0 vifs: cfg023579 /etc/init.d/network: device: wifi1 vifs: cfg043579 [ 55.404067] wlan: [1793:I:ANY] vap-0(wl0): ACS result PCH 44, SCH 36, hw_mode 2 chwidth 80, vht_seg0 42, vht_seg1 0 [ 55.404128] wlan: [1793:I:ANY] ieee80211_acs_scan_evhandler: 3732: lock held duration: 0(ms) [ 55.468454] wlan: [2512:I:ANY] DES SSID SET=Xiaomi_4D76_5G [ 55.468486] wlan: [2512:I:ANY] wlan_cfg80211_set_phymode: 1211: desired hw mode: 30 [ 55.473665] br-lan: port 5(wl1) entered forwarding state [ 55.481248] ipaccount: ifname [wl0] event[4] [ 55.563809] wlan: [0:I:CMN_MLME] vdev[0] ieee chan:44 [ 55.564156] wlan: [0:I:ANY] vdev[0]: Mgt Rate:6000(kbps) [ 55.567881] wlan: [0:I:ANY] vdev[0]: Mgt Rate:6000(kbps) [ 56.860221] ECM exit [ 57.014012] ECM exit complete [ 57.819478] wlan: [1793:I:ANY] vap-1(wl1): ACS result PCH 6, SCH 10, hw_mode 1 chwidth 40, vht_seg0 8, vht_seg1 0 [ 57.819535] wlan: [1793:I:ANY] ieee80211_acs_scan_evhandler: 3732: lock held duration: 0(ms) [ 57.883361] wlan: [2512:I:ANY] DES SSID SET=Xiaomi_4D76 [ 57.883399] wlan: [2512:I:ANY] wlan_cfg80211_chan_to_phymode: 1235: wlan_cfg80211_chan_to_phymode: band:0 width: 2 channel_cfreq: 2437 center_freq1: 2447 chandef.center_freq2: 0 flags: 0 [ 57.889050] ipaccount: ifname [wl1] event[4] [ 57.955269] wlan: [0:I:CMN_MLME] vdev[1] ieee chan:6 [ 57.955597] wlan: [0:E:WMI] event handler already registered 0x2a001 [ 57.959357] wlan: [0:I:ANY] vdev[1]: Mgt Rate:1000(kbps) [ 57.965686] wlan: [0:I:ANY] vdev[1]: Mgt Rate:1000(kbps) /etc/rc.d/S98miqos: { /etc/rc.d/S98miqos: status=0 /etc/rc.d/S98miqos: data=ok /etc/rc.d/S98miqos: } /etc/rc.d/S98plugin_start_script.sh: /etc/rc.common: line 154: renice: not found /etc/rc.d/S98powerctl: /etc/rc.common: line 200: can't create /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor: nonexistent directory /etc/rc.d/S98powerctl: /etc/rc.common: line 200: can't create /sys/devices/system/cpu/cpufreq/ondemand/sampling_rate: nonexistent directory /etc/rc.d/S98powerctl: /etc/rc.common: line 200: can't create /sys/devices/system/cpu/cpufreq/ondemand/sampling_down_factor: nonexistent directory /etc/rc.d/S98powerctl: /etc/rc.common: line 200: can't create /sys/devices/system/cpu/cpufreq/ondemand/up_threshold: nonexistent directory /etc/rc.d/S98xqwhc: xqwhc *** not in cap/re mode, skip handle /etc/rc.d/S98xqwhc: { "name": "xqwhc", "script": "\/etc\/rc.d\/S98xqwhc", "instances": { }, "triggers": [ ], "data": { } } /etc/rc.d/S99boot_check: Unlocking cfg_bak ... /etc/rc.d/S99boot_check: Erasing cfg_bak ... /etc/rc.d/S99boot_check: Unlocking cfg_bak ... /etc/rc.d/S99boot_check: /etc/rc.d/S99boot_check: Writing from /tmp/cfg_bak.tgz to cfg_bak ... [ ]\x08\x08\x08[e]\x08\x08\x08[w]\x08\x08\x08\x08 /etc/rc.d/S99boot_check: : INFO: rcS timing 63.216486747s seconds. [ 60.519638] S99boot_check (7656): drop_caches: 3 Tue Sep 7 18:17:56 CEST 2021 boot_check[7656]: Booting up finished.


COPY HERE THE BOOTLOG ONCE OPENWRT IS INSTALLED AND RUNNING


Secure boot is not enabled, TX Locked, to unlock execute on shell(get ssh)

nvram set uart_en=1
nvram set boot_wait=on
nvram commit

Now, autoboot stop is available and TX is available!

Write a5 5a 00 00 into crash partition to factory mode

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/02 20:10
  • by danitool