-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[hoki] wifi support #224
Comments
Great work! For what it's worth these wlan kernel driver might be more suited: https://github.com/Nhannh2791/Linux/tree/master/kernel/private/msm-fossil-cw-modules/wlan since it specifically for We might be able to use Does |
Yes-ish. I just tried, and got this:
But then I tried again, and it worked. Will investigate. |
Hey, new to astroidos coming from postmarketos but I just got this device so doing a bit of reading on it so please excuse my lack of understanding. I also haven't a chance to setup a build environment yet so no testing done, just code reviewing. Couldn't we just copy beluga for this? Basically you would just have to change the board platform in the same sense as adding an additional So in my theory by using Beluga wlan module as an example
As we can see from the Android.mk all the following boards should be supported under pronto. |
TL;DR: wifi appears to work with an externally-provided driver
I tried this driver: https://github.com/Dev-msm8953/vendor_qcom_opensource_wlan_prima, which builds after providing an empty
include/linux/wakelock.h
file in the kernel tree.WiFi appears to work with it after some modifications (disable BT, try to get it to stop doing assoc and roaming in the driver, provide mac address in
/lib/firmware
, enable withecho 1 > /dev/wcnss_wlan
, load the module,rfkill unblock 0
, then starthostapd
andwpa_supplicant
, manually configure IP and route,ssh
works)!Now I should figure out which of these modifications are actually necessary, and whether a stock driver would be preferable.
The text was updated successfully, but these errors were encountered: