[T110 / T111][BETA] Linux for Tab 3 Lite, PostMarketOS - Galaxy Tab 3 General

Status: Booting into the OS; Wi-Fi, display, touchscreen, audio, camera, etc.; PostmarketOS Wiki;
What you need:​MicroSD Card formatted with FAT32 inserted into the tablet, preferably with at last 8gb of space.
Getting started:​
Flash the modified TWRP 3.6.2 version which supports pmOS recovery installer (1).
Using the above TWRP, install pmOS flashable zip (2).
(1) -> You can install this recovery using "Install Image" option from "Install" menu.
(1) -> ODIN version for this TWRP pmOS recovery image is here.
(2) -> pmOS zip v270223, interfaces: MATE (lightweight, fast), XFCE4 (lightweight, fast), Gnome (touch friendly, elegant), FBKey (console with keyboard).
(2) -> MATE or XFCE4 (X11) recommended. Gnome (Wayland) version is quite slow due to lack of hardware acceleration.
(2) -> MATE also handles power off button by default and don't get stuck after screen off.
(2) -> Password for user q is q.
(2) -> This will not replace anything in /system or /data partition, only content on MicroSD and kernel boot.img.
(3) -> You can revert to Android by flashing stock boot.img.
(4) -> Compatible mesa packages. You should use FBKey version with this.
Build using pmbootstrap:​Sources:
Github T110 pmOS with kernel, firmware, etc.
APKBUILDs for Mesa, Etna driver.
You can also build pmOS zip using pmbootstrap, as my initial MR is accepted.
Check the fork for updates not yet in upstream. Usage: (1), (2).
MR was accepted, so now you can use pmbootstrap to build for goyawifi.
Spoiler: Build from source using pmbootstrap
pmbootstrap init
#Select .. -> Edge -> Samsung -> Goyawifi -> .. -> Mate | other options can be default values
pmbootstrap install --android-recovery-zip --recovery-install-partition=external_sd
pmbootstrap export
#Insert an FAT32 formatted MicroSD Card (preferably over 8GB) in the table then
#Connect tablet using USB cable in
#TWRP recovery mode using pmos_twrp-3.6.2_9-0-goya.img installed as recovery:
adb push /tmp/postmarketOS-export/pmos-samsung-goyawifi.zip /sdcard
flash pmos-samsung-goyawifi.zip using recovery "Install" menu, like any other ROM
#If you can't push the zip, just try to copy to the tablet using MTP or wireless and then
#Flash using mentioned TWRP version
#Alternative, untested, sideload
pmbootstrap flasher --method=adb sideload
NOTE: this device, T110 or T111, goyawifi, SoC PXA986/988 is not the same as T113, goyavewifi or T116, SC8830.
If you want to try postmarketos for these devices, check this post for details.
These postmarketos and TWRP might be compatible with I8200 PXA986 version, as it is similar to the T111 tablet.
How it performs:​
What's working:
Touchscreen
Battery level reads correctly
Audio playback and recording
Accelerometer
LCD brightness
Camera
Wi-Fi
Some 3D hardware acceleration
Mate, XFCE4, Wayland, Fbkeyboard
SSH acces to OS though USB or WLAN
Spoiler: Other thing are working
OS is booting
Build kernel from source
Kernel is loaded and working
Load the pmOS on MicroSD card
Compile pmOS with and without UI
Mount and chroot pmOS manually using telnet
Telnet access during init
Read and mounts SDCard partitions correctly
Pass extracting initramfs-extra
Can read kernel logs through UART *
Can telnet into init stage
Can SSH to OS
What's not working:
Proper full HW Acceleration
GPS
Bluetooth
Hardware handling:​HW Acceleration:
Here are some demos based on the old Etnaviv user-space implementation.
You can use the Mesa with Etna driver:
APKBUILDs, apk source: https://github.com/T110-pmOS/abuilds
Source: https://github.com/T110-pmOS/mesa
Spoiler: Example of install and usage with FBKey
Code:
#Connect to Wi-Fi
#Note: You need using FBKey, plain console, chroot or uninstall mesa from the other versions, which is quite impossible.
sudo nmtui
#wget and untar (tar -xvf) the etna-mesa-apk-v270323.tar, then cd into armv7 folder inside it
apk add libetnaviv-dev-1.0.0-r0.apk
apk add mesa-9.3.0-r0.apk mesa-dev-9.3.0-r0.apk mesa-dri-gallium-9.3.0-r0.apk mesa-egl-9.3.0-r0.apk mesa-gbm-9.3.0-r0.apk mesa-gl-9.3.0-r0.apk mesa-glapi-9.3.0-r0.apk mesa-gles-9.3.0-r0.apk
#Or just apk add *
apk add xorg-server xf86-video-fbdev libinput xf86-input-libinput
rc-update del fbkeyboard
rc-service fbkeyboard stop
echo exec startxfce4 > /home/q/.xinitrc
sudo startx -- -verbose 6
#Lightdm, to start UI at boot
apk add lightdm lightdm-gtk-greeter onboard
echo keyboard=onboard | sudo tee -a /etc/lightdm/lightdm-gtk-greeter.conf
rc-update add lightdm
#Example of mesatest HW accelerated:
apk add automake make gcc git
git clone https://github.com/laanwj/mesatest_gles
cd mesatest_gles/
make
Cube
sudo DISPLAY=:0 ./cube
Quite old version of Mesa, 9. Might need a patch for TLS on MUSL.
Audio:
Audio recording and playback with internal microphone and speaker works.
You might try to fix the jack audio output by experimenting with amixer cset.
Camera:
Bash:
#Install:
sudo apk add v4l-utils imagemagick ffmpeg
#Capture a photo:
v4l2-ctl -d /dev/video0 --set-fmt-video=width=640,height=480,pixelformat=UYVY --stream-mmap --stream-count=1 --stream-to=test.raw
convert -size 640x480 -depth 16 uyvy:test.raw test.png
#E.g. recording video:
ffmpeg -y -f v4l2 -i /dev/video0 -framerate 24 -video_size 640x480 output.mkv
#You can stream using ffmpeg and open on VLC:
ffmpeg -re -f v4l2 -framerate 24 -video_size 640x480 -i /dev/video0 -c:v libx264 -preset ultrafast -tune zerolatency -b:v 500K -f mpegts udp://127.0.0.1:20000
sudo apk add vlc-qt
#Open VLC and network connect to: udp://@:20000
Accelerometer:
You can access accelerometer data, by:
cat /sys/class/sensors/accelerometer_sensor/raw_data
Bluetooth:
Bluetooth kernel module loads correctly and add the char devices to /dev/mbtchar0, /dev/mfmchar0, but it seems to be based on SDIO Marvell communication and there's no proper user-space driver or support for Linux.
Possible solutions:
Modify the kernel driver to add an HCI compatible interface.
Documentation:
EVK-EMMY-W1 - User Guide
Bluetooth on Pepper #5
PAN9026
GPS:
Didn't experimenting with it. I can say, it could be possible to bring it up with libhybris, as it seems the test does something.
Libhybris:
You can access, for example, sensors.
If you want to experiment, here you go:
GitHub - T110-pmOS/libhybris: Hybris is a solution that commits hybris, by allowing us to use bionic-based HW adaptations in glibc systems
Hybris is a solution that commits hybris, by allowing us to use bionic-based HW adaptations in glibc systems - GitHub - T110-pmOS/libhybris: Hybris is a solution that commits hybris, by allowing u...
github.com
Debugging:​
* UART Serial Debugging tested with 150Kohm, 530Kohm, 619Kohm ID to GND, 3.3V. RX/TX seem to work. See attached photos for adapter and Serial debugging:Cable schematics . Check also this YouTube playlist.
USB Network (Telnet, SSH) from Windows 10: info in post #3.
Alternatively to Telnet, SSH you can use a Linux machine, or to run some distribution (like Xubuntu) in VirtualBox and pass the USB SAMSUNG_Android [9999] to VirtualBox OS.
​
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
​
More info in post #3.

Hey, could you please share the sources used to build this? Maybe we can help?

The problem I've detected for now is that prebuild kernel hasn't
CONFIG_DEVTMPFS = Y configure, and all the other kernels I've tried to build from different sources (T110, I8200, T230) doesn't boot and no one, stock, the ones I've build, etc. can't get output through UART serial interface (I've even tried to get output directly from UART testpoints on the mainboard).
If you want to try, download and flash boot-pmOS-manual-s1-n9.zip, this will replace the boot.img of the device with the one that contains initramfs from pmOS and stock zImage kernel. You can connect to this environment through telnet according to: Inspecting the initramfs . To make connection on Windows 10, I've used Ubuntu Console and from Device Manager I've set the Samsung_Android device to use driver Remote NDIS based Internet Sharing Device.
You can also telnet from VirtualBox if you pass the USB to Linux environment.
As for SDCard, I've used xUbuntu on VirtualBox, which you can download from here to don't waste time installing it manually, then with pmbootstrap you can init it for example for I8200. It dosen't make a difference for now which similar device you use for init to create compatible SDCard OS, as they are similar to what I expect to run on T110.
E.g.
Code:
pmbootstrap init -> Device Samsung -> I8200 / lt023g -> ...
pmbootstrap install --sdcard=/dev/sdb
You can see more in Installation guide .
Debugging: as far as I've tried, rc.log would not be written, because OpenRC fails due to that config. However, you can log all the things to dmesg (/var/log/dmesg on SDCard) with this guide. To do these edits, you can use pmbootstrap chroot before install to SDCard or edit the files on SDCard after installation.
SSH doesn't work as the OpenRC fails to load SSH server and also hwclock, I expect is due to that config.
So, the objective is to compile an working kernel for this tablet from source.
If you want to try what I've done, unpack the samsung-goyawifi-failed-attempts-#1.zip
to ~/.local/var/pmbootstrap/cache_git/pmaports/device/testing/ and pmbootstrap init -> Samsung -> Goyawifi .. then fallow the build kernel from Porting to a new device starting with pmbootstrap build linux-samsung-goyawifi.

Update: I've managed to build kernel from source with CONFIG_DEVTMPFS = Y and ssh seems to work, so I expect to get the OS booting.
How I've compiled the kernel: using android_goyawifi_ramdisk , and gcc-4.7 for ARM, gcc-4.7-arm-linux-gnueabi, gcc-4.7-arm-linux-gnueabihf, gcc-4.7-arm-linux-gnueabi-base, gcc-4.7-arm-linux-gnueabihf-base, gcc-4.7 and so on.
Please uninstall other versions of gcc.
To install this version of gcc to xUbuntu OS I've referred before you need to append this to /etc/apt/sources.list
Code:
deb https://mirror.efect.ro/ubuntu/archive/ xenial main
deb https://mirror.efect.ro/ubuntu/archive/ xenial universe
* you might want to replace mirror to one close to your country
then sudo apt-get update
Run ./mkboot build
If you get errors, you might need to modify the Makefile parameters as:
Code:
CROSS_COMPILE ?= /usr/bin/arm-linux-gnueabi-
CC = $(CROSS_COMPILE)gcc-4.7
I'll attach updated zip in OP with boot.img for pmOS which contains kernel with CONFIG_DEVTMPFS = Y.

Great news! Managed to get it to boot.
I've compiled the kernel with all the options asked by pmOS and it works!
Updated zip with boot.img on OP.

That's amazing to hear! Could we have a TWRP-flashable ZIP?

Yes, for sure, I'll make a zip or a backup when I finish the basic setup and try to get WiFi, Audio and some other basic functions to work.
However, I have good news. MATE seem to work smooth and is responsive.
Maybe I could get also Anbox to work in order to run some Android Apps. This would make the tablet usable again with newer software.
However, it's great that we can get a Linux that's works and is long-term updatable for this tablet, as the possibilities are infinite. If web browser works fine, this is a clear upgrade from deprecated 4.2 Android.

adryyy said:
Yes, for sure, I'll make a zip or a backup when I finish the basic setup and try to get WiFi, Audio and some other basic functions to work.
However, I have good news. MATE seem to work smooth and is responsive.
Maybe I could get also Anbox to work in order to run some Android Apps. This would make the tablet usable again with newer software.
However, it's great that we can get a Linux that's works and is long-term updatable for this tablet, as the possibilities are infinite. If web browser works fine, this is a clear upgrade from deprecated 4.2 Android.
Click to expand...
Click to collapse
Hey! Have you tried installing the linux_firmware_mrvl package?

Update: WiFi is fully working!
Spoiler: Working Wi-Fi
Code:
########## More elegant ############
# Don't stop the NetworkManager
# https://wiki.alpinelinux.org/wiki/NetworkManager
sudo rc-service networkmanager start
sudo nmtui
sudo rc-update add networkmanager
#Add a blank Wi-Fi and specify device mlan0
Code:
### Using mrvl binaries from stock ROM (/android/etc/firmware/mrvl)
samsung-goyawifi:$ ls /lib/firmware/mrvl
SDIO8777_SDIO_SDIO.bin bt_cal_data.conf cal_data.conf sd8777_uapsta.bin
WlanCalData_ext.conf bt_init_cfg.conf reg_alpha2
samsung-goyawifi:$ sudo modprobe sd8xxx
samsung-goyawifi:$ sudo lsmod
Module Size Used by
sd8xxx 323247 0
mlan 260239 1 sd8xxx
mwifiex_sdio 17060 0
mwifiex 129515 1 mwifiex_sdio
samsung-goyawifi:$ sudo rc-service networkmanager stop
samsung-goyawifi:$ sudo killall wpa_supplicant && sudo wpa_supplicant -c /etc/wpa_supplicant/wpa_supplicant.conf -i mlan0 -D wext
Successfully initialized wpa_supplicant
rfkill: Cannot get wiphy information
ioctl[SIOCSIWESSID]: Bad address
mlan0: Trying to associate with 2a:5f:d8:61:4a:24 (SSID='AdryyyX' freq=2462 MHz)
Failed to add supported operating classes IE
mlan0: Associated with 2a:5f:d8:61:4a:24
mlan0: CTRL-EVENT-CONNECTED - Connection to 2a:5f:d8:61:4a:24 completed [id=0 id_str=]
samsung-goyawifi:$ sudo udhcpc -i mlan0
ijsudo| password for q:
udhcpc: started, v1.33.1
udhcpc: sending discover
udhcpc: sending select for 192.168.121.148
udhcpc: lease of 192.168.121.148 obtained, lease time 3599
samsung-goyawifi:$ sudo ifconfig mlan0
mlan0 Link encap:Ethernet HWaddr 00:50:43:02:FE:01
inet addr:192.168.121.148 Bcast:192.168.121.255 Mask:255.255.255.0
inet6 addr: fe80::250:43ff:fe02:fe01/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:12 errors:0 dropped:0 overruns:0 frame:0
TX packets:14 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:1524 (1.4 KiB) TX bytes:1869 (1.8 KiB)
samsung-goyawifi:$ ping google.com
PING google.com (142.250.187.174): 56 data bytes
64 bytes from 142.250.187.174: seq=0 ttl=42 time=409.638 ms
64 bytes from 142.250.187.174: seq=1 ttl=42 time=433.044 ms
samsung-goyawifi:$ sudo apk update
fetch http://mirror.postmarketos.org/postmarketos/v21.06/armv7/APKINDEX.tar.gz
fetch http://dl-cdn.alpinelinux.org/alpine/v3.14/main/armv7/APKINDEX.tar.gz
fetch http://dl-cdn.alpinelinux.org/alpine/v3.14/community/armv7/APKINDEX.tar.gz
2021-10-24 13:22:26.080540 ijhttp://mirror.postmarketos.org/postmarketos/v21.06|
v3.14.2-116-gea9b052f30 ijhttp://dl-cdn.alpinelinux.org/alpine/v3.14/main|
v3.14.2-117-gc76a8e57ec ijhttp://dl-cdn.alpinelinux.org/alpine/v3.14/community|
OK: 14882 distinct packages available
samsung-goyawifi:$ cat /etc/resolv.conf
nameserver 192.168.121.82
Yes. I only need to get the wpa_supplincant and DHCP to work.
The driver and Linux module loads correctly (if loaded after OS is booted).
Code:
samsung-goyawifi:/proc/mwlan/mlan0$ cat info
driver_name = "wlan"
driver_version = SD8777-14.66.33.p63-M3X14453-GPL-(FP66)
interface_name="mlan0"
bss_mode ="Managed"
media_state="Disconnected"
mac_address="56:09:89:13:54:99"
I should get the Wi-Fi to work, then Audio and maybe Bluetooth, Accelerometer, GPS.
The system is stable. I keep the tablet over-night without charger and it only discharged about 20%, which I think is fine for this battery age.
As you can see, the Wi-Fi scan is working, but not connecting:
* actually it connect to my Hotspot without password, but for a split second and then it disconnects.
Spoiler: WPA_Supplicant output
Code:
############## Working for a split second ###################
############## See last attempt with wext for more info #########
sudo killall wpa_supplicant && sudo wpa_supplicant -c /etc/wpa_supplicant/wpa_supplicant.conf -i mlan0 -D wext
Successfully initialized wpa_supplicant
rfkill: Cannot get wiphy information
ioctl[SIOCSIWESSID]: Bad address
mlan0: Trying to associate with 2a:5f:d8:61:4a:24 (SSID='AdryyyX' freq=2462 MHz)
Failed to add supported operating classes IE
mlan0: Associated with 2a:5f:d8:61:4a:24
mlan0: CTRL-EVENT-CONNECTED - Connection to 2a:5f:d8:61:4a:24 completed [id=0 id_str=]
mlan0: CTRL-EVENT-DISCONNECTED bssid=2a:5f:d8:61:4a:24 reason=0
mlan0: Trying to associate with 2a:5f:d8:61:4a:24 (SSID='AdryyyX' freq=2462 MHz)
Failed to add supported operating classes IE
mlan0: Associated with 2a:5f:d8:61:4a:24
mlan0: CTRL-EVENT-CONNECTED - Connection to 2a:5f:d8:61:4a:24 completed [id=0 id_str=]
mlan0: CTRL-EVENT-DISCONNECTED bssid=2a:5f:d8:61:4a:24 reason=0
mlan0: Trying to associate with 2a:5f:d8:61:4a:24 (SSID='AdryyyX' freq=2462 MHz)
Failed to add supported operating classes IE
mlan0: Associated with 2a:5f:d8:61:4a:24
mlan0: CTRL-EVENT-CONNECTED - Connection to 2a:5f:d8:61:4a:24 completed [id=0 id_str=]
mlan0: CTRL-EVENT-DISCONNECTED bssid=2a:5f:d8:61:4a:24 reason=0
mlan0: Trying to associate with 2a:5f:d8:61:4a:24 (SSID='AdryyyX' freq=2462 MHz)
Failed to add supported operating classes IE
^Cioctl[SIOCSIWAP]: Bad address
mlan0: Association request to the driver failed
^Cioctl[SIOCSIWESSID]: Bad address
mlan0: CTRL-EVENT-DISCONNECTED bssid=2a:5f:d8:61:4a:24 reason=3 locally_generated=1
ioctl[SIOCSIWESSID]: Bad address
mlan0: CTRL-EVENT-TERMINATING
############## WITH wext ###############
sudo wpa_supplicant -c /etc/wpa_supplicant/wpa_supplicant.conf -W -i mlan0 -D wext -dd
wpa_supplicant v2.9
random: Trying to read entropy from /dev/random
Successfully initialized wpa_supplicant
Initializing interface 'mlan0' conf '/etc/wpa_supplicant/wpa_supplicant.conf' driver 'wext' ctrl_interface 'N/A' bridge 'N/A'
Configuration file '/etc/wpa_supplicant/wpa_supplicant.conf' -> '/etc/wpa_supplicant/wpa_supplicant.conf'
Reading configuration file '/etc/wpa_supplicant/wpa_supplicant.conf'
country='de'
ctrl_interface='/var/run/wpa_supplicant'
update_config=1
eapol_version=1
ap_scan=1
fast_reauth=1
okc=1
p2p_listen_reg_class=81
p2p_listen_channel=1
p2p_oper_reg_class=81
p2p_oper_channel=1
device_name='SAMSUNG_MOBILE'
manufacturer='SAMSUNG_ELECTRONICS'
model_name='SAMSUNG_MOBILE'
model_number='2013'
serial_number='19691101'
Line: 19 - start of a new network block
ssid - hexdump_ascii(len=6):
41 64 72 79 79 79 Adryyy
PSK - hexdump(len=32): [REMOVED]
Priority group 0
id=0 ssid='Adryyy'
rfkill: Cannot get wiphy information
WEXT: RFKILL status not available
SIOCGIWRANGE: WE(compiled)=22 WE(source)=15 enc_capa=0xf
capabilities: key_mgmt 0xf enc 0x1f flags 0x0
ioctl[SIOCSIWESSID]: Bad address
WEXT: Failed to set bogus SSID to disconnect
WEXT: Driver: wlan_sdio
netlink: Operstate: ifindex=5 linkmode=1 (userspace-control), operstate=5 (IF_OPER_DORMANT)
Add interface mlan0 to a new radio N/A
mlan0: Own MAC address: de:fc:4c:55:26:9a
wpa_driver_wext_set_key: alg=0 key_idx=0 set_tx=0 seq_len=0 key_len=0
wpa_driver_wext_set_key: alg=0 key_idx=1 set_tx=0 seq_len=0 key_len=0
wpa_driver_wext_set_key: alg=0 key_idx=2 set_tx=0 seq_len=0 key_len=0
wpa_driver_wext_set_key: alg=0 key_idx=3 set_tx=0 seq_len=0 key_len=0
wpa_driver_wext_set_countermeasures
mlan0: RSN: flushing PMKID list in the driver
mlan0: Setting scan request: 0.100000 sec
mlan0: WPS: UUID based on MAC address: eb45f301-0485-521c-96d1-2011b8949d91
ENGINE: Loading builtin engines
ENGINE: Loading builtin engines
EAPOL: SUPP_PAE entering state DISCONNECTED
EAPOL: Supplicant port status: Unauthorized
EAPOL: KEY_RX entering state NO_KEY_RECEIVE
EAPOL: SUPP_BE entering state INITIALIZE
EAP: EAP entering state DISABLED
Using existing control interface directory.
ctrl_iface bind(PF_UNIX) failed: Address in use
ctrl_iface exists, but does not allow connections - assuming it was leftover from forced program termination
Successfully replaced leftover ctrl_iface socket '/var/run/wpa_supplicant/mlan0'
mlan0: Added interface mlan0
mlan0: State: DISCONNECTED -> DISCONNECTED
wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT)
netlink: Operstate: ifindex=5 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
CTRL_IFACE - mlan0 - wait for monitor to attach
############## WITH nl80211 ###############
samsung-goyawifi:/proc/mwlan/mlan0$ sudo wpa_supplicant -c /etc/wpa_supplicant/wpa_supplicant.conf -W -i mlan0 -dd
wpa_supplicant v2.9
random: Trying to read entropy from /dev/random
Successfully initialized wpa_supplicant
Initializing interface 'mlan0' conf '/etc/wpa_supplicant/wpa_supplicant.conf' driver 'default' ctrl_interface 'N/A' bridge 'N/A'
Configuration file '/etc/wpa_supplicant/wpa_supplicant.conf' -> '/etc/wpa_supplicant/wpa_supplicant.conf'
Reading configuration file '/etc/wpa_supplicant/wpa_supplicant.conf'
country='de'
ctrl_interface='/var/run/wpa_supplicant'
update_config=1
eapol_version=1
ap_scan=1
fast_reauth=1
okc=1
p2p_listen_reg_class=81
p2p_listen_channel=1
p2p_oper_reg_class=81
p2p_oper_channel=1
device_name='SAMSUNG_MOBILE'
manufacturer='SAMSUNG_ELECTRONICS'
model_name='SAMSUNG_MOBILE'
model_number='2013'
serial_number='19691101'
Line: 19 - start of a new network block
scan_ssid=1 (0x1)
proto: 0x2
key_mgmt: 0x2
ssid - hexdump_ascii(len=7):
41 64 72 79 79 79 7a Adryyyz
PSK - hexdump(len=32): [REMOVED]
Priority group 0
id=0 ssid='Adryyyz'
nl80211: Could not add multicast membership for vendor events: -2 (No such file or directory)
nl80211: deinit ifname=mlan0 disabled_11b_rates=0
nl80211: Remove monitor interface: refcount=0
netlink: Operstate: ifindex=5 linkmode=0 (kernel-control), operstate=6 (IF_OPER_UP)
nl80211: Set mode ifindex 5 iftype 2 (STATION)
nl80211: Failed to set interface 5 to mode 2: -19 (No such device)
mlan0: Failed to initialize driver interface
Failed to add interface mlan0
mlan0: Cancelling scan request
mlan0: Cancelling authentication timeout
Off-channel: Clear pending Action frame TX (pending_action_tx=0
samsung-goyawifi:/proc/mwlan/mlan0$ sudo wpa_supplicant -c /etc/wpa_supplicant/wpa_supplicant.conf -W -i mlan0 -dd
wpa_supplicant v2.9
random: Trying to read entropy from /dev/random
Successfully initialized wpa_supplicant
Initializing interface 'mlan0' conf '/etc/wpa_supplicant/wpa_supplicant.conf' driver 'default' ctrl_interface 'N/A' bridge 'N/A'
Configuration file '/etc/wpa_supplicant/wpa_supplicant.conf' -> '/etc/wpa_supplicant/wpa_supplicant.conf'
Reading configuration file '/etc/wpa_supplicant/wpa_supplicant.conf'
country='de'
ctrl_interface='/var/run/wpa_supplicant GROUP=wheel'
update_config=1
eapol_version=1
ap_scan=1
fast_reauth=1
okc=1
p2p_listen_reg_class=81
p2p_listen_channel=1
p2p_oper_reg_class=81
p2p_oper_channel=1
device_name='SAMSUNG_MOBILE'
manufacturer='SAMSUNG_ELECTRONICS'
model_name='SAMSUNG_MOBILE'
model_number='2013'
serial_number='19691101'
Line: 19 - start of a new network block
scan_ssid=1 (0x1)
proto: 0x2
key_mgmt: 0x2
ssid - hexdump_ascii(len=7):
41 64 72 79 79 79 7a Adryyyz
PSK - hexdump(len=32): [REMOVED]
Priority group 0
id=0 ssid='Adryyyz'
nl80211: Could not add multicast membership for vendor events: -2 (No such file or directory)
nl80211: deinit ifname=mlan0 disabled_11b_rates=0
nl80211: Remove monitor interface: refcount=0
netlink: Operstate: ifindex=5 linkmode=0 (kernel-control), operstate=6 (IF_OPER_UP)
nl80211: Set mode ifindex 5 iftype 2 (STATION)
nl80211: Failed to set interface 5 to mode 2: -19 (No such device)
mlan0: Failed to initialize driver interface
Failed to add interface mlan0
mlan0: Cancelling scan request
mlan0: Cancelling authentication timeout
Off-channel: Clear pending Action frame TX (pending_action_tx=0)
############ ATTEMPT ###############
sudo killall wpa_supplicant && sudo wpa_supplicant -c /etc/wpa_supplicant/wpa_supplicant.conf -i mlan0 -D wext -dd
[sudo] password for q:
wpa_supplicant v2.9
random: Trying to read entropy from /dev/random
Successfully initialized wpa_supplicant
Initializing interface 'mlan0' conf '/etc/wpa_supplicant/wpa_supplicant.conf' driver 'wext' ctrl_interface 'N/A' bridge 'N/A'
Configuration file '/etc/wpa_supplicant/wpa_supplicant.conf' -> '/etc/wpa_supplicant/wpa_supplicant.conf'
Reading configuration file '/etc/wpa_supplicant/wpa_supplicant.conf'
country='de'
ctrl_interface='/var/run/wpa_supplicant GROUP=wheel'
update_config=1
ap_scan=1
Line: 19 - start of a new network block
scan_ssid=1 (0x1)
key_mgmt: 0x4
ssid - hexdump_ascii(len=7):
41 64 72 79 79 79 58 AdryyyX
Priority group 0
id=0 ssid='AdryyyX'
rfkill: Cannot get wiphy information
WEXT: RFKILL status not available
SIOCGIWRANGE: WE(compiled)=22 WE(source)=15 enc_capa=0xf
capabilities: key_mgmt 0xf enc 0x1f flags 0x0
ioctl[SIOCSIWESSID]: Bad address
WEXT: Failed to set bogus SSID to disconnect
WEXT: Driver: wlan_sdio
netlink: Operstate: ifindex=5 linkmode=1 (userspace-control), operstate=5 (IF_OPER_DORMANT)
Add interface mlan0 to a new radio N/A
mlan0: Own MAC address: d2:19:ce:70:8f:cc
wpa_driver_wext_set_key: alg=0 key_idx=0 set_tx=0 seq_len=0 key_len=0
wpa_driver_wext_set_key: alg=0 key_idx=1 set_tx=0 seq_len=0 key_len=0
wpa_driver_wext_set_key: alg=0 key_idx=2 set_tx=0 seq_len=0 key_len=0
wpa_driver_wext_set_key: alg=0 key_idx=3 set_tx=0 seq_len=0 key_len=0
wpa_driver_wext_set_countermeasures
mlan0: RSN: flushing PMKID list in the driver
mlan0: Setting scan request: 0.100000 sec
mlan0: WPS: UUID based on MAC address: 05200efc-e3a6-526d-b7cc-9205da47581d
ENGINE: Loading builtin engines
ENGINE: Loading builtin engines
EAPOL: SUPP_PAE entering state DISCONNECTED
EAPOL: Supplicant port status: Unauthorized
EAPOL: KEY_RX entering state NO_KEY_RECEIVE
EAPOL: SUPP_BE entering state INITIALIZE
EAP: EAP entering state DISABLED
mlan0: Added interface mlan0
mlan0: State: DISCONNECTED -> DISCONNECTED
wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT)
netlink: Operstate: ifindex=5 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
random: Got 20/20 bytes from /dev/random
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'mlan0' added
WEXT: if_removed already cleared - ignore event
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'mlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b06 len=8
Ignore event for foreign ifindex 6
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'mlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b06 len=8
mlan0: State: DISCONNECTED -> SCANNING
Scan SSID - hexdump_ascii(len=7):
41 64 72 79 79 79 58 AdryyyX
mlan0: Starting AP scan for wildcard SSID (Interleave with specific)
mlan0: Add radio work 'scan'@0xb6b6bde0
mlan0: First radio work item in the queue - schedule start immediately
mlan0: Starting radio work 'scan'@0xb6b6bde0 after 0.000214 second wait
Scan requested (ret=0) - scan timeout 10 seconds
EAPOL: disable timer tick
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'mlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b19 len=8
mlan0: Event SCAN_RESULTS (3) received
Received 3517 bytes of scan results (9 BSSes)
mlan0: BSS: Start scan result update 1
mlan0: BSS: Add new id 0 BSSID 98:da:c4:2f:d1:7d SSID 'XXXXXXXXXXXX ' freq 2427
mlan0: BSS: Add new id 1 BSSID XXXXXXXXXXXX SSID '' freq 2427
mlan0: BSS: Add new id 2 BSSID XXXXXXXXXXXX SSID 'XXXXXXXXXXXX ' freq 2457
mlan0: BSS: Add new id 3 BSSID XXXXXXXXXXXX SSID '' freq 2457
mlan0: BSS: Add new id 4 BSSID XXXXXXXXXXXX SSID 'XXXXXXXXXXXX ' freq 2427
mlan0: BSS: Add new id 5 BSSID XXXXXXXXXXXX SSID 'XXXXXXXXXXXX ' freq 2437
mlan0: BSS: Add new id 6 BSSID XXXXXXXXXXXX SSID 'XXXXXXXXXXXX -uXbY-2.4G' freq 2457
mlan0: BSS: Add new id 7 BSSIDXXXXXXXXXXXX SSID 'XXXXXXXXXXXX ' freq 2462
mlan0: BSS: Add new id 8 BSSID 2a:5f:d8:61:4a:24 SSID 'AdryyyX' freq 2462
BSS: last_scan_res_used=9/32
mlan0: New scan results available (own=0 ext=0)
WPS: AP 98:da:c4:2f:d1:7d type 0 added
WPS: AP 90:9a:4a:80:40:77 type 0 added
WPS: AP 84:94:8c:46:99:28 type 0 added
WPS: AP c8:d7:19:77:6d:d5 type 0 added
WPS: AP[0] 98:da:c4:2f:d1:7d type=0 tries=0 last_attempt=-1 sec ago blacklist=0
WPS: AP[1] 90:9a:4a:80:40:77 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
WPS: AP[2] 84:94:8c:46:99:28 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
WPS: AP[3] c8:d7:19:77:6d:d5 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mlan0: Radio work 'scan'@0xb6b6bde0 done in 4.645691 seconds
mlan0: radio_work_free('scan'@0xb6b6bde0): num_active_works --> 0
mlan0: Selecting BSS from priority group 0
XXXXXXXXXXXX
XXXXXXXXXXXX
mlan0: skip - SSID mismatch
mlan0: 8: 2a:5f:d8:61:4a:24 ssid='AdryyyX' wpa_ie_len=0 rsn_ie_len=0 caps=0x1 level=-36 freq=2462
mlan0: allow in non-WPA/WPA2
mlan0: selected BSS 2a:5f:d8:61:4a:24 ssid='AdryyyX'
mlan0: Considering connect request: reassociate: 0 selected: 2a:5f:d8:61:4a:24 bssid: 00:00:00:00:00:00 pending: 00:00:00:00:00:00 wpa_state: SCANNING ssid=0xb6bb6980 current_ssid=0
mlan0: Request association with 2a:5f:d8:61:4a:24
mlan0: No ongoing scan/p2p-scan found to abort
mlan0: Add radio work 'connect'@0xb6b6bde0
mlan0: First radio work item in the queue - schedule start immediately
mlan0: Starting radio work 'connect'@0xb6b6bde0 after 0.000061 second wait
mlan0: Trying to associate with 2a:5f:d8:61:4a:24 (SSID='AdryyyX' freq=2462 MHz)
mlan0: Cancelling scan request
mlan0: WPA: clearing own WPA/RSN IE
mlan0: WPA: clearing AP WPA IE
mlan0: WPA: clearing AP RSN IE
mlan0: WPA: clearing own WPA/RSN IE
mlan0: Automatic auth_alg selection: 0x1
Failed to add supported operating classes IE
mlan0: State: SCANNING -> ASSOCIATING
wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT)
netlink: Operstate: ifindex=5 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
Limit connection to BSSID 2a:5f:d8:61:4a:24 freq=2462 MHz based on scan results (bssid_set=0 wps=0)
mlan0: Determining shared radio frequencies (max len 1)
mlan0: Shared frequencies (len=0): completed iteration
wpa_driver_wext_associate
wpa_driver_wext_set_drop_unencrypted
wpa_driver_wext_set_psk
mlan0: Setting authentication timeout: 10 sec 0 usec
EAPOL: External notification - EAP success=0
EAPOL: External notification - EAP fail=0
EAPOL: External notification - portControl=ForceAuthorized
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'mlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b06 len=8
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'mlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b04 len=12
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'mlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b15 len=20
Wireless event: new AP: 2a:5f:d8:61:4a:24
mlan0: Event ASSOC (0) received
mlan0: State: ASSOCIATING -> ASSOCIATED
wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT)
netlink: Operstate: ifindex=5 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
mlan0: Associated to a new BSS: BSSID=2a:5f:d8:61:4a:24
mlan0: Associated with 2a:5f:d8:61:4a:24
mlan0: WPA: Association event - clear replay counter
mlan0: WPA: Clear old PTK
EAPOL: External notification - portEnabled=0
EAPOL: External notification - portValid=0
EAPOL: External notification - portEnabled=1
EAPOL: SUPP_PAE entering state S_FORCE_AUTH
EAPOL: Supplicant port status: Authorized
EAPOL: SUPP_BE entering state IDLE
mlan0: Cancelling authentication timeout
mlan0: State: ASSOCIATED -> COMPLETED
mlan0: Radio work 'connect'@0xb6b6bde0 done in 0.065186 seconds
mlan0: radio_work_free('connect'@0xb6b6bde0): num_active_works --> 0
mlan0: CTRL-EVENT-CONNECTED - Connection to 2a:5f:d8:61:4a:24 completed [id=0 id_str=]
wpa_driver_wext_set_operstate: operstate 0->1 (UP)
netlink: Operstate: ifindex=5 linkmode=-1 (no change), operstate=6 (IF_OPER_UP)
mlan0: Cancelling scan request
RTM_NEWLINK: operstate=1 ifi_flags=0x11003 ([UP][LOWER_UP])
netlink: Operstate: ifindex=5 linkmode=-1 (no change), operstate=6 (IF_OPER_UP)
RTM_NEWLINK, IFLA_IFNAME: Interface 'mlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8c02 len=37
WEXT: Custom wireless event: 'WMM_CONFIG_CHANGE.indication'
RTM_NEWLINK: operstate=1 ifi_flags=0x11003 ([UP][LOWER_UP])
netlink: Operstate: ifindex=5 linkmode=-1 (no change), operstate=6 (IF_OPER_UP)
RTM_NEWLINK, IFLA_IFNAME: Interface 'mlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b1a len=15
RTM_NEWLINK: operstate=1 ifi_flags=0x11003 ([UP][LOWER_UP])
netlink: Operstate: ifindex=5 linkmode=-1 (no change), operstate=6 (IF_OPER_UP)
RTM_NEWLINK, IFLA_IFNAME: Interface 'mlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8c02 len=27
WEXT: Custom wireless event: 'EVENT=PORT_RELEASE'
RTM_NEWLINK: operstate=1 ifi_flags=0x11003 ([UP][LOWER_UP])
netlink: Operstate: ifindex=5 linkmode=-1 (no change), operstate=6 (IF_OPER_UP)
RTM_NEWLINK, IFLA_IFNAME: Interface 'mlan0' added
WEXT: if_removed already cleared - ignore event
RTM_NEWLINK: operstate=1 ifi_flags=0x11043 ([UP][RUNNING][LOWER_UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'mlan0' added
WEXT: if_removed already cleared - ignore event
RTM_NEWLINK: operstate=1 ifi_flags=0x11003 ([UP][LOWER_UP])
netlink: Operstate: ifindex=5 linkmode=-1 (no change), operstate=6 (IF_OPER_UP)
RTM_NEWLINK, IFLA_IFNAME: Interface 'mlan0' added
WEXT: if_removed already cleared - ignore event
RTM_NEWLINK: operstate=1 ifi_flags=0x11043 ([UP][RUNNING][LOWER_UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'mlan0' added
WEXT: if_removed already cleared - ignore event
RTM_NEWLINK: operstate=1 ifi_flags=0x1043 ([UP][RUNNING])
RTM_NEWLINK, IFLA_IFNAME: Interface 'mlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b15 len=20
Wireless event: new AP: 00:00:00:00:00:00
mlan0: Event DISASSOC (1) received
mlan0: Disassociation notification
mlan0: CTRL-EVENT-DISCONNECTED bssid=2a:5f:d8:61:4a:24 reason=0
mlan0: Auto connect enabled: try to reconnect (wps=0/0 wpa_state=9)
mlan0: Setting scan request: 0.100000 sec
Added BSSID 2a:5f:d8:61:4a:24 into blacklist
mlan0: Blacklist count 1 --> request scan in 100 ms
mlan0: Ignore new scan request for 0.100000 sec since an earlier request is scheduled to trigger sooner
mlan0: WPA: Clear old PMK and PTK
mlan0: State: COMPLETED -> DISCONNECTED
wpa_driver_wext_set_operstate: operstate 1->0 (DORMANT)
netlink: Operstate: ifindex=5 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
EAPOL: External notification - portEnabled=0
EAPOL: SUPP_PAE entering state DISCONNECTED
EAPOL: Supplicant port status: Unauthorized
EAPOL: SUPP_BE entering state INITIALIZE
EAPOL: External notification - portValid=0
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'mlan0' added
WEXT: if_removed already cleared - ignore event
mlan0: State: DISCONNECTED -> SCANNING
Scan SSID - hexdump_ascii(len=7):
41 64 72 79 79 79 58 AdryyyX
mlan0: Starting AP scan for specific SSID: AdryyyX
mlan0: Add radio work 'scan'@0xb6b6bde0
mlan0: First radio work item in the queue - schedule start immediately
mlan0: Starting radio work 'scan'@0xb6b6bde0 after 0.000061 second wait
Scan requested (ret=0) - scan timeout 30 seconds
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'mlan0' added
WEXT: if_removed already cleared - ignore event
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'mlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b19 len=8
mlan0: Event SCAN_RESULTS (3) received
Received 3517 bytes of scan results (9 BSSes)
mlan0: BSS: Start scan result update 2
BSS: last_scan_res_used=9/32
mlan0: New scan results available (own=0 ext=0)
WPS: AP[0] 98:da:c4:2f:d1:7d type=0 tries=0 last_attempt=-1 sec ago blacklist=0
WPS: AP[1] 90:9a:4a:80:40:77 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
WPS: AP[2] 84:94:8c:46:99:28 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
WPS: AP[3] c8:d7:19:77:6d:d5 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mlan0: Radio work 'scan'@0xb6b6bde0 done in 2.565979 seconds
mlan0: radio_work_free('scan'@0xb6b6bde0): num_active_works --> 0
mlan0: Selecting BSS from priority group 0
XXXXXXXXXXXX
XXXXXXXXXXXX wps
mlan0: skip - SSID mismatch
mlan0: 8: 2a:5f:d8:61:4a:24 ssid='AdryyyX' wpa_ie_len=0 rsn_ie_len=0 caps=0x1 level=-36 freq=2462
mlan0: skip - blacklisted (count=1 limit=0)
mlan0: No APs found - clear blacklist and try again
Removed BSSID 2a:5f:d8:61:4a:24 from blacklist (clear)
mlan0: Selecting BSS from priority group 0
XXXXXXXXXXXX
XXXXXXXXXXXX
mlan0: skip - SSID mismatch
mlan0: 8: 2a:5f:d8:61:4a:24 ssid='AdryyyX' wpa_ie_len=0 rsn_ie_len=0 caps=0x1 level=-36 freq=2462
mlan0: allow in non-WPA/WPA2
mlan0: selected BSS 2a:5f:d8:61:4a:24 ssid='AdryyyX'
mlan0: Considering connect request: reassociate: 0 selected: 2a:5f:d8:61:4a:24 bssid: 00:00:00:00:00:00 pending: 00:00:00:00:00:00 wpa_state: SCANNING ssid=0xb6bb6980 current_ssid=0
mlan0: Request association with 2a:5f:d8:61:4a:24
mlan0: Re-association to the same ESS
mlan0: No ongoing scan/p2p-scan found to abort
mlan0: Add radio work 'connect'@0xb6b6bde0
mlan0: First radio work item in the queue - schedule start immediately
mlan0: Starting radio work 'connect'@0xb6b6bde0 after 0.000061 second wait
mlan0: Trying to associate with 2a:5f:d8:61:4a:24 (SSID='AdryyyX' freq=2462 MHz)
mlan0: Cancelling scan request
mlan0: WPA: clearing own WPA/RSN IE
mlan0: WPA: clearing AP WPA IE
mlan0: WPA: clearing AP RSN IE
mlan0: WPA: clearing own WPA/RSN IE
mlan0: Automatic auth_alg selection: 0x1
Failed to add supported operating classes IE
mlan0: State: SCANNING -> ASSOCIATING
wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT)
netlink: Operstate: ifindex=5 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
Limit connection to BSSID 2a:5f:d8:61:4a:24 freq=2462 MHz based on scan results (bssid_set=0 wps=0)
mlan0: Determining shared radio frequencies (max len 1)
mlan0: Shared frequencies (len=0): completed iteration
wpa_driver_wext_associate
wpa_driver_wext_set_drop_unencrypted
wpa_driver_wext_set_psk
mlan0: Setting authentication timeout: 10 sec 0 usec
EAPOL: External notification - EAP success=0
EAPOL: External notification - EAP fail=0
EAPOL: External notification - portControl=ForceAuthorized
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'mlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b06 len=8
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'mlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b04 len=12
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'mlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b15 len=20
Wireless event: new AP: 2a:5f:d8:61:4a:24
mlan0: Event ASSOC (0) received
mlan0: State: ASSOCIATING -> ASSOCIATED
wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT)
netlink: Operstate: ifindex=5 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
mlan0: Associated with 00:00:00:00:00:00
mlan0: WPA: Association event - clear replay counter
mlan0: WPA: Clear old PTK
EAPOL: External notification - portEnabled=0
EAPOL: External notification - portValid=0
EAPOL: External notification - portEnabled=1
EAPOL: SUPP_PAE entering state S_FORCE_AUTH
EAPOL: Supplicant port status: Authorized
EAPOL: SUPP_BE entering state IDLE
mlan0: Cancelling authentication timeout
mlan0: State: ASSOCIATED -> COMPLETED
mlan0: Radio work 'connect'@0xb6b6bde0 done in 1.404633 seconds
mlan0: radio_work_free('connect'@0xb6b6bde0): num_active_works --> 0
mlan0: CTRL-EVENT-CONNECTED - Connection to 00:00:00:00:00:00 completed [id=0 id_str=]
wpa_driver_wext_set_operstate: operstate 0->1 (UP)
netlink: Operstate: ifindex=5 linkmode=-1 (no change), operstate=6 (IF_OPER_UP)
mlan0: Cancelling scan request
RTM_NEWLINK: operstate=1 ifi_flags=0x11003 ([UP][LOWER_UP])
netlink: Operstate: ifindex=5 linkmode=-1 (no change), operstate=6 (IF_OPER_UP)
RTM_NEWLINK, IFLA_IFNAME: Interface 'mlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8c02 len=37
WEXT: Custom wireless event: 'WMM_CONFIG_CHANGE.indication'
RTM_NEWLINK: operstate=1 ifi_flags=0x11003 ([UP][LOWER_UP])
netlink: Operstate: ifindex=5 linkmode=-1 (no change), operstate=6 (IF_OPER_UP)
RTM_NEWLINK, IFLA_IFNAME: Interface 'mlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b1a len=15
RTM_NEWLINK: operstate=1 ifi_flags=0x11003 ([UP][LOWER_UP])
netlink: Operstate: ifindex=5 linkmode=-1 (no change), operstate=6 (IF_OPER_UP)
RTM_NEWLINK, IFLA_IFNAME: Interface 'mlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8c02 len=27
WEXT: Custom wireless event: 'EVENT=PORT_RELEASE'
RTM_NEWLINK: operstate=1 ifi_flags=0x11003 ([UP][LOWER_UP])
netlink: Operstate: ifindex=5 linkmode=-1 (no change), operstate=6 (IF_OPER_UP)
RTM_NEWLINK, IFLA_IFNAME: Interface 'mlan0' added
WEXT: if_removed already cleared - ignore event
RTM_NEWLINK: operstate=1 ifi_flags=0x1043 ([UP][RUNNING])
RTM_NEWLINK, IFLA_IFNAME: Interface 'mlan0' added
WEXT: if_removed already cleared - ignore event
RTM_NEWLINK: operstate=1 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'mlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b15 len=20
Wireless event: new AP: 00:00:00:00:00:00
mlan0: Event DISASSOC (1) received
mlan0: Disassociation notification
mlan0: CTRL-EVENT-DISCONNECTED bssid=2a:5f:d8:61:4a:24 reason=0
mlan0: Auto connect enabled: try to reconnect (wps=0/0 wpa_state=9)
mlan0: Setting scan request: 0.100000 sec
Added BSSID 2a:5f:d8:61:4a:24 into blacklist
mlan0: Blacklist count 1 --> request scan in 100 ms
mlan0: Ignore new scan request for 0.100000 sec since an earlier request is scheduled to trigger sooner
mlan0: WPA: Clear old PMK and PTK
mlan0: State: COMPLETED -> DISCONNECTED
wpa_driver_wext_set_operstate: operstate 1->0 (DORMANT)
netlink: Operstate: ifindex=5 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
EAPOL: External notification - portEnabled=0
EAPOL: SUPP_PAE entering state DISCONNECTED
EAPOL: Supplicant port status: Unauthorized
EAPOL: SUPP_BE entering state INITIALIZE
EAPOL: External notification - portValid=0
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'mlan0' added
WEXT: if_removed already cleared - ignore event
mlan0: State: DISCONNECTED -> SCANNING
mlan0: Starting AP scan for wildcard SSID
mlan0: Add radio work 'scan'@0xb6b6bde0
mlan0: First radio work item in the queue - schedule start immediately
mlan0: Starting radio work 'scan'@0xb6b6bde0 after 0.000061 second wait
Scan requested (ret=0) - scan timeout 30 seconds
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'mlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b19 len=8
mlan0: Event SCAN_RESULTS (3) received
Received 3517 bytes of scan results (9 BSSes)
mlan0: BSS: Start scan result update 3
BSS: last_scan_res_used=9/32
mlan0: New scan results available (own=0 ext=0)
WPS: AP[0] 98:da:c4:2f:d1:7d type=0 tries=0 last_attempt=-1 sec ago blacklist=0
WPS: AP[1] 90:9a:4a:80:40:77 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
WPS: AP[2] 84:94:8c:46:99:28 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
WPS: AP[3] c8:d7:19:77:6d:d5 type=0 tries=0 last_attempt=-1 sec ago blacklist=0
mlan0: Radio work 'scan'@0xb6b6bde0 done in 2.268708 seconds
mlan0: radio_work_free('scan'@0xb6b6bde0): num_active_works --> 0
mlan0: Selecting BSS from priority group 0
XXXXXXXXXXXX
XXXXXXXXXXXX
mlan0: skip - SSID mismatch
mlan0: 8: 2a:5f:d8:61:4a:24 ssid='AdryyyX' wpa_ie_len=0 rsn_ie_len=0 caps=0x1 level=-35 freq=2462
mlan0: skip - blacklisted (count=1 limit=0)
mlan0: No APs found - clear blacklist and try again
Removed BSSID 2a:5f:d8:61:4a:24 from blacklist (clear)
mlan0: Selecting BSS from priority group 0
mlan0: 0: XXXXXXXXXXXX ssid='XXXXXXXXXXXX ' wpa_ie_len=26 rsn_ie_len=24 caps=0x11 level=-28 freq=2427 wps
mlan0: skip - SSID mismatch
mlan0: 1: XXXXXXXXXXXX ssid='' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-29 freq=2427
mlan0: skip - SSID not known
mlan0: 2: XXXXXXXXXXXX ssid='XXXXXXXXXXXX ' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-62 freq=2457 wps
mlan0: skip - SSID mismatch
mlan0: 3: XXXXXXXXXXXX ssid='' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-64 freq=2457
mlan0: skip - SSID not known
mlan0: 4: XXXXXXXXXXXX ssid='XXXXXXXXXXXX ' wpa_ie_len=26 rsn_ie_len=24 caps=0x11 level=-71 freq=2427
mlan0: skip - SSID mismatch
mlan0: 5: XXXXXXXXXXXX ssid='XXXXXXXXXXXX ' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-85 freq=2437 wps
mlan0: skip - SSID mismatch
mlan0: 6: XXXXXXXXXXXX ssid='XXXXXXXXXXXX -uXbY-2.4G' wpa_ie_len=0 rsn_ie_len=20 caps=0x11 level=-90 freq=2457
mlan0: skip - SSID mismatch
mlan0: 7: XXXXXXXXXXXX ssid='XXXXXXXXXXXX ' wpa_ie_len=28 rsn_ie_len=24 caps=0x11 level=-91 freq=2462 wps
mlan0: skip - SSID mismatch
mlan0: 8: 2a:5f:d8:61:4a:24 ssid='AdryyyX' wpa_ie_len=0 rsn_ie_len=0 caps=0x1 level=-35 freq=2462
mlan0: allow in non-WPA/WPA2
mlan0: selected BSS 2a:5f:d8:61:4a:24 ssid='AdryyyX'
mlan0: Considering connect request: reassociate: 0 selected: 2a:5f:d8:61:4a:24 bssid: 00:00:00:00:00:00 pending: 00:00:00:00:00:00 wpa_state: SCANNING ssid=0xb6bb6980 current_ssid=0
mlan0: Request association with 2a:5f:d8:61:4a:24
mlan0: Re-association to the same ESS
mlan0: No ongoing scan/p2p-scan found to abort
mlan0: Add radio work 'connect'@0xb6b6bde0
mlan0: First radio work item in the queue - schedule start immediately
mlan0: Starting radio work 'connect'@0xb6b6bde0 after 0.000061 second wait
mlan0: Trying to associate with 2a:5f:d8:61:4a:24 (SSID='AdryyyX' freq=2462 MHz)
mlan0: Cancelling scan request
mlan0: WPA: clearing own WPA/RSN IE
mlan0: WPA: clearing AP WPA IE
mlan0: WPA: clearing AP RSN IE
mlan0: WPA: clearing own WPA/RSN IE
mlan0: Automatic auth_alg selection: 0x1
Failed to add supported operating classes IE
mlan0: State: SCANNING -> ASSOCIATING
wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT)
netlink: Operstate: ifindex=5 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
Limit connection to BSSID 2a:5f:d8:61:4a:24 freq=2462 MHz based on scan results (bssid_set=0 wps=0)
mlan0: Determining shared radio frequencies (max len 1)
mlan0: Shared frequencies (len=0): completed iteration
wpa_driver_wext_associate
wpa_driver_wext_set_drop_unencrypted
wpa_driver_wext_set_psk
mlan0: Setting authentication timeout: 10 sec 0 usec
EAPOL: External notification - EAP success=0
EAPOL: External notification - EAP fail=0
EAPOL: External notification - portControl=ForceAuthorized
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'mlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b06 len=8
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'mlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b04 len=12
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'mlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b15 len=20
Wireless event: new AP: 2a:5f:d8:61:4a:24
mlan0: Event ASSOC (0) received
mlan0: State: ASSOCIATING -> ASSOCIATED
wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT)
netlink: Operstate: ifindex=5 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
mlan0: Associated to a new BSS: BSSID=2a:5f:d8:61:4a:24
mlan0: Associated with 2a:5f:d8:61:4a:24
mlan0: WPA: Association event - clear replay counter
mlan0: WPA: Clear old PTK
EAPOL: External notification - portEnabled=0
EAPOL: External notification - portValid=0
EAPOL: External notification - portEnabled=1
EAPOL: SUPP_PAE entering state S_FORCE_AUTH
EAPOL: Supplicant port status: Authorized
EAPOL: SUPP_BE entering state IDLE
mlan0: Cancelling authentication timeout
mlan0: State: ASSOCIATED -> COMPLETED
mlan0: Radio work 'connect'@0xb6b6bde0 done in 1.379241 seconds
mlan0: radio_work_free('connect'@0xb6b6bde0): num_active_works --> 0
mlan0: CTRL-EVENT-CONNECTED - Connection to 2a:5f:d8:61:4a:24 completed [id=0 id_str=]
wpa_driver_wext_set_operstate: operstate 0->1 (UP)
netlink: Operstate: ifindex=5 linkmode=-1 (no change), operstate=6 (IF_OPER_UP)
mlan0: Cancelling scan request
RTM_NEWLINK: operstate=1 ifi_flags=0x11003 ([UP][LOWER_UP])
netlink: Operstate: ifindex=5 linkmode=-1 (no change), operstate=6 (IF_OPER_UP)
RTM_NEWLINK, IFLA_IFNAME: Interface 'mlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8c02 len=37
WEXT: Custom wireless event: 'WMM_CONFIG_CHANGE.indication'
RTM_NEWLINK: operstate=1 ifi_flags=0x11003 ([UP][LOWER_UP])
netlink: Operstate: ifindex=5 linkmode=-1 (no change), operstate=6 (IF_OPER_UP)
RTM_NEWLINK, IFLA_IFNAME: Interface 'mlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b1a len=15
RTM_NEWLINK: operstate=1 ifi_flags=0x11003 ([UP][LOWER_UP])
netlink: Operstate: ifindex=5 linkmode=-1 (no change), operstate=6 (IF_OPER_UP)
RTM_NEWLINK, IFLA_IFNAME: Interface 'mlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8c02 len=27
WEXT: Custom wireless event: 'EVENT=PORT_RELEASE'
Ignore event for foreign ifindex 7
RTM_NEWLINK: operstate=1 ifi_flags=0x11003 ([UP][LOWER_UP])
netlink: Operstate: ifindex=5 linkmode=-1 (no change), operstate=6 (IF_OPER_UP)
RTM_NEWLINK, IFLA_IFNAME: Interface 'mlan0' added
WEXT: if_removed already cleared - ignore event
Ignore event for foreign ifindex 7
RTM_NEWLINK: operstate=1 ifi_flags=0x11043 ([UP][RUNNING][LOWER_UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'mlan0' added
WEXT: if_removed already cleared - ignore event
RTM_NEWLINK: operstate=1 ifi_flags=0x11003 ([UP][LOWER_UP])
netlink: Operstate: ifindex=5 linkmode=-1 (no change), operstate=6 (IF_OPER_UP)
RTM_NEWLINK, IFLA_IFNAME: Interface 'mlan0' added
WEXT: if_removed already cleared - ignore event
RTM_NEWLINK: operstate=1 ifi_flags=0x11043 ([UP][RUNNING][LOWER_UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'mlan0' added
WEXT: if_removed already cleared - ignore event
RTM_NEWLINK: operstate=1 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'mlan0' added
WEXT: if_removed already cleared - ignore event
RTM_NEWLINK: operstate=1 ifi_flags=0x1043 ([UP][RUNNING])
RTM_NEWLINK, IFLA_IFNAME: Interface 'mlan0' added
WEXT: if_removed already cleared - ignore event
Wireless event: cmd=0x8b15 len=20
Wireless event: new AP: 00:00:00:00:00:00
mlan0: Event DISASSOC (1) received
mlan0: Disassociation notification
mlan0: CTRL-EVENT-DISCONNECTED bssid=2a:5f:d8:61:4a:24 reason=0
mlan0: Auto connect enabled: try to reconnect (wps=0/0 wpa_state=9)
mlan0: Setting scan request: 0.100000 sec
Added BSSID 2a:5f:d8:61:4a:24 into blacklist
mlan0: Blacklist count 1 --> request scan in 100 ms
mlan0: Ignore new scan request for 0.100000 sec since an earlier request is scheduled to trigger sooner
mlan0: WPA: Clear old PMK and PTK
mlan0: State: COMPLETED -> DISCONNECTED
wpa_driver_wext_set_operstate: operstate 1->0 (DORMANT)
netlink: Operstate: ifindex=5 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
EAPOL: External notification - portEnabled=0
EAPOL: SUPP_PAE entering state DISCONNECTED
EAPOL: Supplicant port status: Unauthorized
EAPOL: SUPP_BE entering state INITIALIZE
EAPOL: External notification - portValid=0
RTM_NEWLINK: operstate=0 ifi_flags=0x1003 ([UP])
RTM_NEWLINK, IFLA_IFNAME: Interface 'mlan0' added
WEXT: if_removed already cleared - ignore event
mlan0: State: DISCONNECTED -> SCANNING
Scan SSID - hexdump_ascii(len=7):
41 64 72 79 79 79 58 AdryyyX
mlan0: Starting AP scan for wildcard SSID (Interleave with specific)
mlan0: Add radio work 'scan'@0xb6b6bf60
mlan0: First radio work item in the queue - schedule start immediately
mlan0: Starting radio work 'scan'@0xb6b6bf60 after 0.000030 second wait
Scan requested (ret=0) - scan timeout 30 seconds
Ignore event for foreign ifindex 7
Ignore event for foreign ifindex 7
Ignore event for foreign ifindex 7
^Cmlan0: Removing interface mlan0
mlan0: Request to deauthenticate - bssid=00:00:00:00:00:00 pending_bssid=00:00:00:00:00:00 reason=3 (DEAUTH_LEAVING) state=SCANNING
mlan0: State: SCANNING -> DISCONNECTED
wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT)
netlink: Operstate: ifindex=5 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
EAPOL: External notification - portEnabled=0
EAPOL: External notification - portValid=0
wpa_driver_wext_set_countermeasures
mlan0: WPA: Clear old PMK and PTK
Removed BSSID 2a:5f:d8:61:4a:24 from blacklist (clear)
mlan0: BSS: Remove id 0 BSSID XXXXXXXXXXXX 'XXXXXXXXXXXX ' due to wpa_bss_flush
mlan0: BSS: Remove id 1 BSSID XXXXXXXXXXXX SSID '' due to wpa_bss_flush
mlan0: BSS: Remove id 2 BSSID XXXXXXXXXXXX SSID 'XXXXXXXXXXXX ' due to wpa_bss_flush
mlan0: BSS: Remove id 3 BSSID XXXXXXXXXXXX SSID '' due to wpa_bss_flush
mlan0: BSS: Remove id 4 BSSID XXXXXXXXXXXX SSID 'XXXXXXXXXXXX ' due to wpa_bss_flush
mlan0: BSS: Remove id 5 BSSID XXXXXXXXXXXX SSID 'XXXXXXXXXXXX ' due to wpa_bss_flush
mlan0: BSS: Remove id 6 BSSID XXXXXXXXXXXX SSID 'XXXXXXXXXXXX -uXbY-2.4G' due to wpa_bss_flush
mlan0: BSS: Remove id 7 BSSID XXXXXXXXXXXX SSID 'XXXXXXXXXXXX ' due to wpa_bss_flush
mlan0: BSS: Remove id 8 BSSID XXXXXXXXXXXX SSID 'AdryyyX' due to wpa_bss_flush
mlan0: Cancelling scan request
mlan0: Cancelling authentication timeout
Off-channel: Clear pending Action frame TX (pending_action_tx=0
Remove interface mlan0 from radio
mlan0: Remove radio work 'scan'@0xb6b6bf60 (started)
mlan0: radio_work_free('scan'@0xb6b6bf60): num_active_works --> 0
Remove radio
ioctl[SIOCSIWESSID]: Bad address
WEXT: Failed to set bogus SSID to disconnect
netlink: Operstate: ifindex=5 linkmode=0 (kernel-control), operstate=6 (IF_OPER_UP)
mlan0: CTRL-EVENT-TERMINATING
############### ATTEMPT ######################
samsung-goyawifi:~$ sudo killall wpa_supplicant && sudo wpa_supplicant -c /etc/wpa_supplicant/wpa_supplicant.conf -i mlan0 -dd
wpa_supplicant v2.9
random: Trying to read entropy from /dev/random
Successfully initialized wpa_supplicant
Initializing interface 'mlan0' conf '/etc/wpa_supplicant/wpa_supplicant.conf' driver 'default' ctrl_interface 'N/A' bridge 'N/A'
Configuration file '/etc/wpa_supplicant/wpa_supplicant.conf' -> '/etc/wpa_supplicant/wpa_supplicant.conf'
Reading configuration file '/etc/wpa_supplicant/wpa_supplicant.conf'
country='de'
ctrl_interface='/var/run/wpa_supplicant GROUP=wheel'
update_config=1
ap_scan=1
Line: 19 - start of a new network block
scan_ssid=1 (0x1)
key_mgmt: 0x4
ssid - hexdump_ascii(len=7):
41 64 72 79 79 79 58 AdryyyX
Priority group 0
id=0 ssid='AdryyyX'
nl80211: Could not add multicast membership for vendor events: -2 (No such file or directory)
nl80211: deinit ifname=mlan0 disabled_11b_rates=0
nl80211: Remove monitor interface: refcount=0
netlink: Operstate: ifindex=5 linkmode=0 (kernel-control), operstate=6 (IF_OPER_UP)
nl80211: Set mode ifindex 5 iftype 2 (STATION)
nl80211: Failed to set interface 5 to mode 2: -19 (No such device)
mlan0: Failed to initialize driver interface
Failed to add interface mlan0
mlan0: Cancelling scan request
mlan0: Cancelling authentication timeout
Off-channel: Clear pending Action frame TX (pending_action_tx=0

Here's Firefox and Youtube running (without audio).
ADS loads faster and looks better as always ...
Video:
https://imgur.com/a/wQZkKvt
Speedtest: about 45mbps down / 30 up. The network handle up to 500 and my phone reach these speeds.

That's amazing to hear!! Does HW rendering work or is it just software rendering like the CM port?

TriDiscord said:
That's amazing to hear!! Does HW rendering work or is it just software rendering like the CM port?
Click to expand...
Click to collapse
Didn't tested yet, but I think there is some hardware acceleration as Youtube videos looks like it runs on 60p.
Galcore seems to load correctly after boot.
Spoiler: Galcore output
Code:
samsung-goyawifi:/etc/X11$ lsmod
Module Size Used by
galcore 291259 0
sd8xxx 323247 3
mlan 260239 1 sd8xxx
samsung-goyawifi:/etc/X11$ modinfo galcore
filename: /lib/modules/3.4.5/galcore.ko
license: GPL
description: Vivante Graphics Driver
depends:
intree: Y
vermagic: 3.4.5 SMP preempt mod_unload modversions ARMv7
parm: major:uint
parm: irqLine:int
parm: registerMemBase:ulong
parm: registerMemSize:ulong
parm: irqLine2D:int
parm: registerMemBase2D:ulong
parm: registerMemSize2D:ulong
parm: irqLineVG:int
parm: registerMemBaseVG:ulong
parm: registerMemSizeVG:ulong
parm: contiguousSize:ulong
parm: contiguousBase:ulong
parm: pmemSize:long
parm: bankSize:ulong
parm: fastClear:int
parm: compression:int
parm: signal:int
parm: baseAddress:ulong
parm: mmuBaseAddress:ulong
parm: physSize:ulong
parm: logFileSize:uint
parm: showArgs:int
parm: coreClock:ulong

adryyy said:
Didn't tested yet, but I think there is some hardware acceleration as Youtube videos looks like it runs on 60p.
Galcore seems to load correctly after boot.
Spoiler: Galcore output
Code:
samsung-goyawifi:/etc/X11$ lsmod
Module Size Used by
galcore 291259 0
sd8xxx 323247 3
mlan 260239 1 sd8xxx
samsung-goyawifi:/etc/X11$ modinfo galcore
filename: /lib/modules/3.4.5/galcore.ko
license: GPL
description: Vivante Graphics Driver
depends:
intree: Y
vermagic: 3.4.5 SMP preempt mod_unload modversions ARMv7
parm: major:uint
parm: irqLine:int
parm: registerMemBase:ulong
parm: registerMemSize:ulong
parm: irqLine2D:int
parm: registerMemBase2D:ulong
parm: registerMemSize2D:ulong
parm: irqLineVG:int
parm: registerMemBaseVG:ulong
parm: registerMemSizeVG:ulong
parm: contiguousSize:ulong
parm: contiguousBase:ulong
parm: pmemSize:long
parm: bankSize:ulong
parm: fastClear:int
parm: compression:int
parm: signal:int
parm: baseAddress:ulong
parm: mmuBaseAddress:ulong
parm: physSize:ulong
parm: logFileSize:uint
parm: showArgs:int
parm: coreClock:ulong
Click to expand...
Click to collapse
That's great to hear! What else doesn't work?

Hey, do you happen to have the sd8xxx.ko file?

Audio is not working yet.
Install using TWRP zip.
Spoiler: Deprecated SDCard backup
Here's backup of my SDCard content.
You will need a Linux distro * to write it to your own SDCard, and a SDCard to insert into tablet, of course.
Use it with boot-postmarketOS_s1_n17.zip (added in OP) and it should work with n14 also, but n17 boots the OS directly without the telnet prompt, so you will can connect tablet to WiFi and connect with SSH directly, through WiFi or USB.
* You can also use VirtualBox like described all over thread, and don't forget to select your card reader.
You should partition SDCard according to the photo. You can use GParted to do this. pmOS_root can be bigger than this, it's not mandatory to be 6.98 GB.
Download the tar.gz archives into the Linux and then untar them to the newly created partitions.
Mirror:
Downloads for : -Android- Generic Device/Other | AndroidFileHost.com | Download GApps, Roms, Kernels, Themes, Firmware and more. Free file hosting for all Android developers.
Download GApps, Roms, Kernels, Themes, Firmware, and more. Free file hosting for all Android developers.
androidfilehost.com
Password for q is q
Spoiler: How to make SDCard with pmOS
Code:
# Using Linux Terminal
# Find SDCard letter with lsblk
# Format SDCard
sudo parted -s /dev/sdb mktable msdos mkpart primary ext2 2048s 256M mkpart primary 256M 100% set 1 boot on
sudo mkfs.ext2 /dev/sdb1
sudo mkfs.ext4 -O ^has_journal /dev/sdb2
## Remove journal (skip)
## sudo tune2fs -O ^has_journal /dev/sdb1
## sudo tune2fs -O ^has_journal /dev/sdb2
# Label
sudo e2label /dev/sdb1 pmOS_boot
sudo e2label /dev/sdb2 pmOS_root
# mount the partitions
sudo mkdir /media/pmos_boot
sudo mkdir /media/pmos_root
# check partitions paths on GParted or lsblk command
sudo mount /dev/sdb1 /media/pmos_boot
sudo mount /dev/sdb2 /media/pmos_root
# assuming you got tar.gz archives in user home directory (e.g. osboxes)
cd ~/
# check if your tar.gz are in home with ls
ls
# untar them to the SDCard
cd /media/pmos_boot
sudo tar xpvzf ~/pmos_boot.tar.gz
cd /media/pmos_root
sudo tar xpvzf ~/pmos_root.tar.gz
Spoiler: Partition layout
Code:
sudo fdisk -l
Disk /dev/sdb: 14.84 GiB, 15931539456 bytes, 31116288 sectors
Disk model: Storage Device
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0xb63de8b9
Device Boot Start End Sectors Size Id Type
/dev/sdb1 * 2048 499711 497664 243M 83 Linux
/dev/sdb2 499712 31115263 30615552 14.6G 83 Linux

TriDiscord said:
That's great to hear! What else doesn't work?
Click to expand...
Click to collapse
Here are some files which can help you to debug audio, if you want to try.
Debugging
piCloud
dopo.go.ro

Can you try pushing /system/etc/asound.conf from stock ROM to /etc/asound.conf?

TriDiscord said:
Can you try pushing /system/etc/asound.conf from stock ROM to /etc/asound.conf?
Click to expand...
Click to collapse
Yes. I've tried a lot of things. You can see in debugging folder pmos_console_audio_history.txt.
I manage to get some low volume noise running from file from stock ROM /system/bin/open_aud_path_fm_speaker.sh using /system/bin/amixer from mounted stock ROM to the pmOS, so I think we could manage to make audio to work somehow, but sadly it uses /system/usr/lib/alsa-lib/libasound_module_ctl_codec.so from stock ROM which is property and can't get it to work on pmOS standalone, because it uses Android binders and functions and works only if I use the stock amixer.
Did you manage to load the OS to SDCard and boot it?

adryyy said:
Yes. I've tried a lot of things. You can see in debugging folder pmos_console_audio_history.txt.
I manage to get some low volume noise running from file from stock ROM /system/bin/open_aud_path_fm_speaker.sh using /system/bin/amixer from mounted stock ROM to the pmOS, so I think we could manage to make audio to work somehow, but sadly it uses /system/usr/lib/alsa-lib/libasound_module_ctl_codec.so from stock ROM which is property and can't get it to work on pmOS standalone, because it uses Android binders and functions and works only if I use the stock amixer.
Did you manage to load the OS to SDCard and boot it?
Click to expand...
Click to collapse
Ah, I'm not trying to boot into pmOS right now, I'm mostly concerned about the CM port Maybe we could port Treble and get GSI and pmOS working that way?

TriDiscord said:
Ah, I'm not trying to boot into pmOS right now, I'm mostly concerned about the CM port Maybe we could port Treble and get GSI and pmOS working that way?
Click to expand...
Click to collapse
I don't think is possible, as we don't have access to proprietary blobs.
However, I've found that there is something called libhybris and halium which have could give us a door for future ports using proprietary binaries, but from what I've read on Sailfish OS Hardware Adaptation you also need to compile an working CM version in order to recompile some part of the Android ROM with hybris / halium implemented to make it possible for other OS-s to load them. Maybe we could port other Android versions this way, but who knows.
However, I don't think it's worth the hassle, as an used Nexus 7 it's under 50 bucks and that tablet it's a steal, as it still got Android 11 updates, Ubuntu Touch, Debian, pmOS with great support, so ..
This was a nice challenge, but I've spend already too much time to work on it alone.
The point of having working pmOS with working Anbox is that we could run newer Android apps inside it, like for Android 7+ and so on, but this require to get it work all together, including Audio and HW acceleration.

Related

WiFi scanning problem

I have a very strange problem. My WiFi can't find any networks when scanning.
The driver is loading and there are no errors.
dmesg output:
Code:
<6>[ 301.071329] TIWLAN: Driver loading
<4>[ 301.071757] trout_wifi_power: 1
<4>[ 301.317952] trout_wifi_reset: 0
<4>[ 301.368348] trout_wifi_set_carddetect: 1
<7>[ 301.368654] mmc0: card_present 1
<6>[ 301.368928] mmc0: Slot status change detected (0 -> 1)
<4>[ 301.380475] mmc0: card claims to support voltages below the defined range. These will be ignored.
<4>[ 301.380475] mmc0: SDIO card claims to support the incompletely defined 'low voltage range'. This will be ignored.
<6>[ 301.380475] mmc0: new SDIO card at address 0001
<6>[ 301.380475] TIWLAN: Found SDIO controller (vendor 0x104c, device 0x9066)
<6>[ 301.384045] TIWLAN: Driver initialized (rc 0)
<6>[ 301.384442] TIWLAN: Driver loaded
log output when starting WiFi and scanning for network:
Code:
D/SettingsWifiEnabler( 229): Received wifi state changed from Disabled to Enabling
D/wlan_loader( 313): adapter tiwlan0, eeprom /proc/calibration, init /system/etc/wifi/tiwlan.ini, firmware /system/etc/wifi/Fw1251r1c.bin
D/wlan_loader( 313): Configuring adapter
D/wlan_loader( 313): Adapter configuration rc = 0
D/wlan_loader( 313): Starting configMge
D/wlan_loader( 313): ConfigMge start rc = 0
D/wlan_loader( 313): Driver configured
D/wlan_loader( 313): Firmware loaded and running OK
D/wlan_loader( 313): Set property wlan.driver.status = ok - Ok
I/BluetoothHeadset( 54): Proxy object is now connected to Bluetooth Headset Service
V/WifiStateTracker( 54): Connection to supplicant established, state=INACTIVE
V/WifiMonitor( 54): Event [CTRL-EVENT-STATE-CHANGE id=-1 state=1]
V/WifiStateTracker( 54): Changing supplicant state: INACTIVE ==> INACTIVE
D/SettingsWifiEnabler( 229): Received wifi state changed from Enabling to Enabled
I/dalvikvm( 54): threadid=15: bogus mon 1+0>0; adjusting
V/WifiMonitor( 54): Event [CTRL-EVENT-STATE-CHANGE id=-1 state=2]
V/WifiStateTracker( 54): Changing supplicant state: INACTIVE ==> SCANNING
D/SettingsWifiEnabler( 229): Received wifi state changed from Enabling to Enabled
V/WifiMonitor( 54): Event [CTRL-EVENT-SCAN-RESULTS Ready]
V/WifiMonitor( 54): Event [CTRL-EVENT-STATE-CHANGE id=-1 state=1]
V/WifiStateTracker( 54): Changing supplicant state: SCANNING ==> INACTIVE
V/WifiMonitor( 54): Event [CTRL-EVENT-STATE-CHANGE id=-1 state=2]
V/WifiStateTracker( 54): Changing supplicant state: INACTIVE ==> SCANNING
V/WifiMonitor( 54): Event [CTRL-EVENT-SCAN-RESULTS Ready]
V/WifiMonitor( 54): Event [CTRL-EVENT-STATE-CHANGE id=-1 state=1]
V/WifiStateTracker( 54): Changing supplicant state: SCANNING ==> INACTIVE
V/WifiMonitor( 54): Event [CTRL-EVENT-STATE-CHANGE id=-1 state=2]
V/WifiStateTracker( 54): Changing supplicant state: INACTIVE ==> SCANNING
V/WifiMonitor( 54): Event [CTRL-EVENT-SCAN-RESULTS Ready]
V/WifiMonitor( 54): Event [CTRL-EVENT-STATE-CHANGE id=-1 state=1]
V/WifiStateTracker( 54): Changing supplicant state: SCANNING ==> INACTIVE
and so on.. INACTIVE ==> SCANNING and SCANNING ==> INACTIVE is repeating forever.
But no scan results. I tried it with 3 different routers.
It was working a week ago, but suddenly stopped. I did reflash to RC29, then RC30. I am with ADP1 now.
Can I do something to get it working? Is it a hardware problem?
Thanks a lot!
Does anyone know what causes this?
Newbie16 said:
Does anyone know what causes this?
Click to expand...
Click to collapse
So you're running the straight ADP build from HTC's website?
Oh nevermind, I see the original post was back whiles ago.
The only time I've seen this occur is when some things get messed up on the build.prop. Specifically these (2) settings ...
wifi.interface=tiwlan0
wifi.supplicant_scan_interval=45
If the symptoms are the same under different builds, it def sounds like a hardware problem to me (if you wiped that is, which it sounds like you did since you said you flashed RC29).
I assume you've tried different environments w/ different AP's etc...right?
edit: owned by the thread resurrection, ha

Froyo O3D suddenly won't connect to wifi modem

Last night my Froyo O3D (waiting for gb update) disconnected from my wireless router and every time I click the wifi tab to connect it connects then says authentication error (sometimes says nothing) then disconnects despite not having installed any new apps recently.
The error log when I try to connect wirelessly reads as follows (edited the SSID number for posting)
Code:
Changing supplicant state: INACTIVE ==> SCANNING
STATE_CHANGED for: featureId: -1, typeName: WIFI; stateDISCONNECTED/SCANNING
Dropping ConnectivityChange for WIFI: DISCONNECTED/SCANNING
Trying to associate with 00:25:69:53:a7:9d (SSID='SKY42908' freq=2412 MHz)
CCKM: WPA: set AP WPA IE
CTRL-EVENT-STATE-CHANGE id=-1 state=3 BSSID=00:25:69:53:a7:9d
setDetailed state, old =SCANNING and new state=CONNECTING
Event [Trying to associate with 00:25:69:53:a7:9d (SSID='SKY****' freq=2412 MHz)]
Event [CTRL-EVENT-STATE-CHANGE id=-1 state=3 BSSID=00:25:69:53:a7:9d]
get scan results
Changing supplicant state: SCANNING ==> ASSOCIATING
STATE_CHANGED for: featureId: -1, typeName: WIFI; stateCONNECTING/CONNECTING
ConnectivityChange for WIFI: CONNECTING/CONNECTING
CTRL-EVENT-STATE-CHANGE id=2 state=4 BSSID=00:25:69:53:a7:9d
setDetailed state, old =CONNECTING and new state=CONNECTING
Associated with 00:25:69:53:a7:9d
CTRL-EVENT-STATE-CHANGE id=2 state=5 BSSID=00:00:00:00:00:00
setDetailed state, old =CONNECTING and new state=AUTHENTICATING
Event [CTRL-EVENT-STATE-CHANGE id=2 state=4 BSSID=00:25:69:53:a7:9d]
Changing supplicant state: ASSOCIATING ==> ASSOCIATED
Event [Associated with 00:25:69:53:a7:9d]
Event [CTRL-EVENT-STATE-CHANGE id=2 state=5 BSSID=00:00:00:00:00:00]
Changing supplicant state: ASSOCIATED ==> FOUR_WAY_HANDSHAKE
STATE_CHANGED for: featureId: -1, typeName: WIFI; stateCONNECTING/AUTHENTICATING
Dropping ConnectivityChange for WIFI: CONNECTING/AUTHENTICATING
[GsmDataConnectionTracker] rx 2978, tx 3090
Fast dormancy check PDP num =1
2g screen on) Set Timer to 1000
2army log acquireWakeLock flags=0x1 tag=GTALK_CONNuid=10022
2army log acquireWakeLock flags=0x1 tag=GTALK_CONNuid=10022
[RosterMgr] roster not modified
2army log acquireWakeLock flags=0x1 tag=RILJuid=1001
setIndicatorValue: 6,3
JBtlAg context is disabled
2army log acquireWakeLock flags=0x1 tag=GTALK_CONNuid=10022
2army log acquireWakeLock flags=0x1 tag=GTALK_CONNuid=10022
2army log acquireWakeLock flags=0x1 tag=GTALK_CONNuid=10022
2army log acquireWakeLock flags=0x1 tag=GTALK_CONNuid=10022
2army log acquireWakeLock flags=0x1 tag=GTALK_CONNuid=10022
[OtrMgr] OTR not modified
[GsmDataConnectionTracker] rx 2981, tx 3092
Fast dormancy check PDP num =1
2g screen on) Set Timer to 1000
CTRL-EVENT-STATE-CHANGE id=2 state=5 BSSID=00:00:00:00:00:00
Event [CTRL-EVENT-STATE-CHANGE id=2 state=5 BSSID=00:00:00:00:00:00]
Changing supplicant state: FOUR_WAY_HANDSHAKE ==> FOUR_WAY_HANDSHAKE
2army log acquireWakeLock flags=0x1 tag=RILJuid=1001
setIndicatorValue: 6,4
JBtlAg context is disabled
[GsmDataConnectionTracker] rx 2981, tx 3092
isRilReset data = false
[GsmDataConnectionTracker] notifyDataActivity(NONE)
Fast dormancy check PDP num =1
2g screen on) Set Timer to 1000
updateDataIcon : Srv=true DataSrv=true DataSt=2 RAT=2
CTRL-EVENT-STATE-CHANGE id=2 state=5 BSSID=00:00:00:00:00:00
Event [CTRL-EVENT-STATE-CHANGE id=2 state=5 BSSID=00:00:00:00:00:00]
Changing supplicant state: FOUR_WAY_HANDSHAKE ==> FOUR_WAY_HANDSHAKE
2army log acquireWakeLock flags=0x1 tag=RILJuid=1001
updateSignalState : Don't send RSSI-timeSinceRequest: 998
setTimeoutLocked mPolicy.isKeyguardShowingAndNotHidden = false
[GsmDataConnectionTracker] rx 2981, tx 3092
Fast dormancy check PDP num =1
2g screen on) Set Timer to 1000
CTRL-EVENT-STATE-CHANGE id=2 state=5 BSSID=00:00:00:00:00:00
Event [CTRL-EVENT-STATE-CHANGE id=2 state=5 BSSID=00:00:00:00:00:00]
Changing supplicant state: FOUR_WAY_HANDSHAKE ==> FOUR_WAY_HANDSHAKE
Everything else works wirelessly just not my Android phone, any ideas why?
Dave

[DEV] [COMPLETE TESTING FIXES] [08/07/12] CyanogenMod 7.2.0 For SGY GT-S5360

Hi folks, we have been working on fixes for the broken parts in the port of the original thread.
Thanks to the original builder/porter.
WhiteXP and Motafoca.
Working Till now.
1. Calling
2. SMS
3. Internet
4. GPS
Not-working
1. Gallery
2. Camera
3. Bluetooth
4. Wifi
5. Graphics
6. Music & Video player not able to read the file.
Test my fixes.
Here's the mediafire link.
Edit : Many fixes uploaded
This is a COMPLETE TESTING FIX, standalone fix. You do not need to apply any of my older fixes to use this. Just flash it and you are good to go.
Complete Testing fix 13 - complete audio files intended to boost sound.
Go to data/ system/ wpa_supplicant and delete all files in that folder.
From your dial-pad enter: *#*#526#*#* wait for the following status message to appear.
WLANTest Engineering Mode
Status...
Driver loading successful
Now tap the Back button to exit and try the wifi now it should work.
Report back if this doesn't help you.
I have added system apps. Test it as soon as possible and reply on this thread. This system app is intended to fix many of the problems encountered earlier. Check for your nvmacinfo to be sure that your hardware has a mac address.
Here's an incremental wifi fix. This is to be applied after you have applied my earlier fixes. Merged fix should be applied before applying incremental fix. If you don't then the wifi files will be incomplete. I uploaded a complete zip with all wifi files in July
Here's a try at many fixes at once. Please install the merged wifi fix before applying this one to make it work. Test and report.
Wifi, bluetooth, camera, audio, video
This fix increases the headphone volume a bit.
Merged old + new wifi
The update script is edited on windows and is likely to have status 6 error.
Incremental 2 consists the drivers for wifi. My hopefully last update for wifi.
After a short break, I am back on working with wifi.
Please install the merged fix before applying incremental.
Report to me please, if this does not work; provide logcat.
Incremental 2 has files needed for video recording. Check the camera.
Incremental also fixes camera a little bit as reported by death notice. Thanks.
Sound fix by Nano. Thanks mate
CM7-GalaxyY.v.1.0_Nano.zip
Graphics fix (Keys don't work) - dranzer/white xp. Thanks.
http://www.mediafire.com/?9s3lp1dp5xpvb9l
You can press THANKS. I am uploading 5 fixes a day, don't I deserve a thanks?
Will test it but can't provide logcat though.. I am in mobile mode now
Sent from my GT-S5360 using XDA
hell_lock said:
Will test it but can't provide logcat though.. I am in mobile mode now
Sent from my GT-S5360 using XDA
Click to expand...
Click to collapse
I was on mobile too. But turned on comp to upload this.
I am switching to mobile now.
Turning comp off in some time.
Flashed Kernel,
Installing ROM now
will report in a while (6-7 minutes )
CharsiBabu said:
Flashed Kernel,
Installing ROM now
will report in a while (6-7 minutes )
Click to expand...
Click to collapse
Thanks, it would be great if you could provide log cat.
Sent from my GT-S5360 using xda app-developers app
NT working .. charsi will give logcat
Sent from my GT-S5360 using XDA
hell_lock said:
NT working .. charsi will give logcat
Sent from my GT-S5360 using XDA
Click to expand...
Click to collapse
Same error, starts and then erratically turns off?
Sent from my GT-S5360 using xda app-developers app
Tester only but can op/other give link reference how to start this?
Newbie here but wanna be one of working cm7 in sgy.
Thanks for all support..
Master_Key said:
Same error, starts and then erratically turns off?
Sent from my GT-S5360 using xda app-developers app
Click to expand...
Click to collapse
It's not even starting..
Sent from my GT-S5360 using XDA
Log :S
Umm,
i hope this is relevant :S
GC_CONCURRENT freed 343K, 49% free 3080K/5959K, external 356K/512K, paused 4ms+30ms
D/SettingsAppWidgetProvider( 2127): Widget is from a previous version... Let's update
D/SettingsAppWidgetProvider( 2127): No instances yet... Wait for at least one instance to exist before adding global settings
D/Tethering( 1575): eth0 is not a tetherable iface, ignoring
E/WifiHW ( 1575): Unable to open connection to supplicant on "/data/system/wpa_supplicant/eth0": No such file or directory
D/SettingsAppWidgetProvider( 2127): Widget is from a previous version... Let's update
D/SettingsAppWidgetProvider( 2127): No instances yet... Wait for at least one instance to exist before adding global settings
D/wpa_supplicant( 2149): Initializing interface 'eth0' conf '/data/misc/wifi/wpa_supplicant.conf' driver 'wext' ctrl_interface 'N/A' bridge 'N/A'
D/wpa_supplicant( 2149): Configuration file '/data/misc/wifi/wpa_supplicant.conf' -> '/data/misc/wifi/wpa_supplicant.conf'
D/wpa_supplicant( 2149): Reading configuration file '/data/misc/wifi/wpa_supplicant.conf'
D/wifi ( 1575): wifi doCommand: ret=-1
D/wpa_supplicant( 2149): update_config=1
D/wpa_supplicant( 2149): eapol_version=1
D/wpa_supplicant( 2149): ap_scan=1
D/wpa_supplicant( 2149): fast_reauth=1
D/wpa_supplicant( 2149): ctrl_interface='/data/misc/wifi/sockets'
D/wpa_supplicant( 2149): ctrl_interface_group='wifi'
D/wpa_supplicant( 2149): Initializing interface (2) 'eth0'
D/wpa_supplicant( 2149): SIOCGIWRANGE: WE(compiled)=22 WE(source)=19 enc_capa=0xf
D/wpa_supplicant( 2149): capabilities: key_mgmt 0xf enc 0xf flags 0x0
D/wpa_supplicant( 2149): WEXT: Operstate: linkmode=1, operstate=5
D/wpa_supplicant( 2149): Own MAC address: f8:d0:bd:3d:4c:e0
D/wpa_supplicant( 2149): wpa_driver_wext_set_wpa
D/wpa_supplicant( 2149): wpa_driver_wext_set_key: alg=0 key_idx=0 set_tx=0 seq_len=0 key_len=0
D/wpa_supplicant( 2149): wpa_driver_wext_set_key: alg=0 key_idx=1 set_tx=0 seq_len=0 key_len=0
D/wpa_supplicant( 2149): wpa_driver_wext_set_key: alg=0 key_idx=2 set_tx=0 seq_len=0 key_len=0
D/wpa_supplicant( 2149): wpa_driver_wext_set_key: alg=0 key_idx=3 set_tx=0 seq_len=0 key_len=0
D/wpa_supplicant( 2149): wpa_driver_wext_set_countermeasures
D/wpa_supplicant( 2149): wpa_driver_wext_set_drop_unencrypted
D/wpa_supplicant( 2149): RSN: flushing PMKID list in the driver
D/wpa_supplicant( 2149): Setting scan request: 0 sec 100000 usec
D/wpa_supplicant( 2149): WPS: Build Beacon and Probe Response IEs
D/wpa_supplicant( 2149): WPS: * Version
D/wpa_supplicant( 2149): WPS: * Wi-Fi Protected Setup State (0)
D/wpa_supplicant( 2149): WPS: * Version
D/wpa_supplicant( 2149): WPS: * Wi-Fi Protected Setup State (0)
D/wpa_supplicant( 2149): WPS: * Response Type (2)
D/wpa_supplicant( 2149): WPS: * UUID-E
D/wpa_supplicant( 2149): WPS: * Manufacturer
D/wpa_supplicant( 2149): WPS: * Model Name
D/wpa_supplicant( 2149): WPS: * Model Number
D/wpa_supplicant( 2149): WPS: * Serial Number
D/wpa_supplicant( 2149): WPS: * Primary Device Type
D/wpa_supplicant( 2149): WPS: * Device Name
D/wpa_supplicant( 2149): WPS: * Config Methods (0)
D/wpa_supplicant( 2149): WPS: * RF Bands (3)
D/wpa_supplicant( 2149): EAPOL: SUPP_PAE entering state DISCONNECTED
D/wpa_supplicant( 2149): EAPOL: KEY_RX entering state NO_KEY_RECEIVE
D/wpa_supplicant( 2149): EAPOL: SUPP_BE entering state INITIALIZE
D/wpa_supplicant( 2149): EAP: EAP entering state DISABLED
D/wpa_supplicant( 2149): Using existing control interface directory.
D/wpa_supplicant( 2149): ctrl_interface_group=1010 (from group name 'wifi')
D/wpa_supplicant( 2149): Added interface eth0
D/wpa_supplicant( 2149): RTM_NEWLINK: operstate=0 ifi_flags=0x11043 ([UP][RUNNING][LOWER_UP])
D/wpa_supplicant( 2149): RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added
D/wpa_supplicant( 2149): Wireless event: cmd=0x8b06 len=8
D/wpa_supplicant( 2149): RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP])
D/wpa_supplicant( 2149): RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added
D/wpa_supplicant( 2149): wpa_supplicant_scan: scan_req = 1, ap_scan = 1
D/wpa_supplicant( 2149): State: DISCONNECTED -> SCANNING
I/wpa_supplicant( 2149): CTRL-EVENT-STATE-CHANGE id=-1 state=2 BSSID=00:00:00:00:00:00
D/wpa_supplicant( 2149): Trying to get current scan results first without requesting a new scan to speed up initial association
D/wpa_supplicant( 2149): Received 201 bytes of scan results (1 BSSes)
D/wpa_supplicant( 2149): New scan results available
D/wpa_supplicant( 2149): No suitable AP found.
D/wpa_supplicant( 2149): Setting scan request: 0 sec 0 usec
D/wpa_supplicant( 2149): wpa_supplicant_scan: scan_req = 1, ap_scan = 1
D/wpa_supplicant( 2149): Starting AP scan (broadcast SSID)
D/wpa_supplicant( 2149): wpa_driver_wext_scan: specific scan = 0
E/wpa_supplicant( 2149): ioctl[SIOCSIWSCAN]
D/wpa_supplicant( 2149): Scan requested - scan timeout 10 seconds
W/wpa_supplicant( 2149): Failed to initiate AP scan.
D/wpa_supplicant( 2149): Setting scan request: 10 sec 0 usec
savie said:
Tester only but can op/other give link reference how to start this?
Newbie here but wanna be one of working cm7 in sgy.
Thanks for all support..
Click to expand...
Click to collapse
Simply read logcats and replace the problematic files with their working versions thats it.
Sent from my GT-S5360 using XDA
CharsiBabu said:
Flashed Kernel,
Installing ROM now
will report in a while (6-7 minutes )
Click to expand...
Click to collapse
Tested?
Give me a log cat, if same error, I'll start from beginning.
It's not the same.
Sent from my GT-S5360 using xda app-developers app
hell_lock said:
Simply read logcats and replace the problematic files with their working versions thats it.
Sent from my GT-S5360 using XDA
Click to expand...
Click to collapse
Actually i dont know how to start budy.
What file should i download for 1st time? Is source from madteam forum? Then fix with update from this thread and/or cm7 relevan thread.
Sory for newbie question and thanks for respon hell_lock.
CharsiBabu said:
Umm,
i hope this is relevant :S
GC_CONCURRENT freed 343K, 49% free 3080K/5959K, external 356K/512K, paused 4ms+30ms
D/SettingsAppWidgetProvider( 2127): Widget is from a previous version... Let's update
D/SettingsAppWidgetProvider( 2127): No instances yet... Wait for at least one instance to exist before adding global settings
D/Tethering( 1575): eth0 is not a tetherable iface, ignoring
E/WifiHW ( 1575): Unable to open connection to supplicant on "/data/system/wpa_supplicant/eth0": No such file or directory
D/SettingsAppWidgetProvider( 2127): Widget is from a previous version... Let's update
D/SettingsAppWidgetProvider( 2127): No instances yet... Wait for at least one instance to exist before adding global settings
D/wpa_supplicant( 2149): Initializing interface 'eth0' conf '/data/misc/wifi/wpa_supplicant.conf' driver 'wext' ctrl_interface 'N/A' bridge 'N/A'
D/wpa_supplicant( 2149): Configuration file '/data/misc/wifi/wpa_supplicant.conf' -> '/data/misc/wifi/wpa_supplicant.conf'
D/wpa_supplicant( 2149): Reading configuration file '/data/misc/wifi/wpa_supplicant.conf'
D/wifi ( 1575): wifi doCommand: ret=-1
D/wpa_supplicant( 2149): update_config=1
D/wpa_supplicant( 2149): eapol_version=1
D/wpa_supplicant( 2149): ap_scan=1
D/wpa_supplicant( 2149): fast_reauth=1
D/wpa_supplicant( 2149): ctrl_interface='/data/misc/wifi/sockets'
D/wpa_supplicant( 2149): ctrl_interface_group='wifi'
D/wpa_supplicant( 2149): Initializing interface (2) 'eth0'
D/wpa_supplicant( 2149): SIOCGIWRANGE: WE(compiled)=22 WE(source)=19 enc_capa=0xf
D/wpa_supplicant( 2149): capabilities: key_mgmt 0xf enc 0xf flags 0x0
D/wpa_supplicant( 2149): WEXT: Operstate: linkmode=1, operstate=5
D/wpa_supplicant( 2149): Own MAC address: f8:d0:bd:3d:4c:e0
D/wpa_supplicant( 2149): wpa_driver_wext_set_wpa
D/wpa_supplicant( 2149): wpa_driver_wext_set_key: alg=0 key_idx=0 set_tx=0 seq_len=0 key_len=0
D/wpa_supplicant( 2149): wpa_driver_wext_set_key: alg=0 key_idx=1 set_tx=0 seq_len=0 key_len=0
D/wpa_supplicant( 2149): wpa_driver_wext_set_key: alg=0 key_idx=2 set_tx=0 seq_len=0 key_len=0
D/wpa_supplicant( 2149): wpa_driver_wext_set_key: alg=0 key_idx=3 set_tx=0 seq_len=0 key_len=0
D/wpa_supplicant( 2149): wpa_driver_wext_set_countermeasures
D/wpa_supplicant( 2149): wpa_driver_wext_set_drop_unencrypted
D/wpa_supplicant( 2149): RSN: flushing PMKID list in the driver
D/wpa_supplicant( 2149): Setting scan request: 0 sec 100000 usec
D/wpa_supplicant( 2149): WPS: Build Beacon and Probe Response IEs
D/wpa_supplicant( 2149): WPS: * Version
D/wpa_supplicant( 2149): WPS: * Wi-Fi Protected Setup State (0)
D/wpa_supplicant( 2149): WPS: * Version
D/wpa_supplicant( 2149): WPS: * Wi-Fi Protected Setup State (0)
D/wpa_supplicant( 2149): WPS: * Response Type (2)
D/wpa_supplicant( 2149): WPS: * UUID-E
D/wpa_supplicant( 2149): WPS: * Manufacturer
D/wpa_supplicant( 2149): WPS: * Model Name
D/wpa_supplicant( 2149): WPS: * Model Number
D/wpa_supplicant( 2149): WPS: * Serial Number
D/wpa_supplicant( 2149): WPS: * Primary Device Type
D/wpa_supplicant( 2149): WPS: * Device Name
D/wpa_supplicant( 2149): WPS: * Config Methods (0)
D/wpa_supplicant( 2149): WPS: * RF Bands (3)
D/wpa_supplicant( 2149): EAPOL: SUPP_PAE entering state DISCONNECTED
D/wpa_supplicant( 2149): EAPOL: KEY_RX entering state NO_KEY_RECEIVE
D/wpa_supplicant( 2149): EAPOL: SUPP_BE entering state INITIALIZE
D/wpa_supplicant( 2149): EAP: EAP entering state DISABLED
D/wpa_supplicant( 2149): Using existing control interface directory.
D/wpa_supplicant( 2149): ctrl_interface_group=1010 (from group name 'wifi')
D/wpa_supplicant( 2149): Added interface eth0
D/wpa_supplicant( 2149): RTM_NEWLINK: operstate=0 ifi_flags=0x11043 ([UP][RUNNING][LOWER_UP])
D/wpa_supplicant( 2149): RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added
D/wpa_supplicant( 2149): Wireless event: cmd=0x8b06 len=8
D/wpa_supplicant( 2149): RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP])
D/wpa_supplicant( 2149): RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added
D/wpa_supplicant( 2149): wpa_supplicant_scan: scan_req = 1, ap_scan = 1
D/wpa_supplicant( 2149): State: DISCONNECTED -> SCANNING
I/wpa_supplicant( 2149): CTRL-EVENT-STATE-CHANGE id=-1 state=2 BSSID=00:00:00:00:00:00
D/wpa_supplicant( 2149): Trying to get current scan results first without requesting a new scan to speed up initial association
D/wpa_supplicant( 2149): Received 201 bytes of scan results (1 BSSes)
D/wpa_supplicant( 2149): New scan results available
D/wpa_supplicant( 2149): No suitable AP found.
D/wpa_supplicant( 2149): Setting scan request: 0 sec 0 usec
D/wpa_supplicant( 2149): wpa_supplicant_scan: scan_req = 1, ap_scan = 1
D/wpa_supplicant( 2149): Starting AP scan (broadcast SSID)
D/wpa_supplicant( 2149): wpa_driver_wext_scan: specific scan = 0
E/wpa_supplicant( 2149): ioctl[SIOCSIWSCAN]
D/wpa_supplicant( 2149): Scan requested - scan timeout 10 seconds
W/wpa_supplicant( 2149): Failed to initiate AP scan.
D/wpa_supplicant( 2149): Setting scan request: 10 sec 0 usec
Click to expand...
Click to collapse
Check if eth0 directory is created, because I changed permissions to create it.
Sent from my GT-S5360 using xda app-developers app
root explorer crashes x|
installing ROM toolbox
EDIT:
nope,
the directory doesn't exists.
CharsiBabu said:
root explorer crashes x|
installing ROM toolbox
Click to expand...
Click to collapse
Only v 2.16 root explorer works in my phone. May be you got the same problem.
Try to turn on wifi first and then turn on wifi tether.
Try it!
Sent from my GT-S5360 using xda app-developers app
savie said:
Actually i dont know how to start budy.
What file should i download for 1st time? Is source from madteam forum? Then fix with update from this thread and/or cm7 relevan thread.
Sory for newbie question and thanks for respon hell_lock.
Click to expand...
Click to collapse
download madteam's build
use patches from here
savie said:
Actually i dont know how to start budy.
What file should i download for 1st time? Is source from madteam forum? Then fix with update from this thread and/or cm7 relevan thread.
Sory for newbie question and thanks for respon hell_lock.
Click to expand...
Click to collapse
Conventionally we are using madteam's cm to test things on.
Sent from my GT-S5360 using XDA
Master_Key said:
Only v 2.16 root explorer works in my phone. May be you got the same problem.
Try to turn on wifi first and then turn on wifi tether.
Try it!
Sent from my GT-S5360 using xda app-developers app
Click to expand...
Click to collapse
Yep did that,no effect.
Tried toggling via dev tools
Heck, I even tried toggling airplane mode. :/
CharsiBabu said:
root explorer crashes x|
installing ROM toolbox
EDIT:
nope,
the directory doesn't exists.
Click to expand...
Click to collapse
The log says created.
So try that wifi tether.
Sent from my GT-S5360 using xda app-developers app

[Q] CM10 WiFi

Hello.
I have a problem with CM10 (cm-10-20120923-EXPERIMENTAL-saga-NK111) wifi. I can turn wifi on off and see all the AP's I would regularly see but I cannot connect to any of them (just says Saved, secured with WPA2).
Right now I tried CM9 (NK111 latest build) and there it worked perfectly.
Baseband is 20.76.30.0835U_3831.19.00.110
Logcat is here:
Code:
I/wpa_supplicant( 1674): wlan0: Authentication with 30:85:a9:39:42:e0 timed out.
I/wpa_supplicant( 1674): wlan0: Trying to associate with 30:85:a9:39:42:e0 (SSID='Ssid' freq=2462 MHz)
I/wpa_supplicant( 1674): wlan0: Authentication with 30:85:a9:39:42:e0 timed out.
I/wpa_supplicant( 1674): wlan0: Trying to associate with 30:85:a9:39:42:e0 (SSID='Ssid' freq=2462 MHz)
I/wpa_supplicant( 1674): wlan0: Authentication with 30:85:a9:39:42:e0 timed out.
I/wpa_supplicant( 1674): wlan0: Trying to associate with 30:85:a9:39:42:e0 (SSID='Ssid' freq=2462 MHz)
I/wpa_supplicant( 1674): wlan0: Authentication with 30:85:a9:39:42:e0 timed out.
I/wpa_supplicant( 1674): wlan0: Trying to associate with 30:85:a9:39:42:e0 (SSID='Ssid' freq=2462 MHz)
I/wpa_supplicant( 1674): wlan0: Authentication with 30:85:a9:39:42:e0 timed out.
I/wpa_supplicant( 1674): wlan0: Trying to associate with 30:85:a9:39:42:e0 (SSID='Ssid' freq=2462 MHz)
I/wpa_supplicant( 1674): wlan0: Authentication with 30:85:a9:39:42:e0 timed out.
I/wpa_supplicant( 1674): wlan0: Trying to associate with 30:85:a9:39:42:e0 (SSID='Ssid' freq=2462 MHz)
I/wpa_supplicant( 1674): wlan0: Authentication with 30:85:a9:39:42:e0 timed out.
I/wpa_supplicant( 1674): wlan0: Trying to associate with 30:85:a9:39:42:e0 (SSID='Ssid' freq=2462 MHz)
I/wpa_supplicant( 1674): wlan0: Authentication with 30:85:a9:39:42:e0 timed out.
I/wpa_supplicant( 1674): wlan0: Trying to associate with 30:85:a9:39:42:e0 (SSID='Ssid' freq=2462 MHz)
I/wpa_supplicant( 1674): wlan0: Authentication with 30:85:a9:39:42:e0 timed out.
I/wpa_supplicant( 1674): wlan0: Trying to associate with 30:85:a9:39:42:e0 (SSID='Ssid' freq=2462 MHz)
I/wpa_supplicant( 1674): wlan0: Authentication with 30:85:a9:39:42:e0 timed out.
I/wpa_supplicant( 1674): wlan0: Trying to associate with 30:85:a9:39:42:e0 (SSID='Ssid' freq=2462 MHz)
I/wpa_supplicant( 1674): wlan0: CTRL-EVENT-DRIVER-STATE STOPPED
E/wpa_supplicant( 1674): android_wext_cmd failed (-1): PNOFORCE 0
D/WifiStateMachine( 1447): Received INTERFACE_DISABLED message
E/WifiStateMachine( 1447): Error! unhandled message 0x20099 - 153
I/wpa_supplicant( 1674): wlan0: Authentication with 00:00:00:00:00:00 timed out.
Can someone help me with this problem. What should I do? Before going to CM10 I used Stock ICS RUU
I'm on 0923 also but using Radio-20.4801.30.0822U_3822.10.08.04.
I have no problems with Wi-Fi.
Sent from my HTC Saga
BillGoss said:
I'm on 0923 also but using Radio-20.4801.30.0822U_3822.10.08.04.
I have no problems with Wi-Fi.
Sent from my HTC Saga
Click to expand...
Click to collapse
Thank you for replying!
Ok I was afraid it is a radio issue (it is the newest radio fw) or some incompatibility with CM10. Can you please forward this message to Development forum? I cannot post there yet. I would really appreciate it!

[q] sensation xe wifi issue in cm9 and 10

there's a wifi issue on my device when i flash the cm9(9.0-9.1stable or RC or newest nigthly) or cm10 .:crying:
when turn on the wifi ,always show "turning wi-fi on..." .or auto turn off turn on in loop... can't search or add.
but there isn't problem in ruu rom or miui that they both use the android 4.03.
my device is:
htc sensation xe.
cid HTC__622(writed 1111111).
flashed the newlest euorpe 3.33 firmware with the ruu.
1.29 hboot.
unlock.
ship s-off.
before flash new rom i had wipe all cache.
pelase help me...
Well which kernel dud you flash on top?
Sent from my Sensation using Tapatalk 2
blahbl4hblah said:
Well which kernel dud you flash on top?
Sent from my Sensation using Tapatalk 2
Click to expand...
Click to collapse
i hadn't changed the kernel, all are the rom or ruu default
i tried a lot of kernel, and had the same problem on ICS, but it's working on CM10 (bruce's nightly)
mrc90 said:
i tried a lot of kernel, and had the same problem on ICS, but it's working on CM10 (bruce's nightly)
Click to expand...
Click to collapse
please tell me~~~which kernel can work in cm10?
this is logcat:
D/libloc ( 241): loc_eng_ioctl result: client = 0, ioctl_type = RPC_LOC_IOCTL_
INJECT_PREDICTED_ORBITS_DATA, RPC_LOC_API_SUCCESS
D/libloc ( 241): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 241): 3100008c:327681 sending RPC reply (XID 16)
D/ThermalDaemon( 756): CPU[0] frequency limited to 1512000
D/ThermalDaemon( 756): Sensor 'tsens_tz_sensor0' - temperature 53248, threshold
level 0
D/Tethering( 241): sendTetherStateChangedBroadcast 1, 0, 0
D/Tethering( 241): InitialState.processMessage what=4
D/Tethering( 241): sendTetherStateChangedBroadcast 0, 0, 0
D/SoftapController( 120): Softap fwReload - Ok
D/CommandListener( 120): Setting iface cfg
D/NetworkManagementService( 241): rsp <213 00:90:4c:11:22:33 0.0.0.0 0 [down br
oadcast multicast]>
D/NetworkManagementService( 241): flags <[down broadcast multicast]>
D/CommandListener( 120): Trying to bring down wlan0
D/CommandListener( 120): broadcast flag ignored
D/CommandListener( 120): multicast flag ignored
I/BATT_ALG( 130): batt_alg_overtemp_check:temp:377, isOver_temp:0
I/BATT_ALG( 130): vol=3960;curr=63;dis_curr=0;temp=377;id=2;level=82;chg_src=1;
chg_en=1;ov_chg=0;isOver_temp=0;timer=60;safety_count=120
D/dalvikvm( 595): GC_CONCURRENT freed 1556K, 79% free 2616K/12288K, paused 1ms+
2ms
W/BackupManagerService( 241): dataChanged but no participant pkg='com.android.p
roviders.settings' uid=1001
D/dalvikvm( 595): GC_CONCURRENT freed 1635K, 79% free 2700K/12288K, paused 2ms+
3ms
E/wpa_supplicant( 1352): Could not set interface wlan0 flags: Operation not perm
itted
E/wpa_supplicant( 1352): nl80211: Could not set interface 'wlan0' UP
E/wpa_supplicant( 1352): wlan0: Failed to initialize driver interface
D/Tethering( 241): sendTetherStateChangedBroadcast 1, 0, 0
D/dalvikvm( 595): GC_CONCURRENT freed 1682K, 78% free 2733K/12288K, paused 2ms+
2ms
E/WifiHW ( 241): Supplicant not running, cannot connect
E/WifiHW ( 241): Supplicant not running, cannot connect
E/WifiHW ( 241): Supplicant not running, cannot connect
E/WifiStateMachine( 241): Failed to setup control channel, restart supplicant
D/SoftapController( 120): Softap fwReload - Ok
D/NetworkManagementService( 241): rsp <213 a8:26:d9:16:7b:9e 0.0.0.0 0 [down br
oadcast multicast]>
D/NetworkManagementService( 241): flags <[down broadcast multicast]>
D/CommandListener( 120): Setting iface cfg
D/CommandListener( 120): Trying to bring down wlan0
D/CommandListener( 120): broadcast flag ignored
D/CommandListener( 120): multicast flag ignored
E/WifiHW ( 241): Unable to open connection to supplicant on "wlan0": No such f
ile or directory
D/dalvikvm( 241): GC_CONCURRENT freed 1691K, 60% free 4994K/12288K, paused 2ms+
4ms
D/dalvikvm( 595): GC_CONCURRENT freed 1636K, 78% free 2812K/12288K, paused 1ms+
3ms
E/WifiConfigStore( 241): Error parsing configurationjava.io.FileNotFoundExcepti
on: /data/misc/wifi/ipconfig.txt: open failed: ENOENT (No such file or directory
)
E/wpa_supplicant( 1508): wpa_driver_nl80211_driver_cmd: failed to issue private
commands
E/wpa_supplicant( 1508): wpa_driver_nl80211_driver_cmd: failed to issue private
commands
E/wpa_supplicant( 1508): wpa_driver_nl80211_driver_cmd: failed to issue private
commands
E/wpa_supplicant( 1508): wpa_driver_nl80211_driver_cmd: failed to issue private
commands
E/WifiStateMachine( 241): Failed to set country code cn
E/wpa_supplicant( 1508): wpa_driver_nl80211_driver_cmd: failed to issue private
commands
I/wpa_supplicant( 1508): wlan0: CTRL-EVENT-DRIVER-STATE HANGED
E/WifiStateMachine( 241): Failed to set frequency band 0
D/CommandListener( 120): Clearing all IP addresses on wlan0
D/ConnectivityService( 241): ConnectivityChange for WIFI: DISCONNECTED/DISCONNE
CTED
D/ConnectivityService( 241): Attempting to switch to mobile
D/ConnectivityService( 241): Attempting to switch to BLUETOOTH_TETHER
I/Jni WCMLinkStatus ( 512): ssid: Tmobile MAC: 00:00:00:00:00:00 bssid: 00:00
:00:00:00:00 ipaddr: 000.000.000.000 connected: 0
I/Jni WCMLinkStatus ( 512): addr: Ox0
E/Jni WCM_Init( 512): Not initialized
W/NetworkStats( 241): dropping UID delta from unknown iface: iface=wlan0 uid=0
set=DEFAULT tag=0x0 rxBytes=0 rxPackets=0 txBytes=140 txPackets=2 operations=0
D/ConnectivityService( 241): ConnectivityChange for WIFI: DISCONNECTED/DISCONNE
CTED
D/ConnectivityService( 241): Attempting to switch to mobile
D/ConnectivityService( 241): Attempting to switch to BLUETOOTH_TETHER
I/Jni WCMLinkStatus ( 512): ssid: Tmobile MAC: 00:00:00:00:00:00 bssid: 00:00
:00:00:00:00 ipaddr: 000.000.000.000 connected: 0
I/Jni WCMLinkStatus ( 512): addr: Ox0
E/Jni WCM_Init( 512): Not initialized
D/NetworkPolicy( 241): applying policy NetworkPolicy[NetworkTemplate: matchRule
=MOBILE_ALL, subscriberId=valid]: cycleDay=18, warningBytes=2147483648, limitByt
es=-1, lastSnooze=-1 to ifaces [rmnet0]
D/NetworkPolicy( 241): applying policy NetworkPolicy[NetworkTemplate: matchRule
=MOBILE_ALL, subscriberId=valid]: cycleDay=18, warningBytes=2147483648, limitByt
es=-1, lastSnooze=-1 to ifaces [rmnet0]
D/NetworkPolicy( 241): applying policy NetworkPolicy[NetworkTemplate: matchRule
=MOBILE_ALL, subscriberId=valid]: cycleDay=18, warningBytes=2147483648, limitByt
es=-1, lastSnooze=-1 to ifaces [rmnet0]
D/NetworkPolicy( 241): applying policy NetworkPolicy[NetworkTemplate: matchRule
=MOBILE_ALL, subscriberId=valid]: cycleDay=18, warningBytes=2147483648, limitByt
es=-1, lastSnooze=-1 to ifaces [rmnet0]
D/MP-Decision( 747): UP Nw:2.700000 Tw:180 rq:4.900000 seq:195
D/ThermalDaemon( 756): CPU[1] frequency limited to 1512000
D/Tethering( 241): InitialState.processMessage what=4
D/Tethering( 241): sendTetherStateChangedBroadcast 0, 0, 0
I/wpa_supplicant( 1508): wlan0: CTRL-EVENT-TERMINATING
D/MP-Decision( 747): DOWN Ns:2.100000 Ts:270 rq:0.000000 seq:297 (Up time:350)
W/Netd ( 120): No subsystem found in netlink event
D/NetlinkEvent( 120): Unexpected netlink message. type=0x11
I/Jni WCMLinkStatus ( 512): ssid: Tmobile MAC: 00:00:00:00:00:00 bssid: 00:00
:00:00:00:00 ipaddr: 000.000.000.000 connected: 0
I/Jni WCMLinkStatus ( 512): addr: Ox0
E/Jni WCM_Init( 512): Not initialized
I/Jni WCMLinkStatus ( 512): ssid: Tmobile MAC: 00:00:00:00:00:00 bssid: 00:00
:00:00:00:00 ipaddr: 000.000.000.000 connected: 0
I/Jni WCMLinkStatus ( 512): addr: Ox0
E/Jni WCM_Init( 512): Not initialized
D/MP-Decision( 747): UP Nw:2.700000 Tw:180 rq:3.200000 seq:199
D/Tethering( 241): sendTetherStateChangedBroadcast 1, 0, 0
D/Tethering( 241): InitialState.processMessage what=4
D/Tethering( 241): sendTetherStateChangedBroadcast 0, 0, 0
D/SoftapController( 120): Softap fwReload - Ok
D/CommandListener( 120): Setting iface cfg
D/CommandListener( 120): Trying to bring down wlan0
D/CommandListener( 120): broadcast flag ignored
D/CommandListener( 120): multicast flag ignored
E/WifiHW ( 241): Unable to open connection to supplicant on "wlan0": No such f
ile or directory
D/NetworkManagementService( 241): rsp <213 00:90:4c:11:22:33 0.0.0.0 0 [down br
oadcast multicast]>
D/NetworkManagementService( 241): flags <[down broadcast multicast]>
D/MP-Decision( 747): DOWN Ns:2.100000 Ts:270 rq:0.700000 seq:327 (Up time:495)
D/Tethering( 241): MasterInitialState.processMessage what=3
D/Tethering( 241): MasterInitialState.processMessage what=3
D/Tethering( 241): MasterInitialState.processMessage what=3
D/Tethering( 241): MasterInitialState.processMessage what=3
D/CMStats ( 523): Prompting user for opt-in.
D/CMStats ( 523): Prompting user for opt-in.
D/CMStats ( 523): Prompting user for opt-in.
D/CMStats ( 523): Prompting user for opt-in.
D/MP-Decision( 747): UP Nw:2.700000 Tw:180 rq:4.700000 seq:198
D/MP-Decision( 747): DOWN Ns:2.100000 Ts:270 rq:0.000000 seq:274 (Up time:274)
D/dalvikvm( 595): GC_CONCURRENT freed 1611K, 77% free 2916K/12288K, paused 1ms+
3ms
V/MediaScanner( 595): pruneDeadThumbnailFiles... android.database.sqlite.SQLite
[email protected]
V/MediaScanner( 595): /pruneDeadThumbnailFiles... android.database.sqlite.SQLit
[email protected]
I/power ( 241): *** set_screen_state 0
D/Sensors ( 241): handle : 4 en: 0, v010.0 - Try to resolve lock issue
D/Sensors ( 241): lock_status = 4
D/Sensors ( 241): Andy: MPLSensor::enable: lock1
W/MPL-sup ( 241): MLGetAKMComassStatus, gAKMCompassStatus = 0
D/Sensors ( 241): mEnabled = 0x0
D/Sensors ( 241): set_power_states++: enabled_sensors: 0 dmp_started: 1
D/Sensors ( 241): Before if statment: cs:0 rs:0 en_ped:0 da_ped:0 en_g:0 da_g:0
D/Sensors ( 241): Stopping DMP
I/ ( 241): mpu3050_suspend: suspending sensors to 0000
I/ ( 241): mpu3050_suspend: Will resume next to 0070
D/Sensors ( 241): inside if(s_use_timerirq)
D/Sensors ( 241): set_power_states--
D/Sensors ( 241): Andy: MPLSensor::enable: unlock1
D/Sensors ( 241): calling MLStoreCalibration()
D/Sensors ( 241): MPLSensor::enable--1
D/SurfaceFlinger( 123): About to give-up screen, flinger = 0xd81918
E/msm8660.gralloc( 123): In fb_enableHDMIOutput: externaltype = 0
I/SamplingRateChangeProcessor( 241): Increased sampling rate.
V/AudioHardwareMSM8660( 126): setParameters() screen_state=off
D/OpenGLRenderer( 435): Flushing caches (mode 0)
D/AccelerometerListener( 498): enable(false)
I/BATT_ALG( 130): batt_alg_overtemp_check:temp:377, isOver_temp:0
I/BATT_ALG( 130): vol=4017;curr=317;dis_curr=0;temp=377;id=2;level=82;chg_src=1
;chg_en=1;ov_chg=0;isOver_temp=0;timer=60;safety_count=180
I/power ( 241): *** set_screen_state 1
D/Sensors ( 241): handle : 4 en: 1, v010.0 - Try to resolve lock issue
D/Sensors ( 241): lock_status = 2
D/Sensors ( 241): Andy: MPLSensor::enable: lock1
D/Sensors ( 241): mEnabled = 0x10
D/Sensors ( 241): set_power_states++: enabled_sensors: 16 dmp_started: 0
D/Sensors ( 241): Before if statment: cs:0 rs:1 en_ped:0 da_ped:0 en_g:0 da_g:0
D/Sensors ( 241): STOP timerirq_1
I/WindowManager( 241): No lock screen!
D/Sensors ( 241): Starting DMP
I/ ( 241): mpu3050_resume: Resuming to 0070
D/Sensors ( 241): Exit: Starting DMP
D/Sensors ( 241): set_power_states--
D/Sensors ( 241): Andy: MPLSensor::enable: unlock1
D/Sensors ( 241): MPLSensor::enable--1
D/Sensors ( 241): (llu)G_Delay = 200
I/ ( 241): mpu3050_resume: Resuming to 0070
I/ ( 241): mpu3050_suspend: suspending sensors to 0070
I/ ( 241): mpu3050_suspend: Will resume next to 0070
I/MPL-ml ( 241): Actual ODR: 25 Hz
D/Sensors ( 241): (llu)G_Delay = 66
I/ ( 241): mpu3050_resume: Resuming to 0070
I/ ( 241): mpu3050_suspend: suspending sensors to 0070
I/ ( 241): mpu3050_suspend: Will resume next to 0070
I/MPL-ml ( 241): Actual ODR: 25 Hz
I/SamplingRateChangeProcessor( 241): Decreased sampling rate.
D/SurfaceFlinger( 123): Screen about to return, flinger = 0xd81918
E/msm8660.gralloc( 123): In fb_enableHDMIOutput: externaltype = 0
V/AudioHardwareMSM8660( 126): setParameters() screen_state=on
D/MP-Decision( 747): UP Nw:2.700000 Tw:180 rq:4.400000 seq:197
D/AccelerometerListener( 498): enable(false)
D/MP-Decision( 747): DOWN Ns:2.100000 Ts:270 rq:0.000000 seq:327 (Up time:441)
D/Tethering( 241): sendTetherStateChangedBroadcast 1, 0, 0
E/wpa_supplicant( 1526): Could not set interface wlan0 flags: Operation not perm
itted
E/wpa_supplicant( 1526): nl80211: Could not set interface 'wlan0' UP
E/wpa_supplicant( 1526): wlan0: Failed to initialize driver interface
E/WifiHW ( 241): Supplicant not running, cannot connect
E/WifiHW ( 241): Supplicant not running, cannot connect
E/WifiStateMachine( 241): Failed to setup control channel, restart supplicant
D/SoftapController( 120): Softap fwReload - Ok
D/NetworkManagementService( 241): rsp <213 a8:26:d9:16:7b:9e 0.0.0.0 0 [down br
oadcast multicast]>
D/CommandListener( 120): Setting iface cfg
D/NetworkManagementService( 241): flags <[down broadcast multicast]>
D/CommandListener( 120): Trying to bring down wlan0
D/CommandListener( 120): broadcast flag ignored
D/CommandListener( 120): multicast flag ignored
E/WifiConfigStore( 241): Error parsing configurationjava.io.FileNotFoundExcepti
on: /data/misc/wifi/ipconfig.txt: open failed: ENOENT (No such file or directory
)
E/wpa_supplicant( 1677): wpa_driver_nl80211_driver_cmd: failed to issue private
commands
E/wpa_supplicant( 1677): wpa_driver_nl80211_driver_cmd: failed to issue private
commands
E/wpa_supplicant( 1677): wpa_driver_nl80211_driver_cmd: failed to issue private
commands
E/wpa_supplicant( 1677): wpa_driver_nl80211_driver_cmd: failed to issue private
commands
E/WifiStateMachine( 241): set suspend optimizations failed!
E/wpa_supplicant( 1677): wpa_driver_nl80211_driver_cmd: failed to issue private
commands
E/WifiStateMachine( 241): Failed to set country code cn
E/wpa_supplicant( 1677): wpa_driver_nl80211_driver_cmd: failed to issue private
commands
E/WifiStateMachine( 241): Failed to set frequency band 0
E/wpa_supplicant( 1677): wpa_driver_nl80211_driver_cmd: failed to issue private
commands
W/wpa_supplicant( 1677): wlan0: Failed to initiate AP scan
E/wpa_supplicant( 1677): wpa_driver_nl80211_driver_cmd: failed to issue private
commands
E/wpa_supplicant( 1677): wpa_driver_nl80211_driver_cmd: failed to issue private
commands
I/wpa_supplicant( 1677): wlan0: CTRL-EVENT-DRIVER-STATE HANGED
W/wpa_supplicant( 1677): wlan0: Failed to initiate AP scan
E/wpa_supplicant( 1677): wpa_driver_nl80211_driver_cmd: failed to issue private
commands
D/CommandListener( 120): Clearing all IP addresses on wlan0
I/Jni WCMLinkStatus ( 512): ssid: Tmobile MAC: 00:00:00:00:00:00 bssid: 00:00
:00:00:00:00 ipaddr: 000.000.000.000 connected: 0
I/Jni WCMLinkStatus ( 512): addr: Ox0
E/Jni WCM_Init( 512): Not initialized
I/Jni WCMLinkStatus ( 512): ssid: Tmobile MAC: 00:00:00:00:00:00 bssid: 00:00
:00:00:00:00 ipaddr: 000.000.000.000 connected: 0
I/Jni WCMLinkStatus ( 512): addr: Ox0
E/Jni WCM_Init( 512): Not initialized
D/Tethering( 241): InitialState.processMessage what=4
D/Tethering( 241): sendTetherStateChangedBroadcast 0, 0, 0
W/NetworkStats( 241): dropping UID delta from unknown iface: iface=wlan0 uid=0
set=DEFAULT tag=0x0 rxBytes=0 rxPackets=0 txBytes=384 txPackets=6 operations=0
I/wpa_supplicant( 1677): wlan0: CTRL-EVENT-TERMINATING
W/Netd ( 120): No subsystem found in netlink event
D/NetlinkEvent( 120): Unexpected netlink message. type=0x11
I/Jni WCMLinkStatus ( 512): ssid: Tmobile MAC: 00:00:00:00:00:00 bssid: 00:00
:00:00:00:00 ipaddr: 000.000.000.000 connected: 0
I/Jni WCMLinkStatus ( 512): addr: Ox0
E/Jni WCM_Init( 512): Not initialized
I/Jni WCMLinkStatus ( 512): ssid: Tmobile MAC: 00:00:00:00:00:00 bssid: 00:00
:00:00:00:00 ipaddr: 000.000.000.000 connected: 0
I/Jni WCMLinkStatus ( 512): addr: Ox0
E/Jni WCM_Init( 512): Not initialized
D/Tethering( 241): sendTetherStateChangedBroadcast 1, 0, 0
D/Tethering( 241): InitialState.processMessage what=4
D/Tethering( 241): sendTetherStateChangedBroadcast 0, 0, 0
D/SoftapController( 120): Softap fwReload - Ok
D/CommandListener( 120): Setting iface cfg
D/CommandListener( 120): Trying to bring down wlan0
D/CommandListener( 120): broadcast flag ignored
D/CommandListener( 120): multicast flag ignored
D/NetworkManagementService( 241): rsp <213 00:90:4c:11:22:33 0.0.0.0 0 [down br
oadcast multicast]>
D/NetworkManagementService( 241): flags <[down broadcast multicast]>

Categories

Resources