Michael Vogt
Michael Vogt
I have a similar issue: ``` Jan 20 18:21:19 hostname wpa_supplicant[226]: wlan0: CTRL-EVENT-DISCONNECTED bssid=00:23:df:f8:b7:51 reason=3 locally_generated=1 Jan 20 18:21:20 hostname wpa_supplicant[226]: wlan0: Trying to associate with 00:23:df:f8:b7:51 (SSID='myssid' freq=2452 MHz)...
more details, i tested with another hardware to be sure its not hardware related.. when i run `wpa_supplicant -dd` the output shows this: ``` wlan0: set_disable_max_amsdu: -1 wlan0: set_ampdu_factor: -1...
and this is the wpa_supplicant log when i try to connect an open network: ``` Limit connection to BSSID 00:23:df:f8:b7:51 freq=2452 MHz based on scan results (bssid_set=0) wlan0: set_disable_max_amsdu: -1...
hey charlie, any plans to release the v1.4 version for android soon? cheers
I did `git cloning termux-packages` and running ./build-package.sh - but not on the device but on my macbook. And no changes to the nodejs packages - i basically followed https://github.com/termux/termux-packages/wiki/Build-environment...
Note: I did NOT build the node package on my Android device, but on my Macbook in a Docker container. I the installed the node binary on my Android device....
More info: - the Android Termux App has targetSDK 28, that's why the os.networkInterfaces() call works - if the Termux App targets SDK 30, the os.networkInterfaces() call will fail with...
Thanks @thunder-coding ! I applied the patch building nodejs: ``` ... Applying patch: deps-uv-src-unix-core.c.patch Applying patch: deps-uv-src-unix-net.c.patch ifa_flags & IFF_UP) && (ent->ifa_flags & IFF_RUNNING))) ~~~^ ../deps/uv/src/unix/linux-core.c:636:38: note: forward declaration of...
Nice, that patch worked. Now i get a different error: `A system error occurred: undefined returned undefined (undefined)` with stacktrace: ``` at Object.networkInterfaces (node:os:264:16) at userspace js code where os.networkInterfaces()...
> Well that's because your code (or most probably one of your dependencies) hasn't been designed to work in situations where uv_network_interfaces might not be implemented. Not sure if I...