This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

WL1837MOD: Android 7.1.1 WL1837:I can't connect with hidden SSID

Part Number: WL1837

Tool/software: Android 7.1.1

EVM: wandboard

Hello Ti Support Team,

My WL1837 working fine except the connection problem to hidden SSIDs.My wpa_supplicant version is :"v2.6-devel-7.1.1".So I think the bug is not in wpa_supplicant.And my firmware veriso :"8.9.0.0.76",my drive version:R8.6_SP1.

The error log like this:

<3>nl80211_trigger_scan -1
<3>nl80211_trigger_scan -6 n_ssids: 0 wiphy->max_scan_ssids: 1
<3>nl80211_trigger_scan -6 NL80211_ATTR_SCAN_SSIDS: 45 tmp: 0
<3>nl80211_trigger_scan -7 n_ssids: 2 wiphy->max_scan_ssids: 1
<3>nl80211_trigger_scan -7 n_ssids: 2 err:-22

And i check the source code:

if (info->attrs[NL80211_ATTR_SCAN_SSIDS])
nla_for_each_nested(attr, info->attrs[NL80211_ATTR_SCAN_SSIDS], tmp)
n_ssids++;

if (n_ssids > wiphy->max_scan_ssids) {
err = -EINVAL;
goto unlock;
}

So,if someone can tell me why my  "wiphy->max_scan_ssids" is  allways benn "1".Is there somethings wrong?

Best Regards,

yuyun.hu

 

  • Hi,

    Do you have "scan_ssid=1" in your network block in wpa_supplicant.conf?

    See:
    w1.fi/.../wpa_supplicant.conf

    BR,
    Eyal
  • Thanks for you reply,I have "scan_ssid=1" in my wpa_supplicant.conf.like :

    network={
    ssid="1"
    scan_ssid=1
    key_mgmt=NONE
    disabled=1
    id_str="%7B%22creatorUid%22%3A%221000%22%2C%22configKey%22%3A%22%5C%221%5C%22NONE%22%7D"
    }

  • Hi,

    Why is it disabled?

    disabled=1

    Also what is the id_str? why is it there?

    BR,
    Eyal
  • Hi,
    Thanks for replay,

    I don't know why.Is that important?

    When I add a network by Android settings.My wifi scan return error:
    (180308_20:32:37.632)03-08 20:32:21.413 1697 1697 D wpa_supplicant: nl80211: Scan trigger failed: ret=-22 (Invalid argument)

    So I modify my nl80211.c like this:

    if (info->attrs[NL80211_ATTR_SCAN_SSIDS])
    nla_for_each_nested(attr, info->attrs[NL80211_ATTR_SCAN_SSIDS], tmp)
    n_ssids++;

    n_ssids=1;

    if (n_ssids > wiphy->max_scan_ssids) {
    err = -EINVAL;
    goto unlock;
    }

    And my problem seems like resolved.So,I wand to know what's the meaning of "n_ssids" and "max_scan_ssid".

    And my logcat:
    (180308_20:31:16.617)U-Boot 2015.04 (Feb 28 2018 - 13:03:37)
    (180308_20:31:16.695)DRAM: PMIC: PFUZE100 ID=0x10
    (180308_20:31:16.695)MMC: FSL_SDHC: 0, FSL_SDHC: 1, FSL_SDHC: 2, FSL_SDHC: 3
    (180308_20:31:16.835)*** Warning - bad CRC, using default environment
    (180308_20:31:16.835)No panel detected: default to Hannstar-XGA
    (180308_20:31:16.835)Bus: 0 ds927-928 init!
    (180308_20:31:16.835)ds927_write_reg: reg: 0x 3 = 0xDA
    (180308_20:31:16.835)ds927_write_reg: reg: 0x 6 = 0xB0
    (180308_20:31:16.835)ds927_write_reg: reg: 0x D = 0x 5
    (180308_20:31:16.835)ds927_write_reg: reg: 0x E = 0x 3
    (180308_20:31:16.835)ds928_write_reg: ds928 write reg 0x 1 err
    (180308_20:31:16.835)ds928_write_reg: ds928 write reg 0x56 err
    (180308_20:31:16.835)ds928_write_reg: ds928 write reg 0x1d err
    (180308_20:31:16.835)ds928_write_reg: ds928 write reg 0x1e err
    (180308_20:31:16.835)[FGE_CFG] 20180228-13:03:01
    (180308_20:31:16.835)[FGE_CFG] MODULE:MB202
    (180308_20:31:16.835)[FGE_CFG] VERSION START: OS_VERSION:1.0.5.8-R-20180228.1303 OS_INTER:MB202.000.00.01.01.180228.GIT_e63a874. VERSION END
    (180308_20:31:16.835)Display: Hannstar-XGA (1024x592)
    (180308_20:31:16.913)In: serial
    (180308_20:31:16.913)Out: serial
    (180308_20:31:16.913)Err: serial
    (180308_20:31:16.913)flash target is MMC:2
    (180308_20:31:16.913)MMC: no card present
    (180308_20:31:16.913)** Bad device mmc 3 **
    (180308_20:31:16.913)sd_card:all 0 ok
    (180308_20:31:16.913)Fastboot: Normal
    (180308_20:31:16.913)MMC: no card present
    (180308_20:31:16.913)** Bad device mmc 3 **
    (180308_20:31:16.913)MB202_SD_UPDATE--file_not_exists
    (180308_20:31:16.913)Hit any key to stop autoboot: 0
    (180308_20:31:16.913)boota mmc2
    (180308_20:31:17.116)kernel @ 14008000 (5316256)
    (180308_20:31:17.116)ramdisk @ 15000000 (1634620)
    (180308_20:31:17.116)fdt @ 14f00000 (42895)
    (180308_20:31:17.116)## Booting Android Image at 0x12000000 ...
    (180308_20:31:17.116)Kernel load addr 0x14008000 size 5192 KiB
    (180308_20:31:17.116)Kernel command line: console=ttymxc0,460800 init=/init video=mxcfb0:dev=null_lcd,NULL-656P,if=NULL,bpp=32 video=mxcfb1:off video=mxcfb2:off video=mxcfb3:off vmalloc=256M androidboot.console=ttymxc0 consoleblank=0 androidboot.hardware=freescale cma=448M androidboot.selinux=permissive buildvariant=eng
    (180308_20:31:17.116)## Flattened Device Tree blob at 14f00000
    (180308_20:31:17.116) Booting using the fdt blob at 0x14f00000
    (180308_20:31:17.194) Loading Kernel Image ... OK
    (180308_20:31:17.194) Using Device Tree in place at 14f00000, end 14f0d78e
    (180308_20:31:17.272)In uboot /arch/arm/lib/bootm.c Going to -Starting kernel -------594
    (180308_20:31:17.272)wanpeng++++reset+++++
    (180308_20:31:17.849)wanpeng+++++++ddddd
    (180308_20:31:19.300)[ 0.000000] Booting Linux on physical CPU 0x0
    (180308_20:31:19.300)[ 0.000000] Initializing cgroup subsys cpu
    (180308_20:31:19.300)[ 0.000000] Initializing cgroup subsys cpuacct
    (180308_20:31:19.300)[ 0.000000] Linux version 4.1.15 (yanfli@swcp06) (gcc version 4.9 20150123 (prerelease) (GCC) ) #13 SMP PREEMPT Sun Mar 4 09:02:36 CST 2018
    (180308_20:31:19.300)[ 0.000000] CPU: ARMv7 Processor [412fc09a] revision 10 (ARMv7), cr=10c53c7d
    (180308_20:31:19.300)[ 0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
    (180308_20:31:19.300)[ 0.000000] Machine model: Freescale i.MX6 Quad SABRE Smart Device Board
    (180308_20:31:19.300)[ 0.000000] cma: Reserved 448 MiB at 0x22000000
    (180308_20:31:19.300)[ 0.000000] Memory policy: Data cache writealloc
    (180308_20:31:19.378)[ 0.000000] PERCPU: Embedded 12 pages/cpu @eeec0000 s17600 r8192 d23360 u49152
    (180308_20:31:19.378)[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 522784
    (180308_20:31:19.378)[ 0.000000] Kernel command line: console=ttymxc0,460800 init=/init video=mxcfb0:dev=null_lcd,NULL-656P,if=NULL,bpp=32 video=mxcfb1:off video=mxcfb2:off video=mxcfb3:off vmalloc=256M androidboot.console=ttymxc0 consoleblank=0 androidboot.hardware=freescale cma=448M androidboot.selinux=permissive buildvariant=eng androidboot.serialno=0a1281d4ea9d04f5 androidboot.bootreason=unknown
    (180308_20:31:19.378)[ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
    (180308_20:31:19.378)[ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    (180308_20:31:19.378)[ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    (180308_20:31:19.378)[ 0.000000] Memory: 1603896K/2097152K available (7168K kernel code, 511K rwdata, 2152K rodata, 1024K init, 573K bss, 34504K reserved, 458752K cma-reserved, 1327104K highmem)
    (180308_20:31:19.378)[ 0.000000] Virtual kernel memory layout:
    (180308_20:31:19.378)[ 0.000000] vector : 0xffff0000 - 0xffff1000 ( 4 kB)
    (180308_20:31:19.378)[ 0.000000] fixmap : 0xffc00000 - 0xfff00000 (3072 kB)
    (180308_20:31:19.378)[ 0.000000] vmalloc : 0xef800000 - 0xff000000 ( 248 MB)
    (180308_20:31:19.378)[ 0.000000] lowmem : 0xc0000000 - 0xef000000 ( 752 MB)
    (180308_20:31:19.378)[ 0.000000] pkmap : 0xbfe00000 - 0xc0000000 ( 2 MB)
    (180308_20:31:19.378)[ 0.000000] modules : 0xbf000000 - 0xbfe00000 ( 14 MB)
    (180308_20:31:19.378)[ 0.000000] .text : 0xc0008000 - 0xc0800000 (8160 kB)
    (180308_20:31:19.378)[ 0.000000] .init : 0xc0b00000 - 0xc0c00000 (1024 kB)
    (180308_20:31:19.378)[ 0.000000] .data : 0xc0c00000 - 0xc0c7ff10 ( 512 kB)
    (180308_20:31:19.378)[ 0.000000] .bss : 0xc0c7ff10 - 0xc0d0f4bc ( 574 kB)
    (180308_20:31:19.378)[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    (180308_20:31:19.378)[ 0.000000] Preemptible hierarchical RCU implementation.
    (180308_20:31:19.378)[ 0.000000] Additional per-CPU info printed with stalls.
    (180308_20:31:19.378)[ 0.000000] NR_IRQS:16 nr_irqs:16 16
    (180308_20:31:19.378)[ 0.000000] L2C-310 erratum 769419 enabled
    (180308_20:31:19.378)[ 0.000000] L2C-310 enabling early BRESP for Cortex-A9
    (180308_20:31:19.378)[ 0.000000] L2C-310 full line of zeros enabled for Cortex-A9
    (180308_20:31:19.378)[ 0.000000] L2C-310 ID prefetch enabled, offset 16 lines
    (180308_20:31:19.378)[ 0.000000] L2C-310 dynamic clock gating enabled, standby mode enabled
    (180308_20:31:19.378)[ 0.000000] L2C-310 cache controller enabled, 16 ways, 1024 kB
    (180308_20:31:19.378)[ 0.000000] L2C-310: CACHE_ID 0x410000c7, AUX_CTRL 0x76070001
    (180308_20:31:19.378)[ 0.000000] mxc_clocksource_init 3000000
    (180308_20:31:19.378)[ 0.000000] Switching to timer-based delay loop, resolution 333ns
    (180308_20:31:19.378)[ 0.000008] sched_clock: 32 bits at 3000kHz, resolution 333ns, wraps every 715827882841ns
    (180308_20:31:19.378)[ 0.000026] clocksource mxc_timer1: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 637086815595 ns
    (180308_20:31:19.378)[ 0.000963] Console: colour dummy device 80x30
    (180308_20:31:19.378)[ 0.000985] Calibrating delay loop (skipped), value calculated using timer frequency.. 6.00 BogoMIPS (lpj=30000)
    (180308_20:31:19.378)[ 0.001001] pid_max: default: 32768 minimum: 301
    (180308_20:31:19.378)[ 0.001084] Security Framework initialized
    (180308_20:31:19.378)[ 0.001111] SELinux: Initializing.
    (180308_20:31:19.378)[ 0.001160] AppArmor: AppArmor disabled by boot time parameter
    (180308_20:31:19.378)[ 0.001198] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
    (180308_20:31:19.378)[ 0.001211] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
    (180308_20:31:19.378)[ 0.001946] Initializing cgroup subsys freezer
    (180308_20:31:19.378)[ 0.001969] Initializing cgroup subsys debug
    (180308_20:31:19.378)[ 0.001998] CPU: Testing write buffer coherency: ok
    (180308_20:31:19.378)[ 0.002337] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000
    (180308_20:31:19.378)[ 0.002451] Setting up static identity map for 0x10100000 - 0x10100058
    (180308_20:31:19.456)[ 0.060371] CPU1: thread -1, cpu 1, socket 0, mpidr 80000001
    (180308_20:31:19.456)[ 0.080331] CPU2: thread -1, cpu 2, socket 0, mpidr 80000002
    (180308_20:31:19.456)[ 0.100342] CPU3: thread -1, cpu 3, socket 0, mpidr 80000003
    (180308_20:31:19.456)[ 0.100419] Brought up 4 CPUs
    (180308_20:31:19.456)[ 0.100446] SMP: Total of 4 processors activated (24.00 BogoMIPS).
    (180308_20:31:19.456)[ 0.100455] CPU: All CPU(s) started in SVC mode.
    (180308_20:31:19.456)[ 0.101139] devtmpfs: initialized
    (180308_20:31:19.456)[ 0.112313] VFP support v0.3: implementor 41 architecture 3 part 30 variant 9 rev 4
    (180308_20:31:19.456)[ 0.112789] clocksource jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
    (180308_20:31:19.456)[ 0.137952] pinctrl core: initialized pinctrl subsystem
    (180308_20:31:19.456)[ 0.139191] NET: Registered protocol family 16
    (180308_20:31:19.456)[ 0.148853] DMA: preallocated 256 KiB pool for atomic coherent allocations
    (180308_20:31:19.456)[ 0.169737] cpuidle: using governor ladder
    (180308_20:31:19.456)[ 0.199732] cpuidle: using governor menu
    (180308_20:31:19.456)[ 0.200074] CPU identified as i.MX6Q, silicon rev 1.5
    (180308_20:31:19.456)[ 0.227401] hw-breakpoint: found 5 (+1 reserved) breakpoint and 1 watchpoint registers.
    (180308_20:31:19.456)[ 0.227415] hw-breakpoint: maximum watchpoint size is 4 bytes.
    (180308_20:31:19.456)[ 0.228438] imx6q-pinctrl 20e0000.iomuxc: initialized IMX pinctrl driver
    (180308_20:31:19.456)[ 0.272768] mxs-dma 110000.dma-apbh: initialized
    (180308_20:31:19.456)[ 0.276254] usbcore: registered new interface driver usbfs
    (180308_20:31:19.456)[ 0.276339] usbcore: registered new interface driver hub
    (180308_20:31:19.456)[ 0.276461] usbcore: registered new device driver usb
    (180308_20:31:19.456)[ 0.276648] 2000000.aips-bus:usbphy_nop1 supply vcc not found, using dummy regulator
    (180308_20:31:19.456)[ 0.276781] 2000000.aips-bus:usbphy_nop2 supply vcc not found, using dummy regulator
    (180308_20:31:19.456)[ 0.277462] imx6q-pinctrl 20e0000.iomuxc: pin MX6Q_PAD_CSI0_DAT8 already requested by 20e0000.iomuxc; cannot claim for 21a0000.i2c
    (180308_20:31:19.456)[ 0.277479] imx6q-pinctrl 20e0000.iomuxc: pin-158 (21a0000.i2c) status -22
    (180308_20:31:19.456)[ 0.277494] imx6q-pinctrl 20e0000.iomuxc: could not request pin 158 (MX6Q_PAD_CSI0_DAT8) from group i2c1grp on device 20e0000.iomuxc
    (180308_20:31:19.456)[ 0.277508] imx-i2c 21a0000.i2c: Error applying setting, reverse things back
    (180308_20:31:19.456)[ 0.277835] i2c i2c-0: IMX I2C adapter registered
    (180308_20:31:19.456)[ 0.277855] i2c i2c-0: can't use DMA
    (180308_20:31:19.456)[ 0.278548] i2c i2c-1: IMX I2C adapter registered
    (180308_20:31:19.456)[ 0.278564] i2c i2c-1: can't use DMA
    (180308_20:31:19.456)[ 0.279030] i2c i2c-2: IMX I2C adapter registered
    (180308_20:31:19.456)[ 0.279047] i2c i2c-2: can't use DMA
    (180308_20:31:19.456)[ 0.299784] imx-ipuv3 2400000.ipu: IPU DMFC NORMAL mode: 1(0~1), 5B(4,5), 5F(6,7)
    (180308_20:31:19.456)[ 0.319774] imx-ipuv3 2800000.ipu: IPU DMFC NORMAL mode: 1(0~1), 5B(4,5), 5F(6,7)
    (180308_20:31:19.456)[ 0.321030] Advanced Linux Sound Architecture Driver Initialized.
    (180308_20:31:19.456)[ 0.323089] Switched to clocksource mxc_timer1
    (180308_20:31:19.456)[ 0.364944] NET: Registered protocol family 2
    (180308_20:31:19.456)[ 0.365897] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
    (180308_20:31:19.456)[ 0.365998] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
    (180308_20:31:19.456)[ 0.366161] TCP: Hash tables configured (established 8192 bind 8192)
    (180308_20:31:19.456)[ 0.366354] UDP hash table entries: 512 (order: 2, 16384 bytes)
    (180308_20:31:19.456)[ 0.366403] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
    (180308_20:31:19.456)[ 0.366660] NET: Registered protocol family 1
    (180308_20:31:19.456)[ 0.367013] Trying to unpack rootfs image as initramfs...
    (180308_20:31:19.456)[ 0.477740] Freeing initrd memory: 1600K (c5000000 - c5190000)
    (180308_20:31:19.456)[ 0.478418] CPU PMU: Failed to parse /soc/pmu/interrupt-affinity[0]
    (180308_20:31:19.456)[ 0.478498] hw perfevents: enabled with armv7_cortex_a9 PMU driver, 7 counters available
    (180308_20:31:19.456)[ 0.480322] Bus freq driver module loaded
    (180308_20:31:19.456)[ 0.481597] futex hash table entries: 1024 (order: 4, 65536 bytes)
    (180308_20:31:19.456)[ 0.481726] audit: initializing netlink subsys (disabled)
    (180308_20:31:19.456)[ 0.481820] audit: type=2000 audit(0.470:1): initialized
    (180308_20:31:19.534)[ 0.490920] fuse init (API version 7.23)
    (180308_20:31:19.534)[ 0.494139] bounce: pool size: 64 pages
    (180308_20:31:19.534)[ 0.494162] io scheduler noop registered
    (180308_20:31:19.534)[ 0.494179] io scheduler deadline registered
    (180308_20:31:19.534)[ 0.494357] io scheduler cfq registered (default)
    (180308_20:31:19.534)[ 0.494917] imx-weim 21b8000.weim: Driver registered.
    (180308_20:31:19.534)[ 0.496116] pwm-backlight supply power not found, using dummy regulator
    (180308_20:31:19.534)[ 0.499264] imx6q-pinctrl 20e0000.iomuxc: pin MX6Q_PAD_DISP0_DAT8 already requested by 2080000.pwm; cannot claim for lcd@0
    (180308_20:31:19.534)[ 0.499283] imx6q-pinctrl 20e0000.iomuxc: pin-100 (lcd@0) status -22
    (180308_20:31:19.534)[ 0.499303] imx6q-pinctrl 20e0000.iomuxc: could not request pin 100 (MX6Q_PAD_DISP0_DAT8) from group ipu1grp on device 20e0000.iomuxc
    (180308_20:31:19.534)[ 0.499317] mxc_lcdif lcd@0: Error applying setting, reverse things back
    (180308_20:31:19.534)[ 0.499824] imx6q-pinctrl 20e0000.iomuxc: pin MX6Q_PAD_DISP0_DAT8 already requested by 2080000.pwm; cannot claim for lcd@0
    (180308_20:31:19.534)[ 0.499841] imx6q-pinctrl 20e0000.iomuxc: pin-100 (lcd@0) status -22
    (180308_20:31:19.534)[ 0.499856] imx6q-pinctrl 20e0000.iomuxc: could not request pin 100 (MX6Q_PAD_DISP0_DAT8) from group ipu1grp on device 20e0000.iomuxc
    (180308_20:31:19.534)[ 0.499868] mxc_lcdif lcd@0: Error applying setting, reverse things back
    (180308_20:31:19.534)[ 0.499892] mxc_lcdif lcd@0: can't get/select pinctrl
    (180308_20:31:19.534)[ 0.499914] mxc_lcdif: probe of lcd@0 failed with error -22
    (180308_20:31:19.534)[ 0.500251] mxc_sdc_fb fb@0: registered mxc display driver null_lcd
    (180308_20:31:19.534)[ 0.500930] mxc_sdc_fb fb@1: Can't get fb option for mxcfb1!
    (180308_20:31:19.534)[ 0.501010] mxc_sdc_fb fb@2: Can't get fb option for mxcfb2!
    (180308_20:31:19.534)[ 0.501086] mxc_sdc_fb fb@3: Can't get fb option for mxcfb3!
    (180308_20:31:19.534)[ 0.502057] imx-sdma 20ec000.sdma: no iram assigned, using external mem
    (180308_20:31:19.534)[ 0.502397] imx-sdma 20ec000.sdma: no event needs to be remapped
    (180308_20:31:19.534)[ 0.502584] imx-sdma 20ec000.sdma: loaded firmware 3.3
    (180308_20:31:19.534)[ 0.505691] imx-sdma 20ec000.sdma: initialized
    (180308_20:31:19.534)[ 0.507478] pfuze100-regulator 2-0008: Full layer: 2, Metal layer: 1
    (180308_20:31:19.534)[ 0.508094] pfuze100-regulator 2-0008: FAB: 0, FIN: 0
    (180308_20:31:19.534)[ 0.508109] pfuze100-regulator 2-0008: pfuze100 found.
    (180308_20:31:19.534)[ 0.523523] 2020000.serial: ttymxc0 at MMIO 0x2020000 (irq = 24, base_baud = 5000000) is a IMX
    (180308_20:31:19.534)[ 0.740096] console [ttymxc0] enabled
    (180308_20:31:19.534)[ 0.741840] 21e8000.serial: ttymxc1 at MMIO 0x21e8000 (irq = 298, base_baud = 5000000) is a IMX
    (180308_20:31:19.534)[ 0.744601] 21ec000.serial: ttymxc2 at MMIO 0x21ec000 (irq = 299, base_baud = 5000000) is a IMX
    (180308_20:31:19.534)[ 0.747350] 21f0000.serial: ttymxc3 at MMIO 0x21f0000 (irq = 300, base_baud = 5000000) is a IMX
    (180308_20:31:19.534)[ 0.750158] 21f4000.serial: ttymxc4 at MMIO 0x21f4000 (irq = 301, base_baud = 5000000) is a IMX
    (180308_20:31:19.534)[ 0.763770] brd: module loaded
    (180308_20:31:19.612)[ 0.771447] loop: module loaded
    (180308_20:31:19.612)[ 0.772889] zram: Created 1 device(s)
    (180308_20:31:19.612)[ 0.774274] (stk) :sysfs entries created
    (180308_20:31:19.612)[ 0.775416] (hci_tty): inside hci_tty_init
    (180308_20:31:19.612)[ 0.776657] (hci_tty): allocated 250, 0
    (180308_20:31:19.612)[ 0.778402] log_trace_init
    (180308_20:31:19.612)[ 0.779133] tun: Universal TUN/TAP device driver, 1.6
    (180308_20:31:19.612)[ 0.780416] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
    (180308_20:31:19.612)[ 0.782180] PPP generic driver version 2.4.2
    (180308_20:31:19.612)[ 0.783596] PPP BSD Compression module registered
    (180308_20:31:19.612)[ 0.784805] PPP Deflate Compression module registered
    (180308_20:31:19.612)[ 0.786105] PPP MPPE Compression module registered
    (180308_20:31:19.612)[ 0.787337] NET: Registered protocol family 24
    (180308_20:31:19.612)[ 0.788584] usbcore: registered new interface driver cdc_ether
    (180308_20:31:19.612)[ 0.790122] usbcore: registered new interface driver cdc_eem
    (180308_20:31:19.612)[ 0.791616] usbcore: registered new interface driver cdc_subset
    (180308_20:31:19.612)[ 0.793234] usbcore: registered new interface driver zaurus
    (180308_20:31:19.612)[ 0.794763] usbcore: registered new interface driver cdc_ncm
    (180308_20:31:19.612)[ 0.796269] usbcore: registered new interface driver qmi_wwan
    (180308_20:31:19.612)[ 0.797738] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    (180308_20:31:19.612)[ 0.799416] ehci-mxc: Freescale On-Chip EHCI Host driver
    (180308_20:31:19.612)[ 0.800974] usbcore: registered new interface driver cdc_acm
    (180308_20:31:19.612)[ 0.802410] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
    (180308_20:31:19.612)[ 0.804550] usbcore: registered new interface driver cdc_wdm
    (180308_20:31:19.612)[ 0.806199] usbcore: registered new interface driver usbserial
    (180308_20:31:19.612)[ 0.807724] usbcore: registered new interface driver usbserial_generic
    (180308_20:31:19.612)[ 0.809422] usbserial: USB Serial support registered for generic
    (180308_20:31:19.612)[ 0.810996] usbcore: registered new interface driver option
    (180308_20:31:19.612)[ 0.812449] usbserial: USB Serial support registered for GSM modem (1-port)
    (180308_20:31:19.612)[ 0.814300] usbcore: registered new interface driver usb_ehset_test
    (180308_20:31:19.612)[ 0.817218] 2184800.usbmisc supply vbus-wakeup not found, using dummy regulator
    (180308_20:31:19.612)[ 0.825346] usb_h1_vbus: supplied by SWBST
    (180308_20:31:19.612)[ 0.830259] ci_hdrc ci_hdrc.1: EHCI Host Controller
    (180308_20:31:19.612)[ 0.831594] ci_hdrc ci_hdrc.1: new USB bus registered, assigned bus number 1
    (180308_20:31:19.690)[ 0.853131] ci_hdrc ci_hdrc.1: USB 2.0 started, EHCI 1.00
    (180308_20:31:19.690)[ 0.855564] hub 1-0:1.0: USB hub found
    (180308_20:31:19.690)[ 0.856571] hub 1-0:1.0: 1 port detected
    (180308_20:31:19.690)[ 0.859242] mousedev: PS/2 mouse device common for all mice
    (180308_20:31:19.690)[ 0.860970] ==> [atmel] mxt_init
    (180308_20:31:19.690)[ 0.861798] ==> [atmel] SWI2C_Init
    (180308_20:31:19.690)[ 0.862675] ==> [atmel] ds92x_init
    (180308_20:31:19.690)[ 0.864771] i2c_read_ack no ack
    (180308_20:31:19.690)[ 0.865605] no ack! writing data = 0x58
    (180308_20:31:19.690)[ 0.866710] i2c_read_ack no ack
    (180308_20:31:19.690)[ 0.867538] no ack! writing data = 0x58
    (180308_20:31:19.690)[ 0.868641] i2c_read_ack no ack
    (180308_20:31:19.690)[ 0.869469] no ack! writing data = 0x58
    (180308_20:31:19.690)[ 0.870570] i2c_read_ack no ack
    (180308_20:31:19.690)[ 0.871397] no ack! writing data = 0x58
    (180308_20:31:19.690)[ 0.872500] i2c_read_ack no ack
    (180308_20:31:19.690)[ 0.873349] no ack! writing data = 0x58
    (180308_20:31:19.690)[ 0.874454] i2c_read_ack no ack
    (180308_20:31:19.690)[ 0.875280] no ack! writing data = 0x58
    (180308_20:31:19.690)[ 0.876381] i2c_read_ack no ack
    (180308_20:31:19.690)[ 0.877208] no ack! writing data = 0x58
    (180308_20:31:19.690)[ 0.878309] i2c_read_ack no ack
    (180308_20:31:19.690)[ 0.879135] no ack! writing data = 0x58
    (180308_20:31:19.690)[ 0.880236] i2c_read_ack no ack
    (180308_20:31:19.690)[ 0.881063] no ack! writing data = 0x58
    (180308_20:31:19.690)[ 0.882163] i2c_read_ack no ack
    (180308_20:31:19.690)[ 0.882989] no ack! writing data = 0x58
    (180308_20:31:19.690)[ 0.884109] i2c_read_ack no ack
    (180308_20:31:19.690)[ 0.884938] no ack! writing data = 0x58
    (180308_20:31:19.690)[ 0.886040] i2c_read_ack no ack
    (180308_20:31:19.690)[ 0.886866] no ack! writing data = 0x58
    (180308_20:31:19.690)[ 0.887965] i2c_read_ack no ack
    (180308_20:31:19.690)[ 0.888791] no ack! writing data = 0x58
    (180308_20:31:19.690)[ 0.889891] i2c_read_ack no ack
    (180308_20:31:19.690)[ 0.890717] no ack! writing data = 0x58
    (180308_20:31:19.690)[ 0.891818] i2c_read_ack no ack
    (180308_20:31:19.690)[ 0.892644] no ack! writing data = 0x58
    (180308_20:31:19.690)[ 0.893764] i2c_read_ack no ack
    (180308_20:31:19.690)[ 0.894593] no ack! writing data = 0x58
    (180308_20:31:19.690)[ 0.895695] i2c_read_ack no ack
    (180308_20:31:19.690)[ 0.896523] no ack! writing data = 0x58
    (180308_20:31:19.690)[ 0.897621] i2c_read_ack no ack
    (180308_20:31:19.690)[ 0.898447] no ack! writing data = 0x58
    (180308_20:31:19.690)[ 0.899549] i2c_read_ack no ack
    (180308_20:31:19.690)[ 0.900375] no ack! writing data = 0x58
    (180308_20:31:19.690)[ 0.901476] i2c_read_ack no ack
    (180308_20:31:19.690)[ 0.902302] no ack! writing data = 0x58
    (180308_20:31:19.690)[ 0.903418] i2c_read_ack no ack
    (180308_20:31:19.690)[ 0.904247] no ack! writing data = 0x58
    (180308_20:31:19.690)[ 0.905348] i2c_read_ack no ack
    (180308_20:31:19.690)[ 0.906174] no ack! writing data = 0x58
    (180308_20:31:19.690)[ 0.907203] ==> [atmel] reset_ts
    (180308_20:31:20.017)[ 1.233392] i2c_read_ack no ack
    (180308_20:31:20.017)[ 1.234225] no ack! writing data = 0x94
    (180308_20:31:20.017)[ 1.235329] i2c_read_ack no ack
    (180308_20:31:20.017)[ 1.236155] no ack! writing data = 0x94
    (180308_20:31:20.017)[ 1.237255] i2c_read_ack no ack
    (180308_20:31:20.017)[ 1.238081] no ack! writing data = 0x94
    (180308_20:31:20.017)[ 1.239181] i2c_read_ack no ack
    (180308_20:31:20.017)[ 1.240009] no ack! writing data = 0x94
    (180308_20:31:20.017)[ 1.241109] i2c_read_ack no ack
    (180308_20:31:20.017)[ 1.241934] no ack! writing data = 0x94
    (180308_20:31:20.017)[ 1.243034] i2c_read_ack no ack
    (180308_20:31:20.017)[ 1.243892] no ack! writing data = 0x94
    (180308_20:31:20.017)[ 1.244924] [atmel] mxt_probe_bootloader
    (180308_20:31:20.017)[ 1.245996] i2c_read_ack no ack
    (180308_20:31:20.017)[ 1.246822] no ack! writing data = 0x4c
    (180308_20:31:20.017)[ 1.247850] Trying alternate bootloader address
    (180308_20:31:20.017)[ 1.248996] [atmel] mxt_probe_bootloader
    (180308_20:31:20.017)[ 1.250065] i2c_read_ack no ack
    (180308_20:31:20.017)[ 1.250891] no ack! writing data = 0x4c
    (180308_20:31:20.017)[ 1.251920] #### debug at line 3468
    (180308_20:31:20.017)[ 1.252841] atmel_mxt_ts: probe of 1-000c failed with error -1
    (180308_20:31:20.095)[ 1.255954] snvs_rtc 20cc000.snvs:snvs-rtc-lp: rtc core: registered 20cc000.snvs:snvs-r as rtc0
    (180308_20:31:20.095)[ 1.258309] i2c /dev entries driver
    (180308_20:31:20.095)[ 1.263174] input: FreescaleAccelerometer as /devices/virtual/input/input0
    (180308_20:31:20.095)[ 1.265143] smi130 acc device driver probe successfully
    (180308_20:31:20.095)[ 1.268928] input: FreescaleGyroscope as /devices/virtual/input/input1
    (180308_20:31:20.095)[ 1.270792] smi130 gyro device driver probe successfully
    (180308_20:31:20.095)[ 1.273436] started kernel_watchdog_thread
    (180308_20:31:20.095)[ 1.274573] imx2-wdt 20bc000.wdog: timeout 5 sec (nowayout=0)
    (180308_20:31:20.095)[ 1.276430] device-mapper: uevent: version 1.0.3
    (180308_20:31:20.095)[ 1.277990] device-mapper: ioctl: 4.31.0-ioctl (2015-3-12) initialised: dm-devel@redhat.com
    (180308_20:31:20.095)[ 1.280494] sdhci: Secure Digital Host Controller Interface driver
    (180308_20:31:20.095)[ 1.282062] sdhci: Copyright(c) Pierre Ossman
    (180308_20:31:20.095)[ 1.283205] sdhci-pltfm: SDHCI platform and OF driver helper
    (180308_20:31:20.095)[ 1.285423] /soc/aips-bus@02100000/usdhc@02190000: voltage-ranges unspecified
    (180308_20:31:20.095)[ 1.287257] sdhci-esdhc-imx 2190000.usdhc: Got CD GPIO
    (180308_20:31:20.095)[ 1.289789] sdhci-esdhc-imx 2190000.usdhc: No vmmc regulator found
    (180308_20:31:20.095)[ 1.291359] sdhci-esdhc-imx 2190000.usdhc: No vqmmc regulator found
    (180308_20:31:20.173)[ 1.335337] mmc0: SDHCI controller on 2190000.usdhc [2190000.usdhc] using ADMA
    (180308_20:31:20.173)[ 1.337543] /soc/aips-bus@02100000/usdhc@02194000: voltage-ranges unspecified
    (180308_20:31:20.173)[ 1.340540] sdhci-esdhc-imx 2194000.usdhc: No vmmc regulator found
    (180308_20:31:20.173)[ 1.342109] sdhci-esdhc-imx 2194000.usdhc: No vqmmc regulator found
    (180308_20:31:20.173)[ 1.384200] mmc1: SDHCI controller on 2194000.usdhc [2194000.usdhc] using ADMA
    (180308_20:31:20.173)[ 1.393521] /soc/aips-bus@02100000/usdhc@02198000: voltage-ranges unspecified
    (180308_20:31:20.173)[ 1.398423] sdhci-esdhc-imx 2198000.usdhc: assigned as wifi host
    (180308_20:31:20.173)[ 1.404586] sdhci-esdhc-imx 2198000.usdhc: No vqmmc regulator found
    (180308_20:31:20.314)[ 1.523122] mmc2: SDHCI controller on 2198000.usdhc [2198000.usdhc] using ADMA
    (180308_20:31:20.314)[ 1.525498] /soc/aips-bus@02100000/usdhc@0219c000: voltage-ranges unspecified
    (180308_20:31:20.314)[ 1.527477] sdhci-esdhc-imx 219c000.usdhc: No vmmc regulator found
    (180308_20:31:20.314)[ 1.529043] sdhci-esdhc-imx 219c000.usdhc: No vqmmc regulator found
    (180308_20:31:20.392)[ 1.573123] mmc3: SDHCI controller on 219c000.usdhc [219c000.usdhc] using ADMA
    (180308_20:31:20.392)[ 1.582465] mxc_vpu 2040000.vpu_fsl: VPU initialized
    (180308_20:31:20.392)[ 1.584385] mxc_vdoa 21e4000.vdoa: i.MX Video Data Order Adapter(VDOA) driver probed
    (180308_20:31:20.392)[ 1.587484] Galcore version 6.2.0.79565
    (180308_20:31:20.532)[ 1.719732] sdhci-esdhc-imx 2198000.usdhc: card claims to support voltages below defined range
    (180308_20:31:20.532)[ 1.740443] mmc2: queuing unknown CIS tuple 0x91 (3 bytes)
    (180308_20:31:20.532)[ 1.744039] sdcard insert 1
    (180308_20:31:20.532)[ 1.745077] mmc2: new high speed SDIO card at address 0001
    (180308_20:31:20.532)[ 1.745087] ext_storage_save_thread started
    (180308_20:31:20.673)[ 1.848516] mmc3: MAN_BKOPS_EN bit is not set
    (180308_20:31:20.673)[ 1.870168] mmc3: new DDR MMC card at address 0001
    (180308_20:31:20.673)[ 1.872397] mmcblk3: mmc3:0001 HBG4a2 29.1 GiB
    (180308_20:31:20.673)[ 1.874063] mmcblk3boot0: mmc3:0001 HBG4a2 partition 1 8.00 MiB
    (180308_20:31:20.673)[ 1.875971] mmcblk3boot1: mmc3:0001 HBG4a2 partition 2 8.00 MiB
    (180308_20:31:20.673)[ 1.877859] mmcblk3rpmb: mmc3:0001 HBG4a2 partition 3 4.00 MiB
    (180308_20:31:20.673)[ 1.886734] mmcblk3: p1 p2 p3 < p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 p16 > p4
    (180308_20:31:21.187)[ 2.376567] hidraw: raw HID events driver (C) Jiri Kosina
    (180308_20:31:21.187)[ 2.378279] usbcore: registered new interface driver usbhid
    (180308_20:31:21.187)[ 2.379693] usbhid: USB HID core driver
    (180308_20:31:21.187)[ 2.381581] ashmem: initialized
    (180308_20:31:21.187)[ 2.387811] NET: Registered protocol family 26
    (180308_20:31:21.187)[ 2.388985] u32 classifier
    (180308_20:31:21.187)[ 2.389681] Actions configured
    (180308_20:31:21.187)[ 2.390568] Netfilter messages via NETLINK v0.30.
    (180308_20:31:21.187)[ 2.391839] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
    (180308_20:31:21.187)[ 2.394151] ctnetlink v0.93: registering with nfnetlink.
    (180308_20:31:21.187)[ 2.396507] xt_time: kernel timezone is -0000
    (180308_20:31:21.187)[ 2.398049] ip_tables: (C) 2000-2006 Netfilter Core Team
    (180308_20:31:21.187)[ 2.399628] arp_tables: (C) 2002 David S. Miller
    (180308_20:31:21.187)[ 2.400889] Initializing XFRM netlink socket
    (180308_20:31:21.187)[ 2.402647] NET: Registered protocol family 10
    (180308_20:31:21.187)[ 2.404916] mip6: Mobile IPv6
    (180308_20:31:21.187)[ 2.405716] ip6_tables: (C) 2000-2006 Netfilter Core Team
    (180308_20:31:21.187)[ 2.407342] sit: IPv6 over IPv4 tunneling driver
    (180308_20:31:21.187)[ 2.409304] NET: Registered protocol family 17
    (180308_20:31:21.187)[ 2.410470] NET: Registered protocol family 15
    (180308_20:31:21.187)[ 2.411645] bridge: automatic filtering via arp/ip/ip6tables has been deprecated. Update your scripts to load br_netfilter if you need this.
    (180308_20:31:21.187)[ 2.414963] Bridge firewalling registered
    (180308_20:31:21.187)[ 2.415996] 8021q: 802.1Q VLAN Support v1.8
    (180308_20:31:21.187)[ 2.422841] thermal_sys: ==> hotpoweroff_uevent_init:384
    (180308_20:31:21.265)[ 2.424960] gpio-keys gpio-keys: Found button without gpios or irqs
    (180308_20:31:21.265)[ 2.426566] gpio-keys: probe of gpio-keys failed with error -22
    (180308_20:31:21.265)[ 2.428182] snvs_rtc 20cc000.snvs:snvs-rtc-lp: setting system clock to 1970-01-01 00:00:01 UTC (1)
    (180308_20:31:21.265)[ 2.447197] VGEN2: disabling
    (180308_20:31:21.265)[ 2.448472] SW4: disabling
    (180308_20:31:21.265)[ 2.449171] mipi_dsi_pwr_on: disabling
    (180308_20:31:21.265)[ 2.450125] hdmi-5v-supply: disabling
    (180308_20:31:21.265)[ 2.451057] wm8962-supply: disabling
    (180308_20:31:21.265)[ 2.451968] usb_otg_vbus: disabling
    (180308_20:31:21.265)[ 2.452856] wlan-en-regulator: disabling
    (180308_20:31:21.265)[ 2.454217] ALSA device list:
    (180308_20:31:21.265)[ 2.454983] #0: Loopback 1
    (180308_20:31:21.265)[ 2.458927] Freeing unused kernel memory: 1024K (c0b00000 - c0c00000)
    (180308_20:31:21.265)[ 2.464785] init: klogt 2.461s:Init entering...
    (180308_20:31:21.265)[ 2.465957] init: init first stage started!
    (180308_20:31:21.343)[ 2.551129] audit: type=1403 audit(1.610:2): policy loaded auid=4294967295 ses=4294967295
    (180308_20:31:21.343)[ 2.554193] init: (Initializing SELinux non-enforcing took 0.09s.)
    (180308_20:31:21.343)[ 2.561581] init: klogt 2.558s:Init entering...
    (180308_20:31:21.343)[ 2.562756] init: init second stage started!
    (180308_20:31:21.343)[ 2.574388] init: Running restorecon...
    (180308_20:31:21.343)[ 2.575396] init: klogt 2.572s:klog starting...
    (180308_20:31:21.421)[ 2.634918] init: klogt 2.631s:signal_handler_init
    (180308_20:31:21.421)[ 2.637300] init: klogt 2.634s:start_property_service
    (180308_20:31:21.421)[ 2.639262] init: klogt 2.636s:parser-rc
    (180308_20:31:21.421)[ 2.650875] init: klogt 2.647s:queue-cmd
    (180308_20:31:21.421)[ 2.651960] init: klogt 2.648s:exec-cmd
    (180308_20:31:21.421)[ 2.652972] init: klogt 2.649s:init-early(rc)
    (180308_20:31:21.421)[ 2.655842] init: klogt 2.652s:init-early(fsl)
    (180308_20:31:21.827)[ 3.011814] init: klogt 3.008s:init(rc)
    (180308_20:31:21.827)[ 3.029419] init: klogt 3.026s:init(fsl)
    (180308_20:31:21.827)[ 3.030713] fs_mgr: Warning: unknown flag resize
    (180308_20:31:21.827)[ 3.032796] init: klogt 3.029s:init-late(rc)
    (180308_20:31:21.827)[ 3.034068] init: klogt 3.030s:fs(fsl)
    (180308_20:31:21.827)[ 3.036462] fs_mgr: Warning: unknown flag resize
    (180308_20:31:21.827)[ 3.047460] EXT4-fs (mmcblk3p5): INFO: recovery required on readonly filesystem
    (180308_20:31:21.827)[ 3.049316] EXT4-fs (mmcblk3p5): write access will be enabled during recovery
    (180308_20:31:21.967)[ 3.135540] fs_mgr: Warning: unknown flag resize
    (180308_20:31:21.967)[ 3.137121] fs_mgr: Warning: unknown flag resize
    (180308_20:31:21.967)[ 3.138443] init: klogt 3.135s:fs(usb-fsl)
    (180308_20:31:21.967)[ 3.141298] file system registered
    (180308_20:31:21.967)[ 3.144457] using random self ethernet address
    (180308_20:31:21.967)[ 3.145602] using random host ethernet address
    (180308_20:31:21.967)[ 3.147402] init: klogt 3.144s:post-fs(rc)
    (180308_20:31:21.967)[ 3.164423] init: klogt 3.161s:post-fs(fsl)
    (180308_20:31:21.967)[ 3.166428] fs_mgr: Warning: unknown flag resize
    (180308_20:31:21.967)[ 3.176092] zram0: detected capacity change from 0 to 314572800
    (180308_20:31:22.045)[ 3.251325] logd.auditd: start
    (180308_20:31:22.045)[ 3.252192] logd.klogd: 3249079332
    (180308_20:31:22.045)[ 3.264077] Adding 307196k swap on /dev/block/zram0. Priority:-1 extents:1 across:307196k SS
    (180308_20:31:22.045)[ 3.270119] fs_mgr: Warning: unknown flag resize
    (180308_20:31:22.045)[ 3.272254] init: klogt 3.269s:post-fs-data(rc)
    (180308_20:31:22.248)[ 3.468625] fs_mgr: Warning: unknown flag resize
    (180308_20:31:22.326)[ 3.505923] init: klogt 3.502s:post-fs-data(usb)
    (180308_20:31:22.326)[ 3.534324] init: klogt 3.531s:boot(rc)
    (180308_20:31:22.326)[ 3.539152] init: klogt 3.536s:start-core(rc)
    (180308_20:31:22.326)[ 3.547158] binder: 118:118 transaction failed 29189, size 0-0
    (180308_20:31:22.326)[ 3.549126] init: klogt 3.545s:boot(usb)
    (180308_20:31:22.326)[ 3.550337] init: klogt 3.547s:boot(fsl)
    (180308_20:31:22.404)[ 3.571465] init: klogt 3.568s:boot(usb-fsl)
    (180308_20:31:22.404)[ 3.573579] logd.daemon: reinit
    (180308_20:31:22.404)[ 3.587051] init: klogt 3.583s:start-main(rc)
    (180308_20:31:22.404)[ 3.627193] init: klogt 3.624s:late-start(rc)
    (180308_20:31:22.482)[ 3.648758] read descriptors
    (180308_20:31:22.482)[ 3.649535] read descriptors
    (180308_20:31:22.482)[ 3.651019] read strings
    (180308_20:31:22.560)sabresd_6dq:/ #
    (180308_20:31:22.701)[ 3.882474] init: avc: denied { set } for property=hardware_version pid=136 uid=0 gid=1000 scontext=u:r:mcuserver:s0 tcontext=u:object_r:default_prop:s0 tclass=property_service permissive=1
    (180308_20:31:23.839)[ 5.047332] init: no such service 'bootanim'
    (180308_20:31:29.221)[ 10.385486] init: klogt 10.382s:sys.interactive(fsl)
    (180308_20:31:32.045)[ 13.214010] period 0 ,timeout is 0, wake up is :0
    (180308_20:31:32.045)[ 13.215425] period 0 ,timeout is 0, wake up is :0
    (180308_20:31:33.309)[ 14.521081] acc_open
    (180308_20:31:33.309)[ 14.521671] acc_release
    (180308_20:31:35.134)[ 16.340150] init: avc: denied { set } for property=hardware_version pid=599 uid=1000 gid=1000 scontext=u:r:system_app:s0 tcontext=u:object_r:default_prop:s0 tclass=property_service permissive=1
    (180308_20:31:36.460)[ 17.654503] period 66 ,timeout is 0, wake up is :0
    (180308_20:31:36.460)[ 17.656481] smi130 acc enable setting active
    (180308_20:31:36.538)[ 17.742662] init: klogt 17.739s:sys.boot_completed(fsl)
    (180308_20:31:36.538)[ 17.750396] init: write_file: Unable to write to '/sys/devices/system/cpu/cpu0/cpufreq/scaling_governor': Invalid argument
    (180308_20:31:36.538)[ 17.753823] init: write_file: Unable to open '/sys/devices/system/cpu/cpufreq/interactive/timer_rate': No such file or directory
    (180308_20:31:36.538)[ 17.767586] init: write_file: Unable to open '/sys/devices/system/cpu/cpufreq/interactive/min_sample_time': No such file or directory
    (180308_20:31:36.616)[ 17.773592] init: write_file: Unable to open '/sys/devices/system/cpu/cpufreq/interactive/go_hispeed_load': No such file or directory
    (180308_20:31:36.616)[ 17.782409] Loading modules backported from Linux version R8.6_SP1-0-g4d167bf
    (180308_20:31:36.616)[ 17.786343] Backport generated by backports.git R8.6_SP1-0-g4677dc3
    (180308_20:31:36.616)[ 17.845688] cfg80211: Calling CRDA to update world regulatory domain
    (180308_20:31:36.694)[ 17.878901] cfg80211: World regulatory domain updated:
    (180308_20:31:36.694)[ 17.880211] cfg80211: DFS Master region: unset
    (180308_20:31:36.694)[ 17.881316] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
    (180308_20:31:36.694)[ 17.890850] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
    (180308_20:31:36.694)[ 17.892970] cfg80211: (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm), (N/A)
    (180308_20:31:36.694)[ 17.895134] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm), (N/A)
    (180308_20:31:36.694)[ 17.897250] cfg80211: (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
    (180308_20:31:36.694)[ 17.899357] cfg80211: (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
    (180308_20:31:37.084)[ 18.266970] wl18xx_driver wl18xx.0.auto: Direct firmware load for ti-connectivity/wl1271-nvs.bin failed with error -2
    (180308_20:31:37.084)[ 18.280064] wl18xx_driver wl18xx.0.auto: Falling back to user helper
    (180308_20:31:37.536)[ 18.712286] wlcore: wl18xx HW: 183x or 180x, PG 2.2 (ROM 0x11)
    (180308_20:31:37.536)[ 18.746935] wlcore: loaded
    (180308_20:31:37.536)[ 18.747739] wlcore: driver version: R8.6_SP1
    (180308_20:31:45.664)[ 26.884143] acc_open
    (180308_20:31:45.664)[ 26.884940] acc_release
    (180308_20:31:45.664)[ 26.885661] acc_open
    (180308_20:31:45.664)[ 26.886259] acc_release
    (180308_20:31:45.664)[ 26.891246] init: Service 'adbd' is being killed...
    (180308_20:31:45.664)[ 26.896960] init: Service 'adbd' (pid 126) killing any children in process group
    (180308_20:31:45.742)[ 26.951110] read descriptors
    (180308_20:31:45.742)[ 26.951885] read descriptors
    (180308_20:31:45.742)[ 26.952630] read strings
    (180308_20:31:45.742)[ 26.954774] acc_alloc
    (180308_20:31:47.193)[ 28.391951] acc_open
    (180308_20:31:50.016)[ 31.216590] period 200 ,timeout is 0, wake up is :0
    (180308_20:31:50.656)[ 31.843299]
    (180308_20:31:50.656)[ 31.843299] /storage/ext_sdcard1/adayo_cmd.fge not exist
    (180308_20:31:50.656)[ 31.845430] ext_storage_save_log_Thread exit
    (180308_20:31:50.734)[ 31.918371] input: Alibox Virtual Keyboard Input Device. as /devices/virtual/input/input2
    (180308_20:31:50.734)[ 31.924519] input: Alibox Virtual Pointer Input Device. as /devices/virtual/input/input3
    (180308_20:32:18.580)[ 59.769408] wlcore: PHY firmware version: Rev 8.2.0.0.212
    (180308_20:32:18.658)[ 59.857574] wlcore: firmware booted (Rev 8.9.0.0.17)
    (180308_20:32:26.604)sabresd_6dq:/ #
    (180308_20:32:26.754)sabresd_6dq:/ #
    (180308_20:32:26.885)sabresd_6dq:/ #
    (180308_20:32:35.953)sabresd_6dq:/ # logcat | grep wpa
    (180308_20:32:36.217)03-08 20:31:31.396 1697 1697 I chatty : uid=1010(wifi) /system/bin/wpa_supplicant expire 40 lines
    (180308_20:32:36.217)03-08 20:31:31.522 1697 1697 D wpa_supplicant: Line: 36 - start of a new network block
    (180308_20:32:36.217)03-08 20:31:31.522 1697 1697 D wpa_supplicant: ssid - hexdump(len=17): 48 55 41 57 45 49 2d 45 35 33 37 35 2d 38 36 38 38
    (180308_20:32:36.217)03-08 20:31:31.522 1697 1697 D wpa_supplicant: PSK (ASCII passphrase) - hexdump(len=9): [REMOVED]
    (180308_20:32:36.217)03-08 20:31:31.522 1697 1697 D wpa_supplicant: key_mgmt: 0x2
    (180308_20:32:36.217)03-08 20:31:31.522 1697 1697 D wpa_supplicant: id_str - hexdump(len=96): 25 37 42 25 32 32 63 72 65 61 74 6f 72 55 69 64 25 32 32 25 33 41 25 32 32 2d 31 25 32 32 25 32 ...
    (180308_20:32:36.217)03-08 20:31:31.572 1697 1697 D wpa_supplicant: PSK (from passphrase) - hexdump(len=32): [REMOVED]
    (180308_20:32:36.217)03-08 20:31:31.572 1697 1697 D wpa_supplicant: Priority group 4
    (180308_20:32:36.217)03-08 20:31:31.572 1697 1697 D wpa_supplicant: id=1 ssid='D-Link-PTC'
    (180308_20:32:36.217)03-08 20:31:31.572 1697 1697 D wpa_supplicant: Priority group 0
    (180308_20:32:36.217)03-08 20:31:31.572 1697 1697 D wpa_supplicant: id=0 ssid='Xiaomi_5F7A'
    (180308_20:32:36.217)03-08 20:31:31.572 1697 1697 D wpa_supplicant: id=2 ssid='HUAWEI-E5375-8688'
    (180308_20:32:36.217)03-08 20:31:31.572 1697 1697 D wpa_supplicant: Reading configuration file '/system/etc/wifi/wpa_supplicant_overlay.conf'
    (180308_20:32:36.217)03-08 20:31:31.573 1697 1697 D wpa_supplicant: disable_scan_offload=1
    (180308_20:32:36.217)03-08 20:31:31.573 1697 1697 D wpa_supplicant: tdls_external_control=1
    (180308_20:32:36.217)03-08 20:31:31.573 1697 1697 D wpa_supplicant: no_ctrl_interface -> ctrl_interface=NULL
    (180308_20:32:36.217)03-08 20:31:31.573 1697 1697 D wpa_supplicant: Priority group 4
    (180308_20:32:36.217)03-08 20:31:31.573 1697 1697 D wpa_supplicant: id=1 ssid='D-Link-PTC'
    (180308_20:32:36.217)03-08 20:31:31.573 1697 1697 D wpa_supplicant: Priority group 0
    (180308_20:32:36.217)03-08 20:31:31.573 1697 1697 D wpa_supplicant: id=0 ssid='Xiaomi_5F7A'
    (180308_20:32:36.217)03-08 20:31:31.573 1697 1697 D wpa_supplicant: id=2 ssid='HUAWEI-E5375-8688'
    (180308_20:32:36.217)03-08 20:31:31.576 1697 1697 D wpa_supplicant: nl80211: Supported cipher 00-0f-ac:1
    (180308_20:32:36.217)03-08 20:31:31.576 1697 1697 D wpa_supplicant: nl80211: Supported cipher 00-0f-ac:5
    (180308_20:32:36.217)03-08 20:31:31.576 1697 1697 D wpa_supplicant: nl80211: Supported cipher 00-0f-ac:2
    (180308_20:32:36.217)03-08 20:31:31.576 1697 1697 D wpa_supplicant: nl80211: Supported cipher 00-0f-ac:4
    (180308_20:32:36.217)03-08 20:31:31.576 1697 1697 D wpa_supplicant: nl80211: Supported cipher 00-14-72:1
    (180308_20:32:36.217)03-08 20:31:31.576 1697 1697 D wpa_supplicant: nl80211: Supports Probe Response offload in AP mode
    (180308_20:32:36.217)03-08 20:31:31.576 1697 1697 D wpa_supplicant: nl80211: Using driver-based off-channel TX
    (180308_20:32:36.217)03-08 20:31:31.576 1697 1697 D wpa_supplicant: nl80211: Supported vendor command: vendor_id=0x80028 subcmd=0
    (180308_20:32:36.217)03-08 20:31:31.577 1697 1697 D wpa_supplicant: nl80211: Supported vendor command: vendor_id=0x80028 subcmd=1
    (180308_20:32:36.217)03-08 20:31:31.577 1697 1697 D wpa_supplicant: nl80211: Supported vendor command: vendor_id=0x80028 subcmd=2
    (180308_20:32:36.297)03-08 20:31:31.577 1697 1697 D wpa_supplicant: nl80211: Supported vendor event: vendor_id=0x80028 subcmd=0
    (180308_20:32:36.297)03-08 20:31:31.577 1697 1697 D wpa_supplicant: nl80211: Supported vendor event: vendor_id=0x80028 subcmd=1
    (180308_20:32:36.297)03-08 20:31:31.577 1697 1697 D wpa_supplicant: nl80211: Use separate P2P group interface (driver advertised support)
    (180308_20:32:36.297)03-08 20:31:31.577 1697 1697 D wpa_supplicant: nl80211: Enable multi-channel concurrent (driver advertised support)
    (180308_20:32:36.297)03-08 20:31:31.577 1697 1697 D wpa_supplicant: nl80211: use P2P_DEVICE support
    (180308_20:32:36.297)03-08 20:31:31.577 1697 1697 D wpa_supplicant: nl80211: interface wlan0 in phy phy0
    (180308_20:32:36.297)03-08 20:31:31.577 1697 1697 D wpa_supplicant: nl80211: Set mode ifindex 4 iftype 2 (STATION)
    (180308_20:32:36.297)03-08 20:31:31.577 1697 1697 D wpa_supplicant: nl80211: Subscribe to mgmt frames with non-AP handle 0xb5320090
    (180308_20:32:36.297)03-08 20:31:31.577 1697 1697 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xb5320090 match=0104
    (180308_20:32:36.297)03-08 20:31:31.578 1697 1697 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xb5320090 match=040a
    (180308_20:32:36.297)03-08 20:31:31.578 1697 1697 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xb5320090 match=040b
    (180308_20:32:36.297)03-08 20:31:31.578 1697 1697 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xb5320090 match=040c
    (180308_20:32:36.297)03-08 20:31:31.578 1697 1697 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xb5320090 match=040d
    (180308_20:32:36.297)03-08 20:31:31.578 1697 1697 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xb5320090 match=090a
    (180308_20:32:36.297)03-08 20:31:31.578 1697 1697 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xb5320090 match=090b
    (180308_20:32:36.297)03-08 20:31:31.578 1697 1697 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xb5320090 match=090c
    (180308_20:32:36.297)03-08 20:31:31.578 1697 1697 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xb5320090 match=090d
    (180308_20:32:36.297)03-08 20:31:31.578 1697 1697 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xb5320090 match=0409506f9a09
    (180308_20:32:36.297)03-08 20:31:31.578 1697 1697 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xb5320090 match=7f506f9a09
    (180308_20:32:36.297)03-08 20:31:31.579 1697 1697 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xb5320090 match=0801
    (180308_20:32:36.297)03-08 20:31:31.579 1697 1697 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xb5320090 match=06
    (180308_20:32:36.297)03-08 20:31:31.579 1697 1697 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xb5320090 match=0a07
    (180308_20:32:36.297)03-08 20:31:31.579 1697 1697 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xb5320090 match=0a11
    (180308_20:32:36.297)03-08 20:31:31.579 1697 1697 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xb5320090 match=0a1a
    (180308_20:32:36.297)03-08 20:31:31.579 1697 1697 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xb5320090 match=1101
    (180308_20:32:36.297)03-08 20:31:31.579 1697 1697 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xb5320090 match=1102
    (180308_20:32:36.297)03-08 20:31:31.579 1697 1697 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xb5320090 match=0505
    (180308_20:32:36.297)03-08 20:31:31.580 1697 1697 I wpa_supplicant: rfkill: Cannot open RFKILL control device
    (180308_20:32:36.297)03-08 20:31:31.580 1697 1697 D wpa_supplicant: nl80211: RFKILL status not available
    (180308_20:32:36.377)03-08 20:31:32.175 1697 1697 D wpa_supplicant: netlink: Operstate: ifindex=4 linkmode=1 (userspace-control), operstate=5 (IF_OPER_DORMANT)
    (180308_20:32:36.377)03-08 20:31:32.178 1697 1697 D wpa_supplicant: nl80211: driver param='p2p_device=1-e/data/misc/wifi/entropy.bin'
    (180308_20:32:36.377)03-08 20:31:32.178 1697 1697 D wpa_supplicant: Add interface wlan0 to a new radio phy0
    (180308_20:32:36.377)03-08 20:31:32.178 1697 1697 D wpa_supplicant: nl80211: Regulatory information - country=00
    (180308_20:32:36.377)03-08 20:31:32.178 1697 1697 D wpa_supplicant: nl80211: 2402-2472 @ 40 MHz 20 mBm
    (180308_20:32:36.377)03-08 20:31:32.178 1697 1697 D wpa_supplicant: nl80211: 2457-2482 @ 20 MHz 20 mBm (no IR)
    (180308_20:32:36.377)03-08 20:31:32.178 1697 1697 D wpa_supplicant: nl80211: 2474-2494 @ 20 MHz 20 mBm (no OFDM) (no IR)
    (180308_20:32:36.377)03-08 20:31:32.179 1697 1697 D wpa_supplicant: nl80211: 5170-5250 @ 40 MHz 20 mBm (no IR)
    (180308_20:32:36.377)03-08 20:31:32.179 1697 1697 D wpa_supplicant: nl80211: 5735-5835 @ 40 MHz 20 mBm (no IR)
    (180308_20:32:36.377)03-08 20:31:32.179 1697 1697 D wpa_supplicant: nl80211: Added 802.11b mode based on 802.11g information
    (180308_20:32:36.377)03-08 20:31:32.211 1697 1697 D wpa_supplicant: wlan0: Own MAC address: 50:f1:4a:d6:3f:1f
    (180308_20:32:36.377)03-08 20:31:32.211 1697 1697 D wpa_supplicant: wpa_driver_nl80211_set_key: ifindex=4 (wlan0) alg=0 addr=0x0 key_idx=0 set_tx=0 seq_len=0 key_len=0
    (180308_20:32:36.377)03-08 20:31:32.212 1697 1697 D wpa_supplicant: wpa_driver_nl80211_set_key: ifindex=4 (wlan0) alg=0 addr=0x0 key_idx=1 set_tx=0 seq_len=0 key_len=0
    (180308_20:32:36.377)03-08 20:31:32.212 1697 1697 D wpa_supplicant: wpa_driver_nl80211_set_key: ifindex=4 (wlan0) alg=0 addr=0x0 key_idx=2 set_tx=0 seq_len=0 key_len=0
    (180308_20:32:36.377)03-08 20:31:32.212 1697 1697 D wpa_supplicant: wpa_driver_nl80211_set_key: ifindex=4 (wlan0) alg=0 addr=0x0 key_idx=3 set_tx=0 seq_len=0 key_len=0
    (180308_20:32:36.377)03-08 20:31:32.212 1697 1697 D wpa_supplicant: wpa_driver_nl80211_set_key: ifindex=4 (wlan0) alg=0 addr=0x0 key_idx=4 set_tx=0 seq_len=0 key_len=0
    (180308_20:32:36.377)03-08 20:31:32.212 1697 1697 D wpa_supplicant: wpa_driver_nl80211_set_key: ifindex=4 (wlan0) alg=0 addr=0x0 key_idx=5 set_tx=0 seq_len=0 key_len=0
    (180308_20:32:36.377)03-08 20:31:32.212 1697 1697 D wpa_supplicant: wlan0: RSN: flushing PMKID list in the driver
    (180308_20:32:36.377)03-08 20:31:32.213 1697 1697 D wpa_supplicant: nl80211: Flush PMKIDs
    (180308_20:32:36.377)03-08 20:31:32.251 1697 1697 D wpa_supplicant: TDLS: TDLS operation not supported by driver
    (180308_20:32:36.377)03-08 20:31:32.251 1697 1697 D wpa_supplicant: TDLS: Driver uses internal link setup
    (180308_20:32:36.377)03-08 20:31:32.251 1697 1697 D wpa_supplicant: TDLS: Driver does not support TDLS channel switching
    (180308_20:32:36.377)03-08 20:31:32.251 1697 1697 D wpa_supplicant: wlan0: WPS: UUID based on MAC address: c50b37c2-03be-5b18-af14-62fdb76a5e95
    (180308_20:32:36.377)03-08 20:31:32.252 1697 1697 D wpa_supplicant: EAPOL: SUPP_PAE entering state DISCONNECTED
    (180308_20:32:36.377)03-08 20:31:32.252 1697 1697 D wpa_supplicant: EAPOL: Supplicant port status: Unauthorized
    (180308_20:32:36.377)03-08 20:31:32.252 1697 1697 D wpa_supplicant: nl80211: Skip set_supp_port(unauthorized) while not associated
    (180308_20:32:36.377)03-08 20:31:32.252 1697 1697 D wpa_supplicant: EAPOL: KEY_RX entering state NO_KEY_RECEIVE
    (180308_20:32:36.377)03-08 20:31:32.252 1697 1697 D wpa_supplicant: EAPOL: SUPP_BE entering state INITIALIZE
    (180308_20:32:36.377)03-08 20:31:32.252 1697 1697 D wpa_supplicant: EAP: EAP entering state DISABLED
    (180308_20:32:36.377)03-08 20:31:32.252 1697 1697 D wpa_supplicant: Using existing control interface directory.
    (180308_20:32:36.377)03-08 20:31:32.253 1697 1697 D wpa_supplicant: wlan0: Added interface wlan0
    (180308_20:32:36.377)03-08 20:31:32.253 1697 1697 D wpa_supplicant: wlan0: State: DISCONNECTED -> DISCONNECTED
    (180308_20:32:36.377)03-08 20:31:32.253 1697 1697 D wpa_supplicant: nl80211: Set wlan0 operstate 0->0 (DORMANT)
    (180308_20:32:36.377)03-08 20:31:32.253 1697 1697 D wpa_supplicant: netlink: Operstate: ifindex=4 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
    (180308_20:32:36.377)03-08 20:31:32.253 1697 1697 D wpa_supplicant: nl80211: Create interface iftype 10 (P2P_DEVICE)
    (180308_20:32:36.457)03-08 20:31:32.254 1697 1697 D wpa_supplicant: nl80211: New P2P Device interface p2p-dev-wlan0 (0x2) created
    (180308_20:32:36.457)03-08 20:31:32.254 1697 1697 D wpa_supplicant: Override interface parameter: ctrl_interface ('/data/misc/wifi/sockets' -> '/data/misc/wifi/sockets')
    (180308_20:32:36.457)03-08 20:31:32.254 1697 1697 D wpa_supplicant: Initializing interface 'p2p-dev-wlan0' conf '/data/misc/wifi/wpa_supplicant.conf' driver 'nl80211' ctrl_interface '/data/misc/wifi/sockets' bridge 'N/A'
    (180308_20:32:36.457)03-08 20:31:32.254 1697 1697 D wpa_supplicant: Configuration file '/data/misc/wifi/wpa_supplicant.conf' -> '/data/misc/wifi/wpa_supplicant.conf'
    (180308_20:32:36.457)03-08 20:31:32.254 1697 1697 D wpa_supplicant: Reading configuration file '/data/misc/wifi/wpa_supplicant.conf'
    (180308_20:32:36.457)03-08 20:31:32.254 1697 1697 D wpa_supplicant: ctrl_interface='/data/misc/wifi/sockets'
    (180308_20:32:36.457)03-08 20:31:32.254 1697 1697 D wpa_supplicant: disable_scan_offload=1
    (180308_20:32:36.457)03-08 20:31:32.254 1697 1697 D wpa_supplicant: driver_param='p2p_device=1-e/data/misc/wifi/entropy.bin'
    (180308_20:32:36.457)03-08 20:31:32.254 1697 1697 D wpa_supplicant: update_config=1
    (180308_20:32:36.457)03-08 20:31:32.254 1697 1697 D wpa_supplicant: device_name='sabresd_6dq'
    (180308_20:32:36.457)03-08 20:31:32.254 1697 1697 D wpa_supplicant: manufacturer='Freescale'
    (180308_20:32:36.457)03-08 20:31:32.254 1697 1697 D wpa_supplicant: model_name='MB202'
    (180308_20:32:36.457)03-08 20:31:32.254 1697 1697 D wpa_supplicant: model_number='MB202'
    (180308_20:32:36.457)03-08 20:31:32.254 1697 1697 D wpa_supplicant: serial_number='0a1281d4ea9d04f5'
    (180308_20:32:36.457)03-08 20:31:32.254 1697 1697 D wpa_supplicant: config_methods='physical_display virtual_push_button'
    (180308_20:32:36.457)03-08 20:31:32.254 1697 1697 D wpa_supplicant: persistent_reconnect=1
    (180308_20:32:36.457)03-08 20:31:32.254 1697 1697 D wpa_supplicant: external_sim=1
    (180308_20:32:36.457)03-08 20:31:32.254 1697 1697 D wpa_supplicant: tdls_external_control=1
    (180308_20:32:36.457)03-08 20:31:32.254 1697 1697 D wpa_supplicant: Line: 16 - start of a new network block
    (180308_20:32:36.457)03-08 20:31:32.254 1697 1697 D wpa_supplicant: ssid - hexdump(len=11): 58 69 61 6f 6d 69 5f 35 46 37 41
    (180308_20:32:36.457)03-08 20:31:32.254 1697 1697 D wpa_supplicant: scan_ssid=1 (0x1)
    (180308_20:32:36.457)03-08 20:31:32.254 1697 1697 D wpa_supplicant: BSSID - hexdump(len=6): f0 b4 29 6a 5f 7b
    (180308_20:32:36.457)03-08 20:31:32.254 1697 1697 D wpa_supplicant: PSK (ASCII passphrase) - hexdump(len=8): [REMOVED]
    (180308_20:32:36.457)03-08 20:31:32.255 1697 1697 D wpa_supplicant: key_mgmt: 0x2
    (180308_20:32:36.457)03-08 20:31:32.255 1697 1697 D wpa_supplicant: auth_alg: 0x1
    (180308_20:32:36.457)03-08 20:31:32.255 1697 1697 D wpa_supplicant: disabled=1 (0x1)
    (180308_20:32:36.457)03-08 20:31:32.255 1697 1697 D wpa_supplicant: id_str - hexdump(len=93): 25 37 42 25 32 32 63 72 65 61 74 6f 72 55 69 64 25 32 32 25 33 41 25 32 32 31 30 30 31 30 25 32 ...
    (180308_20:32:36.457)03-08 20:31:32.300 1697 1697 D wpa_supplicant: PSK (from passphrase) - hexdump(len=32): [REMOVED]
    (180308_20:32:36.457)03-08 20:31:32.300 1697 1697 D wpa_supplicant: Line: 27 - start of a new network block
    (180308_20:32:36.457)03-08 20:31:32.300 1697 1697 D wpa_supplicant: ssid - hexdump(len=10): 44 2d 4c 69 6e 6b 2d 50 54 43
    (180308_20:32:36.457)03-08 20:31:32.300 1697 1697 D wpa_supplicant: PSK (ASCII passphrase) - hexdump(len=9): [REMOVED]
    (180308_20:32:36.457)03-08 20:31:32.300 1697 1697 D wpa_supplicant: key_mgmt: 0x2
    (180308_20:32:36.457)03-08 20:31:32.300 1697 1697 D wpa_supplicant: priority=4 (0x4)
    (180308_20:32:36.457)03-08 20:31:32.301 1697 1697 D wpa_supplicant: disabled=1 (0x1)
    (180308_20:32:36.457)03-08 20:31:32.301 1697 1697 D wpa_supplicant: id_str - hexdump(len=91): 25 37 42 25 32 32 63 72 65 61 74 6f 72 55 69 64 25 32 32 25 33 41 25 32 32 31 30 30 30 25 32 32 ...
    (180308_20:32:36.457)03-08 20:31:32.344 1697 1697 D wpa_supplicant: PSK (from passphrase) - hexdump(len=32): [REMOVED]
    (180308_20:32:36.457)03-08 20:31:32.344 1697 1697 D wpa_supplicant: Line: 36 - start of a new network block
    (180308_20:32:36.457)03-08 20:31:32.344 1697 1697 D wpa_supplicant: ssid - hexdump(len=17): 48 55 41 57 45 49 2d 45 35 33 37 35 2d 38 36 38 38
    (180308_20:32:36.527)03-08 20:31:32.344 1697 1697 D wpa_supplicant: PSK (ASCII passphrase) - hexdump(len=9): [REMOVED]
    (180308_20:32:36.527)03-08 20:31:32.344 1697 1697 D wpa_supplicant: key_mgmt: 0x2
    (180308_20:32:36.527)03-08 20:31:32.344 1697 1697 D wpa_supplicant: id_str - hexdump(len=96): 25 37 42 25 32 32 63 72 65 61 74 6f 72 55 69 64 25 32 32 25 33 41 25 32 32 2d 31 25 32 32 25 32 ...
    (180308_20:32:36.527)03-08 20:31:32.385 1697 1697 D wpa_supplicant: PSK (from passphrase) - hexdump(len=32): [REMOVED]
    (180308_20:32:36.527)03-08 20:31:32.385 1697 1697 D wpa_supplicant: Priority group 4
    (180308_20:32:36.527)03-08 20:31:32.385 1697 1697 D wpa_supplicant: id=1 ssid='D-Link-PTC'
    (180308_20:32:36.527)03-08 20:31:32.385 1697 1697 D wpa_supplicant: Priority group 0
    (180308_20:32:36.527)03-08 20:31:32.385 1697 1697 D wpa_supplicant: id=0 ssid='Xiaomi_5F7A'
    (180308_20:32:36.527)03-08 20:31:32.385 1697 1697 D wpa_supplicant: id=2 ssid='HUAWEI-E5375-8688'
    (180308_20:32:36.527)03-08 20:31:32.386 1697 1697 D wpa_supplicant: nl80211: Supported cipher 00-0f-ac:1
    (180308_20:32:36.527)03-08 20:31:32.386 1697 1697 D wpa_supplicant: nl80211: Supported cipher 00-0f-ac:5
    (180308_20:32:36.527)03-08 20:31:32.386 1697 1697 D wpa_supplicant: nl80211: Supported cipher 00-0f-ac:2
    (180308_20:32:36.527)03-08 20:31:32.387 1697 1697 D wpa_supplicant: nl80211: Supported cipher 00-0f-ac:4
    (180308_20:32:36.527)03-08 20:31:32.387 1697 1697 D wpa_supplicant: nl80211: Supported cipher 00-14-72:1
    (180308_20:32:36.527)03-08 20:31:32.387 1697 1697 D wpa_supplicant: nl80211: Supports Probe Response offload in AP mode
    (180308_20:32:36.527)03-08 20:31:32.387 1697 1697 D wpa_supplicant: nl80211: Using driver-based off-channel TX
    (180308_20:32:36.527)03-08 20:31:32.387 1697 1697 D wpa_supplicant: nl80211: Supported vendor command: vendor_id=0x80028 subcmd=0
    (180308_20:32:36.527)03-08 20:31:32.387 1697 1697 D wpa_supplicant: nl80211: Supported vendor command: vendor_id=0x80028 subcmd=1
    (180308_20:32:36.527)03-08 20:31:32.387 1697 1697 D wpa_supplicant: nl80211: Supported vendor command: vendor_id=0x80028 subcmd=2
    (180308_20:32:36.527)03-08 20:31:32.387 1697 1697 D wpa_supplicant: nl80211: Supported vendor event: vendor_id=0x80028 subcmd=0
    (180308_20:32:36.527)03-08 20:31:32.387 1697 1697 D wpa_supplicant: nl80211: Supported vendor event: vendor_id=0x80028 subcmd=1
    (180308_20:32:36.527)03-08 20:31:32.387 1697 1697 D wpa_supplicant: nl80211: Use separate P2P group interface (driver advertised support)
    (180308_20:32:36.527)03-08 20:31:32.387 1697 1697 D wpa_supplicant: nl80211: Enable multi-channel concurrent (driver advertised support)
    (180308_20:32:36.527)03-08 20:31:32.387 1697 1697 D wpa_supplicant: nl80211: use P2P_DEVICE support
    (180308_20:32:36.527)03-08 20:31:32.387 1697 1697 D wpa_supplicant: nl80211: interface p2p-dev-wlan0 in phy phy0
    (180308_20:32:36.527)03-08 20:31:32.387 1697 1697 D wpa_supplicant: nl80211: Set mode ifindex 0 iftype 10 (P2P_DEVICE)
    (180308_20:32:36.527)03-08 20:31:32.388 1697 1697 D wpa_supplicant: nl80211: Failed to set interface 0 to mode 10: -22 (Invalid argument)
    (180308_20:32:36.527)03-08 20:31:32.388 1697 1697 D wpa_supplicant: nl80211: Subscribe to mgmt frames with non-AP handle 0xb5320180
    (180308_20:32:36.527)03-08 20:31:32.388 1697 1697 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xb5320180 match=0104
    (180308_20:32:36.527)03-08 20:31:32.388 1697 1697 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xb5320180 match=040a
    (180308_20:32:36.527)03-08 20:31:32.388 1697 1697 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xb5320180 match=040b
    (180308_20:32:36.607)03-08 20:31:32.388 1697 1697 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xb5320180 match=040c
    (180308_20:32:36.607)03-08 20:31:32.388 1697 1697 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xb5320180 match=040d
    (180308_20:32:36.607)03-08 20:31:32.388 1697 1697 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xb5320180 match=090a
    (180308_20:32:36.607)03-08 20:31:32.388 1697 1697 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xb5320180 match=090b
    (180308_20:32:36.607)03-08 20:31:32.388 1697 1697 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xb5320180 match=090c
    (180308_20:32:36.607)03-08 20:31:32.388 1697 1697 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xb5320180 match=090d
    (180308_20:32:36.607)03-08 20:31:32.389 1697 1697 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xb5320180 match=0409506f9a09
    (180308_20:32:36.607)03-08 20:31:32.389 1697 1697 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xb5320180 match=7f506f9a09
    (180308_20:32:36.607)03-08 20:31:32.389 1697 1697 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xb5320180 match=0801
    (180308_20:32:36.607)03-08 20:31:32.389 1697 1697 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xb5320180 match=06
    (180308_20:32:36.607)03-08 20:31:32.389 1697 1697 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xb5320180 match=0a07
    (180308_20:32:36.607)03-08 20:31:32.389 1697 1697 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xb5320180 match=0a11
    (180308_20:32:36.607)03-08 20:31:32.390 1697 1697 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xb5320180 match=0a1a
    (180308_20:32:36.607)03-08 20:31:32.390 1697 1697 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xb5320180 match=1101
    (180308_20:32:36.607)03-08 20:31:32.390 1697 1697 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xb5320180 match=1102
    (180308_20:32:36.607)03-08 20:31:32.390 1697 1697 D wpa_supplicant: nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xb5320180 match=0505
    (180308_20:32:36.607)03-08 20:31:32.390 1697 1697 I wpa_supplicant: rfkill: Cannot get wiphy information
    (180308_20:32:36.607)03-08 20:31:32.390 1697 1697 D wpa_supplicant: nl80211: RFKILL status not available
    (180308_20:32:36.607)03-08 20:31:32.406 1697 1697 D wpa_supplicant: nl80211: Start P2P Device p2p-dev-wlan0 (0x2): Success
    (180308_20:32:36.607)03-08 20:31:32.407 1697 1697 D wpa_supplicant: nl80211: driver param='p2p_device=1-e/data/misc/wifi/entropy.bin'
    (180308_20:32:36.607)03-08 20:31:32.407 1697 1697 D wpa_supplicant: Add interface p2p-dev-wlan0 to existing radio phy0
    (180308_20:32:36.607)03-08 20:31:32.408 1697 1697 D wpa_supplicant: nl80211: Regulatory information - country=00
    (180308_20:32:36.607)03-08 20:31:32.408 1697 1697 D wpa_supplicant: nl80211: 2402-2472 @ 40 MHz 20 mBm
    (180308_20:32:36.607)03-08 20:31:32.408 1697 1697 D wpa_supplicant: nl80211: 2457-2482 @ 20 MHz 20 mBm (no IR)
    (180308_20:32:36.607)03-08 20:31:32.408 1697 1697 D wpa_supplicant: nl80211: 2474-2494 @ 20 MHz 20 mBm (no OFDM) (no IR)
    (180308_20:32:36.607)03-08 20:31:32.408 1697 1697 D wpa_supplicant: nl80211: 5170-5250 @ 40 MHz 20 mBm (no IR)
    (180308_20:32:36.607)03-08 20:31:32.408 1697 1697 D wpa_supplicant: nl80211: 5735-5835 @ 40 MHz 20 mBm (no IR)
    (180308_20:32:36.607)03-08 20:31:32.408 1697 1697 D wpa_supplicant: nl80211: Added 802.11b mode based on 802.11g information
    (180308_20:32:36.607)03-08 20:31:32.408 1697 1697 D wpa_supplicant: p2p-dev-wlan0: Own MAC address: 50:f1:4a:d6:3f:20
    (180308_20:32:36.607)03-08 20:31:32.408 1697 1697 D wpa_supplicant: p2p-dev-wlan0: RSN: flushing PMKID list in the driver
    (180308_20:32:36.607)03-08 20:31:32.408 1697 1697 D wpa_supplicant: nl80211: Flush PMKIDs
    (180308_20:32:36.607)03-08 20:31:32.408 1697 1697 D wpa_supplicant: p2p-dev-wlan0: State: DISCONNECTED -> INACTIVE
    (180308_20:32:36.687)03-08 20:31:32.409 1697 1697 D wpa_supplicant: p2p-dev-wlan0: WPS: UUID from the first interface: c50b37c2-03be-5b18-af14-62fdb76a5e95
    (180308_20:32:36.687)03-08 20:31:32.409 1697 1697 D wpa_supplicant: EAPOL: SUPP_PAE entering state DISCONNECTED
    (180308_20:32:36.687)03-08 20:31:32.409 1697 1697 D wpa_supplicant: EAPOL: Supplicant port status: Unauthorized
    (180308_20:32:36.687)03-08 20:31:32.409 1697 1697 D wpa_supplicant: nl80211: Skip set_supp_port(unauthorized) while not associated
    (180308_20:32:36.687)03-08 20:31:32.409 1697 1697 D wpa_supplicant: EAPOL: KEY_RX entering state NO_KEY_RECEIVE
    (180308_20:32:36.687)03-08 20:31:32.409 1697 1697 D wpa_supplicant: EAPOL: SUPP_BE entering state INITIALIZE
    (180308_20:32:36.687)03-08 20:31:32.409 1697 1697 D wpa_supplicant: EAP: EAP entering state DISABLED
    (180308_20:32:36.687)03-08 20:31:32.409 1697 1697 D wpa_supplicant: Using existing control interface directory.
    (180308_20:32:36.687)03-08 20:31:32.410 1697 1697 D wpa_supplicant: P2P: Add operating class 81
    (180308_20:32:36.687)03-08 20:31:32.410 1697 1697 D wpa_supplicant: P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
    (180308_20:32:36.687)03-08 20:31:32.411 1697 1697 D wpa_supplicant: P2P: Own listen channel: 81:11
    (180308_20:32:36.687)03-08 20:31:32.414 1697 1697 D wpa_supplicant: P2P: Random operating channel: 81:6
    (180308_20:32:36.687)03-08 20:31:32.416 1697 1697 D wpa_supplicant: P2P: initialized
    (180308_20:32:36.687)03-08 20:31:32.416 1697 1697 D wpa_supplicant: P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11
    (180308_20:32:36.687)03-08 20:31:32.416 1697 1697 D wpa_supplicant: P2P: cli_channels:
    (180308_20:32:36.687)03-08 20:31:32.416 1697 1697 D wpa_supplicant: p2p-dev-wlan0: Added interface p2p-dev-wlan0
    (180308_20:32:36.687)03-08 20:31:32.416 1697 1697 D wpa_supplicant: p2p-dev-wlan0: State: INACTIVE -> DISCONNECTED
    (180308_20:32:36.687)03-08 20:31:32.416 1697 1697 D wpa_supplicant: nl80211: Set p2p-dev-wlan0 operstate 0->0 (DORMANT)
    (180308_20:32:36.687)03-08 20:31:32.416 1697 1697 D wpa_supplicant: netlink: Operstate: ifindex=0 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
    (180308_20:32:36.687)03-08 20:31:32.416 1697 1697 D wpa_supplicant: p2p-dev-wlan0: Determining shared radio frequencies (max len 2)
    (180308_20:32:36.687)03-08 20:31:32.416 1697 1697 D wpa_supplicant: p2p-dev-wlan0: Shared frequencies (len=0): completed iteration
    (180308_20:32:36.687)03-08 20:31:32.416 1697 1697 D wpa_supplicant: P2P: Add operating class 81
    (180308_20:32:36.687)03-08 20:31:32.416 1697 1697 D wpa_supplicant: P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
    (180308_20:32:36.687)03-08 20:31:32.416 1697 1697 D wpa_supplicant: P2P: Update channel list
    (180308_20:32:36.687)03-08 20:31:32.416 1697 1697 D wpa_supplicant: P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11
    (180308_20:32:36.687)03-08 20:31:32.416 1697 1697 D wpa_supplicant: P2P: cli_channels:
    (180308_20:32:36.687)03-08 20:31:32.416 1697 1697 D wpa_supplicant: random: Got 15/20 bytes from /dev/random
    (180308_20:32:36.687)03-08 20:31:32.417 1697 1697 D wpa_supplicant: CTRL_IFACE monitor attached /data/misc/wifi/sockets/wpa_ctrl_352-2\x00
    (180308_20:32:36.687)03-08 20:31:32.417 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=3
    (180308_20:32:36.687)03-08 20:31:32.417 1697 1697 D wpa_supplicant: RTM_NEWLINK: ifi_index=4 ifname=wlan0 operstate=0 linkmode=0 ifi_family=0 ifi_flags=0x1043 ([UP][RUNNING])
    (180308_20:32:36.687)03-08 20:31:32.417 1697 1697 D wpa_supplicant: RTM_NEWLINK: ifi_index=4 ifname=wlan0 operstate=2 linkmode=0 ifi_family=0 ifi_flags=0x1003 ([UP])
    (180308_20:32:36.687)03-08 20:31:32.417 1697 1697 D wpa_supplicant: RTM_NEWLINK: ifi_index=4 ifname=wlan0 operstate=2 linkmode=1 ifi_family=0 ifi_flags=0x1003 ([UP])
    (180308_20:32:36.687)03-08 20:31:32.417 1697 1697 D wpa_supplicant: random: Got 5/5 bytes from /dev/random
    (180308_20:32:36.687)03-08 20:31:32.420 1697 1697 D wpa_supplicant: wlan0: Control interface command 'DRIVER MACADDR'
    (180308_20:32:36.687)03-08 20:31:32.420 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=28
    (180308_20:32:36.687)03-08 20:31:32.425 1697 1697 D wpa_supplicant: wlan0: Control interface command 'SET SETBAND AUTO'
    (180308_20:32:36.767)03-08 20:31:32.425 1697 1697 D wpa_supplicant: CTRL_IFACE SET 'SETBAND'='AUTO'
    (180308_20:32:36.767)03-08 20:31:32.425 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=3
    (180308_20:32:36.767)03-08 20:31:32.427 1697 1697 D wpa_supplicant: wlan0: Control interface command 'SET update_config 1'
    (180308_20:32:36.767)03-08 20:31:32.427 1697 1697 D wpa_supplicant: CTRL_IFACE SET 'update_config'='1'
    (180308_20:32:36.767)03-08 20:31:32.427 1697 1697 D wpa_supplicant: update_config=1
    (180308_20:32:36.767)03-08 20:31:32.427 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=3
    (180308_20:32:36.767)03-08 20:31:32.429 1697 1697 D wpa_supplicant: wlan0: Control interface command 'LIST_NETWORKS LAST_ID=-1'
    (180308_20:32:36.767)03-08 20:31:32.430 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=130
    (180308_20:32:36.767)03-08 20:31:32.430 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=13
    (180308_20:32:36.767)03-08 20:31:32.431 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=17
    (180308_20:32:36.767)03-08 20:31:32.431 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=1
    (180308_20:32:36.767)03-08 20:31:32.432 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=1
    (180308_20:32:36.767)03-08 20:31:32.432 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=1
    (180308_20:32:36.767)03-08 20:31:32.433 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=1
    (180308_20:32:36.767)03-08 20:31:32.433 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.767)03-08 20:31:32.433 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.767)03-08 20:31:32.434 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.767)03-08 20:31:32.434 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.767)03-08 20:31:32.434 1697 1697 D wpa_supplicant: Do not allow key_data field to be exposed
    (180308_20:32:36.767)03-08 20:31:32.434 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=1
    (180308_20:32:36.767)03-08 20:31:32.435 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=7
    (180308_20:32:36.767)03-08 20:31:32.436 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=7
    (180308_20:32:36.767)03-08 20:31:32.437 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=4
    (180308_20:32:36.767)03-08 20:31:32.439 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=9
    (180308_20:32:36.767)03-08 20:31:32.440 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=9
    (180308_20:32:36.767)03-08 20:31:32.441 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.767)03-08 20:31:32.442 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.767)03-08 20:31:32.443 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.767)03-08 20:31:32.443 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.767)03-08 20:31:32.444 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.767)03-08 20:31:32.451 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.847)03-08 20:31:32.452 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=1
    (180308_20:32:36.847)03-08 20:31:32.452 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.847)03-08 20:31:32.453 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.847)03-08 20:31:32.453 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.847)03-08 20:31:32.454 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.847)03-08 20:31:32.455 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.847)03-08 20:31:32.456 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.847)03-08 20:31:32.457 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.847)03-08 20:31:32.458 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=95
    (180308_20:32:36.847)03-08 20:31:32.459 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=12
    (180308_20:32:36.847)03-08 20:31:32.460 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.847)03-08 20:31:32.460 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=1
    (180308_20:32:36.847)03-08 20:31:32.460 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=1
    (180308_20:32:36.847)03-08 20:31:32.461 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=1
    (180308_20:32:36.847)03-08 20:31:32.463 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=1
    (180308_20:32:36.847)03-08 20:31:32.466 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.847)03-08 20:31:32.466 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.847)03-08 20:31:32.467 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.847)03-08 20:31:32.467 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.847)03-08 20:31:32.468 1697 1697 D wpa_supplicant: Do not allow key_data field to be exposed
    (180308_20:32:36.847)03-08 20:31:32.468 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=1
    (180308_20:32:36.847)03-08 20:31:32.468 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=7
    (180308_20:32:36.847)03-08 20:31:32.469 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=7
    (180308_20:32:36.847)03-08 20:31:32.470 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.847)03-08 20:31:32.470 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=9
    (180308_20:32:36.847)03-08 20:31:32.471 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=9
    (180308_20:32:36.847)03-08 20:31:32.471 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.847)03-08 20:31:32.472 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.917)03-08 20:31:32.475 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.917)03-08 20:31:32.476 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.917)03-08 20:31:32.476 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.917)03-08 20:31:32.476 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.917)03-08 20:31:32.477 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=1
    (180308_20:32:36.917)03-08 20:31:32.477 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.917)03-08 20:31:32.478 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.917)03-08 20:31:32.478 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.917)03-08 20:31:32.478 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.917)03-08 20:31:32.479 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.917)03-08 20:31:32.479 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.917)03-08 20:31:32.480 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.917)03-08 20:31:32.480 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=93
    (180308_20:32:36.917)03-08 20:31:32.481 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=19
    (180308_20:32:36.917)03-08 20:31:32.481 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.917)03-08 20:31:32.482 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=1
    (180308_20:32:36.917)03-08 20:31:32.483 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=1
    (180308_20:32:36.917)03-08 20:31:32.483 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=1
    (180308_20:32:36.917)03-08 20:31:32.483 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=1
    (180308_20:32:36.917)03-08 20:31:32.484 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.917)03-08 20:31:32.484 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.917)03-08 20:31:32.485 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.917)03-08 20:31:32.486 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.917)03-08 20:31:32.486 1697 1697 D wpa_supplicant: Do not allow key_data field to be exposed
    (180308_20:32:36.917)03-08 20:31:32.486 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=1
    (180308_20:32:36.917)03-08 20:31:32.487 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=7
    (180308_20:32:36.997)03-08 20:31:32.487 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=7
    (180308_20:32:36.997)03-08 20:31:32.487 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.997)03-08 20:31:32.488 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=9
    (180308_20:32:36.997)03-08 20:31:32.488 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=9
    (180308_20:32:36.997)03-08 20:31:32.489 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.997)03-08 20:31:32.489 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.997)03-08 20:31:32.489 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.997)03-08 20:31:32.489 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.997)03-08 20:31:32.490 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.997)03-08 20:31:32.490 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.997)03-08 20:31:32.490 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=1
    (180308_20:32:36.997)03-08 20:31:32.491 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.997)03-08 20:31:32.491 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.997)03-08 20:31:32.492 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.997)03-08 20:31:32.492 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.997)03-08 20:31:32.492 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.997)03-08 20:31:32.493 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.997)03-08 20:31:32.493 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=5
    (180308_20:32:36.997)03-08 20:31:32.494 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=98
    (180308_20:32:36.997)03-08 20:31:32.495 1697 1697 D wpa_supplicant: wlan0: Control interface command 'LIST_NETWORKS LAST_ID=2'
    (180308_20:32:36.997)03-08 20:31:32.495 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=34
    (180308_20:32:36.997)03-08 20:31:32.517 1697 1697 D wpa_supplicant: wlan0: Control interface command 'SET device_name sabresd_6dq'
    (180308_20:32:36.997)03-08 20:31:32.517 1697 1697 D wpa_supplicant: CTRL_IFACE SET 'device_name'='sabresd_6dq'
    (180308_20:32:36.997)03-08 20:31:32.517 1697 1697 D wpa_supplicant: device_name='sabresd_6dq'
    (180308_20:32:36.997)03-08 20:31:32.518 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=3
    (180308_20:32:36.997)03-08 20:31:32.518 1697 1697 D wpa_supplicant: wlan0: Control interface command 'SET manufacturer Freescale'
    (180308_20:32:36.997)03-08 20:31:32.518 1697 1697 D wpa_supplicant: CTRL_IFACE SET 'manufacturer'='Freescale'
    (180308_20:32:36.997)03-08 20:31:32.518 1697 1697 D wpa_supplicant: manufacturer='Freescale'
    (180308_20:32:36.997)03-08 20:31:32.518 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=3
    (180308_20:32:36.997)03-08 20:31:32.520 1697 1697 D wpa_supplicant: wlan0: Control interface command 'SET model_name MB202'
    (180308_20:32:36.997)03-08 20:31:32.520 1697 1697 D wpa_supplicant: CTRL_IFACE SET 'model_name'='MB202'
    (180308_20:32:36.997)03-08 20:31:32.520 1697 1697 D wpa_supplicant: model_name='MB202'
    (180308_20:32:37.077)03-08 20:31:32.520 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=3
    (180308_20:32:37.077)03-08 20:31:32.521 1697 1697 D wpa_supplicant: wlan0: Control interface command 'SET model_number MB202'
    (180308_20:32:37.077)03-08 20:31:32.521 1697 1697 D wpa_supplicant: CTRL_IFACE SET 'model_number'='MB202'
    (180308_20:32:37.077)03-08 20:31:32.521 1697 1697 D wpa_supplicant: model_number='MB202'
    (180308_20:32:37.077)03-08 20:31:32.521 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=3
    (180308_20:32:37.077)03-08 20:31:32.521 1697 1697 D wpa_supplicant: wlan0: Control interface command 'SET serial_number 0a1281d4ea9d04f5'
    (180308_20:32:37.077)03-08 20:31:32.521 1697 1697 D wpa_supplicant: CTRL_IFACE SET 'serial_number'='0a1281d4ea9d04f5'
    (180308_20:32:37.077)03-08 20:31:32.521 1697 1697 D wpa_supplicant: serial_number='0a1281d4ea9d04f5'
    (180308_20:32:37.077)03-08 20:31:32.521 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=3
    (180308_20:32:37.077)03-08 20:31:32.522 1697 1697 D wpa_supplicant: wlan0: Control interface command 'SET config_methods physical_display virtual_push_button'
    (180308_20:32:37.077)03-08 20:31:32.522 1697 1697 D wpa_supplicant: CTRL_IFACE SET 'config_methods'='physical_display virtual_push_button'
    (180308_20:32:37.077)03-08 20:31:32.522 1697 1697 D wpa_supplicant: config_methods='physical_display virtual_push_button'
    (180308_20:32:37.077)03-08 20:31:32.522 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=3
    (180308_20:32:37.077)03-08 20:31:32.522 1697 1697 D wpa_supplicant: wlan0: Control interface command 'SET device_type 10-0050F204-5'
    (180308_20:32:37.077)03-08 20:31:32.523 1697 1697 D wpa_supplicant: CTRL_IFACE SET 'device_type'='10-0050F204-5'
    (180308_20:32:37.077)03-08 20:31:32.523 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=3
    (180308_20:32:37.077)03-08 20:31:32.524 1697 1697 D wpa_supplicant: wlan0: Control interface command 'SCAN_INTERVAL 15'
    (180308_20:32:37.077)03-08 20:31:32.524 1697 1697 D wpa_supplicant: wlan0: Setting scan interval: 15 sec
    (180308_20:32:37.077)03-08 20:31:32.524 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=3
    (180308_20:32:37.077)03-08 20:31:32.526 1697 1697 D wpa_supplicant: wlan0: Control interface command 'SET external_sim 1'
    (180308_20:32:37.077)03-08 20:31:32.526 1697 1697 D wpa_supplicant: CTRL_IFACE SET 'external_sim'='1'
    (180308_20:32:37.077)03-08 20:31:32.526 1697 1697 D wpa_supplicant: external_sim=1
    (180308_20:32:37.077)03-08 20:31:32.526 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=3
    (180308_20:32:37.077)03-08 20:31:32.529 1697 1697 D wpa_supplicant: wlan0: Control interface command 'STA_AUTOCONNECT 0'
    (180308_20:32:37.077)03-08 20:31:32.529 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=3
    (180308_20:32:37.077)03-08 20:31:32.530 1697 1697 D wpa_supplicant: wlan0: Control interface command 'DRIVER COUNTRY CN'
    (180308_20:32:37.077)03-08 20:31:32.530 1697 1697 I wpa_supplicant: wpa_driver_nl80211_driver_cmd: Unsupported command COUNTRY CN
    (180308_20:32:37.077)03-08 20:31:32.530 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=3
    (180308_20:32:37.077)03-08 20:31:32.540 1697 1697 D wpa_supplicant: wlan0: Control interface command 'DRIVER BTCOEXSCAN-STOP'
    (180308_20:32:37.077)03-08 20:31:32.541 1697 1697 I wpa_supplicant: wpa_driver_nl80211_driver_cmd: Unsupported command BTCOEXSCAN-STOP
    (180308_20:32:37.077)03-08 20:31:32.541 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=3
    (180308_20:32:37.077)03-08 20:31:32.544 1697 1697 D wpa_supplicant: wlan0: Control interface command 'DRIVER RXFILTER-STOP'
    (180308_20:32:37.077)03-08 20:31:32.544 1697 1697 I wpa_supplicant: wpa_driver_nl80211_driver_cmd: Unsupported command RXFILTER-STOP
    (180308_20:32:37.077)03-08 20:31:32.545 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=3
    (180308_20:32:37.164)03-08 20:31:32.548 1697 1697 D wpa_supplicant: wlan0: Control interface command 'DRIVER RXFILTER-ADD 2'
    (180308_20:32:37.164)03-08 20:31:32.548 1697 1697 I wpa_supplicant: wpa_driver_nl80211_driver_cmd: Unsupported command RXFILTER-ADD 2
    (180308_20:32:37.164)03-08 20:31:32.548 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=3
    (180308_20:32:37.164)03-08 20:31:32.549 1697 1697 D wpa_supplicant: wlan0: Control interface command 'DRIVER RXFILTER-START'
    (180308_20:32:37.164)03-08 20:31:32.549 1697 1697 I wpa_supplicant: wpa_driver_nl80211_driver_cmd: Unsupported command RXFILTER-START
    (180308_20:32:37.164)03-08 20:31:32.549 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=3
    (180308_20:32:37.164)03-08 20:31:32.550 1697 1697 D wpa_supplicant: wlan0: Control interface command 'DRIVER RXFILTER-STOP'
    (180308_20:32:37.164)03-08 20:31:32.550 1697 1697 I wpa_supplicant: wpa_driver_nl80211_driver_cmd: Unsupported command RXFILTER-STOP
    (180308_20:32:37.164)03-08 20:31:32.550 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=3
    (180308_20:32:37.164)03-08 20:31:32.554 1697 1697 D wpa_supplicant: wlan0: Control interface command 'DRIVER RXFILTER-ADD 3'
    (180308_20:32:37.164)03-08 20:31:32.554 1697 1697 I wpa_supplicant: wpa_driver_nl80211_driver_cmd: Unsupported command RXFILTER-ADD 3
    (180308_20:32:37.164)03-08 20:31:32.554 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=3
    (180308_20:32:37.164)03-08 20:31:32.555 1697 1697 D wpa_supplicant: wlan0: Control interface command 'DRIVER RXFILTER-START'
    (180308_20:32:37.164)03-08 20:31:32.555 1697 1697 I wpa_supplicant: wpa_driver_nl80211_driver_cmd: Unsupported command RXFILTER-START
    (180308_20:32:37.164)03-08 20:31:32.555 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=3
    (180308_20:32:37.164)03-08 20:31:32.556 1697 1697 D wpa_supplicant: EAPOL: EAP Session-Id not available
    (180308_20:32:37.164)03-08 20:31:32.556 1697 1697 D wpa_supplicant: CTRL-DEBUG: ctrl_sock-sendmsg: sock=8 sndbuf=163840 outq=0 send_len=67
    (180308_20:32:37.164)03-08 20:31:32.557 1697 1697 D wpa_supplicant: CTRL_IFACE monitor sent successfully to /data/misc/wifi/sockets/wpa_ctrl_352-2\x00
    (180308_20:32:37.164)03-08 20:31:32.557 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=128
    (180308_20:32:37.164)03-08 20:31:32.559 1697 1697 D wpa_supplicant: wlan0: Control interface command 'SET ps 1'
    (180308_20:32:37.164)03-08 20:31:32.559 1697 1697 D wpa_supplicant: CTRL_IFACE SET 'ps'='1'
    (180308_20:32:37.164)03-08 20:31:32.559 1697 1697 D wpa_supplicant: nl80211: set_p2p_powersave (legacy_ps=1 opp_ps=-1 ctwindow=-1)
    (180308_20:32:37.164)03-08 20:31:32.560 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=3
    (180308_20:32:37.164)03-08 20:31:32.585 1697 1697 D wpa_supplicant: wlan0: Control interface command 'SCAN TYPE=ONLY scan_id=0'
    (180308_20:32:37.164)03-08 20:31:32.585 1697 1697 D wpa_supplicant: wlan0: Setting scan request: 0.000000 sec
    (180308_20:32:37.164)03-08 20:31:32.585 1697 1697 D wpa_supplicant: CTRL-DEBUG: global_ctrl_sock-sendto: sock=8 sndbuf=163840 outq=0 send_len=3
    (180308_20:32:37.164)03-08 20:31:32.586 1697 1697 D wpa_supplicant: wlan0: State: DISCONNECTED -> SCANNING
    (180308_20:32:37.164)03-08 20:31:32.586 1697 1697 D wpa_supplicant: CTRL-DEBUG: ctrl_sock-sendmsg: sock=8 sndbuf=163840 outq=448 send_len=67
    (180308_20:32:37.164)03-08 20:31:32.586 1697 1697 D wpa_supplicant: CTRL_IFACE monitor sent successfully to /data/misc/wifi/sockets/wpa_ctrl_352-2\x00
    (180308_20:32:37.164)03-08 20:31:32.586 1697 1697 D wpa_supplicant: wlan0: Determining shared radio frequencies (max len 2)
    (180308_20:32:37.164)03-08 20:31:32.586 1697 1697 D wpa_supplicant: wlan0: Shared frequencies (len=0): completed iteration
    (180308_20:32:37.164)03-08 20:31:32.586 1697 1697 D wpa_supplicant: P2P: Add operating class 81
    (180308_20:32:37.164)03-08 20:31:32.586 1697 1697 D wpa_supplicant: P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
    (180308_20:32:37.164)03-08 20:31:32.586 1697 1697 D wpa_supplicant: P2P: Update channel list
    (180308_20:32:37.164)03-08 20:31:32.586 1697 1697 D wpa_supplicant: P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11
    (180308_20:32:37.164)03-08 20:31:32.586 1697 1697 D wpa_supplicant: P2P: cli_channels:
    (180308_20:32:37.164)03-08 20:31:32.586 1697 1697 D wpa_supplicant: Scan SSID (manual request): Xiaomi_5F7A
    (180308_20:32:37.242)03-08 20:31:32.586 1697 1697 D wpa_supplicant: wlan0: Starting AP scan for wildcard SSID
    (180308_20:32:37.242)03-08 20:31:32.586 1697 1697 D wpa_supplicant: WPS: Building WPS IE for Probe Request
    (180308_20:32:37.242)03-08 20:31:32.586 1697 1697 D wpa_supplicant: WPS: * Version (hardcoded 0x10)
    (180308_20:32:37.242)03-08 20:31:32.586 1697 1697 D wpa_supplicant: WPS: * Request Type
    (180308_20:32:37.242)03-08 20:31:32.586 1697 1697 D wpa_supplicant: WPS: * Config Methods (4288)
    (180308_20:32:37.242)03-08 20:31:32.586 1697 1697 D wpa_supplicant: WPS: * UUID-E
    (180308_20:32:37.242)03-08 20:31:32.586 1697 1697 D wpa_supplicant: WPS: * Primary Device Type
    (180308_20:32:37.242)03-08 20:31:32.587 1697 1697 D wpa_supplicant: WPS: * RF Bands (3)
    (180308_20:32:37.242)03-08 20:31:32.587 1697 1697 D wpa_supplicant: WPS: * Association State
    (180308_20:32:37.242)03-08 20:31:32.587 1697 1697 D wpa_supplicant: WPS: * Configuration Error (0)
    (180308_20:32:37.242)03-08 20:31:32.587 1697 1697 D wpa_supplicant: WPS: * Device Password ID (0)
    (180308_20:32:37.242)03-08 20:31:32.587 1697 1697 D wpa_supplicant: WPS: * Manufacturer
    (180308_20:32:37.242)03-08 20:31:32.587 1697 1697 D wpa_supplicant: WPS: * Model Name
    (180308_20:32:37.242)03-08 20:31:32.587 1697 1697 D wpa_supplicant: WPS: * Model Number
    (180308_20:32:37.242)03-08 20:31:32.587 1697 1697 D wpa_supplicant: WPS: * Device Name
    (180308_20:32:37.242)03-08 20:31:32.587 1697 1697 D wpa_supplicant: WPS: * Version2 (0x20)
    (180308_20:32:37.242)03-08 20:31:32.587 1697 1697 D wpa_supplicant: P2P: * P2P IE header
    (180308_20:32:37.242)03-08 20:31:32.587 1697 1697 D wpa_supplicant: P2P: * Capability dev=25 group=00
    (180308_20:32:37.242)03-08 20:31:32.587 1697 1697 D wpa_supplicant: P2P: * Listen Channel: Regulatory Class 81 Channel 11
    (180308_20:32:37.242)03-08 20:31:32.587 1697 1697 D wpa_supplicant: wlan0: Add radio work 'scan'@0xb5320210
    (180308_20:32:37.242)03-08 20:31:32.587 1697 1697 D wpa_supplicant: wlan0: First radio work item in the queue - schedule start immediately
    (180308_20:32:37.242)03-08 20:31:32.587 1697 1697 D wpa_supplicant: wlan0: Starting radio work 'scan'@0xb5320210 after 0.000127 second wait
    (180308_20:32:37.242)03-08 20:31:32.587 1697 1697 D wpa_supplicant: wlan0: nl80211: scan request
    (180308_20:32:37.242)03-08 20:31:32.587 1697 1697 D wpa_supplicant: nl80211: Scan SSID - hexdump(len=11): 58 69 61 6f 6d 69 5f 35 46 37 41
    (180308_20:32:37.242)03-08 20:31:32.587 1697 1697 D wpa_supplicant: nl80211: Scan SSID - hexdump(len=0): [NULL]
    (180308_20:32:37.242)03-08 20:31:32.587 1697 1697 D wpa_supplicant: nl80211: Scan extra IEs - hexdump(len=162): 7f 08 04 00 0a 02 01 00 00 40 dd 83 00 50 f2 04 10 4a 00 01 10 10 3a 00 01 00 10 08 00 02 42 88 ...
    (180308_20:32:37.242)03-08 20:31:32.588 1697 1697 D wpa_supplicant: nl80211: Scan trigger failed: ret=-22 (Invalid argument)
    (180308_20:32:37.242)03-08 20:31:32.588 1697 1697 D wpa_supplicant: wlan0: State: SCANNING -> DISCONNECTED
    (180308_20:32:37.242)03-08 20:31:32.588 1697 1697 D wpa_supplicant: nl80211: Set wlan0 operstate 0->0 (DORMANT)
    (180308_20:32:37.242)03-08 20:31:32.588 1697 1697 D wpa_supplicant: netlink: Operstate: ifindex=4 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
    (180308_20:32:37.242)03-08 20:31:32.588 1697 1697 D wpa_supplicant: CTRL-DEBUG: ctrl_sock-sendmsg: sock=8 sndbuf=163840 outq=448 send_len=67
    (180308_20:32:37.242)03-08 20:31:32.588 1697 1697 D wpa_supplicant: CTRL_IFACE monitor sent successfully to /data/misc/wifi/sockets/wpa_ctrl_352-2\x00
    (180308_20:32:37.242)03-08 20:31:32.588 1697 1697 D wpa_supplicant: wlan0: Determining shared radio frequencies (max len 2)
    (180308_20:32:37.242)03-08 20:31:32.588 1697 1697 D wpa_supplicant: wlan0: Shared frequencies (len=0): completed iteration
    (180308_20:32:37.242)03-08 20:31:32.588 1697 1697 D wpa_supplicant: P2P: Add operating class 81
    (180308_20:32:37.242)03-08 20:31:32.588 1697 1697 D wpa_supplicant: P2P: Channels - hexdump(len=11): 01 02 03 04 05 06 07 08 09 0a 0b
    (180308_20:32:37.242)03-08 20:31:32.588 1697 1697 D wpa_supplicant: P2P: Update channel list
    (180308_20:32:37.242)03-08 20:31:32.588 1697 1697 D wpa_supplicant: P2P: channels: 81:1,2,3,4,5,6,7,8,9,10,11
    (180308_20:32:37.320)03-08 20:31:32.588 1697 1697 D wpa_supplicant: P2P: cli_channels:
    (180308_20:32:37.320)03-08 20:31:32.588 1697 1697 I wpa_supplicant: wlan0: CTRL-EVENT-SCAN-FAILED ret=-22
    (180308_20:32:37.320)03-08 20:31:32.588 1697 1697 D wpa_supplicant: CTRL-DEBUG: ctrl_sock-sendmsg: sock=8 sndbuf=163840 outq=448 send_len=30
    (180308_20:32:37.320)03-08 20:31:32.588 1697 1697 D wpa_supplicant: CTRL_IFACE monitor sent successfully to /data/misc/wifi/sockets/wpa_ctrl_352-2\x00
    (180308_20:32:37.320)03-08 20:31:32.589 1697 1697 D wpa_supplicant: wlan0: Radio work 'scan'@0xb5320210 done in 0.001456 seconds

    Thanks for any help.
  • Humm.. Not sure, why you need to hard code, n_ssids to 1.. Actually the nl80211.c is open source driver.. What value did you observe 'n_ssid' gettting set to in the code..

    Thanks
  • When I try to add a hidden network,'n_ssids' will ++.Then "n_ssids>wiphy-> max_scan_ssids".Then error log:

    (180308_20:32:37.632)03-08 20:32:21.413 1697 1697 D wpa_supplicant: nl80211: Scan trigger failed: ret=-22 (Invalid argument)

    And I compare Ti and Broadcom 'wiphy-> max_scan_ssids'.Ti is 1, Broadcom is 10.I know set 'n_ssids=1' is not a good idear.So ,Is there any other way can handle my problem?