Page 5 of 14 FirstFirst ... 2345678 ... LastLast
Results 101 to 125 of 329
Like Tree50Likes
  1. Thread Author  Thread Author    #101  
    sellers86's Avatar

    Posts
    1,823 Posts
    ROM
    CNA/CM9/Mirage

    Default Re: [ROM][ALPHA][WIP][ICS]: CodenameAndroid

    made some edits to the boardconfig.mk (wifi changes) and im running a build now. wish me luck
    Guess whos coming back!
    Thanked by 2:
  2. #102  
    tcrider84's Avatar

    Posts
    117 Posts
    ROM
    Quattrimus CM9 beta1pre3

    Default Re: [ROM][ALPHA][WIP][ICS]: CodenameAndroid

    Quote Originally Posted by sellers86 View Post
    I haven't done any git, the vendor files are bobzhomes ics and the device files are modified bobzhome ics. Its not the kernel, I've tried different kernels. I've switch the wireless.ko in system/lib/modules with the one from the rom I pulled the boot.img from. The reason it wouldn't turn on is because the build.prop had it set to eth0 instead of wlan0. Now it will turn on, it just wont pick anything up.

    Sent from my LG-VM670 using Tapatalk
    wireless.ko shouldnt matter, all of them are built from the same bcm4325 drivers located inside the kernel (system/kernel/lge/thunderc/drivers/net/wireless/bcm4325)

    the wifi section of your vendor/lge/thunderc-common/boardconfigcommon.mk should look like this:
    Code:
    #Wifi
    WPA_SUPPLICANT_VERSION          := VER_0_6_X
    BOARD_WLAN_DEVICE               := bcm4325
    BOARD_WEXT_NO_COMBO_SCAN        := true
    BOARD_WPA_SUPPLICANT_DRIVER     := WEXT
    WIFI_DRIVER_HAS_LGE_SOFTAP      := true
    WIFI_DRIVER_MODULE_PATH         := "/system/lib/modules/wireless.ko"
    WIFI_DRIVER_MODULE_ARG          := "firmware_path=/etc/wl/rtecdc.bin nvram_path=/etc/wl/nvram.txt config_path=/data/misc/wifi/config"
    WIFI_DRIVER_MODULE_NAME         := "wireless"
    WIFI_DRIVER_FW_PATH_STA         := "/system/etc/wl/rtecdc.bin"
    WIFI_DRIVER_FW_PATH_AP          := "/system/etc/wl/rtecdc-apsta.bin"
    BOARD_SOFTAP_DEVICE_TI          := bcm4325
    the following should be removed from bobzome's boardconfigcommon.mk with reasons listed:

    hostapd configuration is not set in /kernel/arch/arm/configs/thundercvm670_defconfig, so this is not necessary:
    BOARD_HOSTAPD_DRIVER := bcm4325

    only wpa_supplicant 8 uses external lib, and only bcmdhd drivers work with it, so this is not needed:
    BOARD_HOSTAPD_PRIVATE_LIB := lib_driver_cmd_wext

    the bcm4325 does not have a p2p driver. it has the wlan driver(rtecdc.bin) and the soft ap driver (rtecdc-apsta.bin), furthermore p2p was not introduced until wpa_supplicant 8, and is not a feature in wpa_supplicant 6. the coding for the drivers themselves in the kernel have NO support for p2p, so chances are wifi-direct will not work for the OV. this is not needed:
    BOARD_P2P_DEVICE_TI := bcm4325


    I learned all this after spending a week fighting with the broadcom drivers. I still havent updated my github with the correct settings >.>
    Thanked by:
  3. Thread Author  Thread Author    #103  
    sellers86's Avatar

    Posts
    1,823 Posts
    ROM
    CNA/CM9/Mirage

    Default Re: [ROM][ALPHA][WIP][ICS]: CodenameAndroid

    those were almost the exact edits i made. the wifi settings in the boardconfig were a little odd in order and there were missing parts so i pulled the wifi section of the boardconfigcommon on my cm9 build and threw them in there.
    Guess whos coming back!
  4. #104  
    tcrider84's Avatar

    Posts
    117 Posts
    ROM
    Quattrimus CM9 beta1pre3

    Default Re: [ROM][ALPHA][WIP][ICS]: CodenameAndroid

    also the system/vendor/lge/vm670/vm670-vendor-blobs.mk should include this for the wireless proprietary files to copy over:

    Code:
    # Wifi
    PRODUCT_COPY_FILES += \
        vendor/lge/VM670/proprietary/system/etc/wifi/wpa_supplicant.conf:system/etc/wifi/wpa_supplicant.conf \
        vendor/lge/VM670/proprietary/system/etc/wl/nvram.txt:system/etc/wl/nvram.txt \
        vendor/lge/VM670/proprietary/system/etc/dhcpd/dhcpcd.conf:system/etc/dhcpcd/dhcpcd.conf \
        vendor/lge/VM670/proprietary/system/etc/wl/rtecdc.bin:system/etc/wl/rtecdc.bin \
        vendor/lge/VM670/proprietary/system/etc/wl/rtecdc-apsta.bin:system/etc/wl/rtecdc-apsta.bin \
        vendor/lge/VM670/proprietary/system/etc/wl/rtecdc-mfgtest.bin:system/etc/wl/rtecdc-mfgtest.bin \
        vendor/lge/VM670/proprietary/system/etc/firmware/wlan/cfg.dat:system/etc/firmware/wlan/cfg.dat \
        vendor/lge/VM670/proprietary/system/etc/firmware/wlan/qcom_cfg.ini:system/etc/firmware/wlan/qcom_cfg.ini \
        vendor/lge/VM670/proprietary/system/etc/firmware/wlan/qcom_fw.bin:system/etc/firmware/wlan/qcom_fw.bin \
        vendor/lge/VM670/proprietary/system/bin/wl:system/bin/wl
    Thanked by 2:
  5. #105  
    jonny5449's Avatar
    AC Citizen

    Posts
    2,567 Posts
    ROM
    Cm7/Cm9/Cm10

    Default

    How close is wi fi

    I'm Rockin G.T.R On My Optimus $
  6. Thread Author  Thread Author    #106  
    sellers86's Avatar

    Posts
    1,823 Posts
    ROM
    CNA/CM9/Mirage

    Default Re: [ROM][ALPHA][WIP][ICS]: CodenameAndroid

    idk yet
    Guess whos coming back!
    Thanked by 2:
  7. Thread Author  Thread Author    #107  
    sellers86's Avatar

    Posts
    1,823 Posts
    ROM
    CNA/CM9/Mirage

    Default Re: [ROM][ALPHA][WIP][ICS]: CodenameAndroid

    well, i screwed my build environment up. lol. probably done for today, ill work more tomorrow.
    Guess whos coming back!
  8. #108  
    Badboytoast's Avatar

    Posts
    821 Posts
    Global Posts
    822 Global Posts
    ROM
    ICS 2.3.7/ tvall kernel

    Default

    Quote Originally Posted by tcrider84 View Post
    also the system/vendor/lge/vm670/vm670-vendor-blobs.mk should include this for the wireless proprietary files to copy over:

    Code:
    # Wifi
    PRODUCT_COPY_FILES += \
        vendor/lge/VM670/proprietary/system/etc/wifi/wpa_supplicant.conf:system/etc/wifi/wpa_supplicant.conf \
        vendor/lge/VM670/proprietary/system/etc/wl/nvram.txt:system/etc/wl/nvram.txt \
        vendor/lge/VM670/proprietary/system/etc/dhcpd/dhcpcd.conf:system/etc/dhcpcd/dhcpcd.conf \
        vendor/lge/VM670/proprietary/system/etc/wl/rtecdc.bin:system/etc/wl/rtecdc.bin \
        vendor/lge/VM670/proprietary/system/etc/wl/rtecdc-apsta.bin:system/etc/wl/rtecdc-apsta.bin \
        vendor/lge/VM670/proprietary/system/etc/wl/rtecdc-mfgtest.bin:system/etc/wl/rtecdc-mfgtest.bin \
        vendor/lge/VM670/proprietary/system/etc/firmware/wlan/cfg.dat:system/etc/firmware/wlan/cfg.dat \
        vendor/lge/VM670/proprietary/system/etc/firmware/wlan/qcom_cfg.ini:system/etc/firmware/wlan/qcom_cfg.ini \
        vendor/lge/VM670/proprietary/system/etc/firmware/wlan/qcom_fw.bin:system/etc/firmware/wlan/qcom_fw.bin \
        vendor/lge/VM670/proprietary/system/bin/wl:system/bin/wl
    Could you post this file/. And help seller find a fix, also the camera preview would be nice just a suggestion
    Because CNA its the Rom!!


    Sent from my LG-VM670 using Tapatalk 2
    Thanked by:
  9. Thread Author  Thread Author    #109  
    sellers86's Avatar

    Posts
    1,823 Posts
    ROM
    CNA/CM9/Mirage

    Default

    Quote Originally Posted by Badboytoast View Post
    Could you post this file/. And help seller find a fix, also the camera preview would be nice just a suggestion
    Because CNA its the Rom!!


    Sent from my LG-VM670 using Tapatalk 2
    He doesn't need to post the file, I already have it (both for cm9 and cna). Ill try getting camera preview sometime but I'm not sure if the code will work or not.

    Sent from my LG-VM670 using Tapatalk
    Thanked by:
  10. #110  
    Badboytoast's Avatar

    Posts
    821 Posts
    Global Posts
    822 Global Posts
    ROM
    ICS 2.3.7/ tvall kernel

    Default

    Cool!

    Sent from my LG-VM670 using Tapatalk 2
  11. #111  
    topdawg661's Avatar

    Posts
    325 Posts
    ROM
    The GODZILLA Rom

    Default

    Would the wifi fix zip on xda work?

    Sent from my VM670 using Tapatalk 2
    Thanked by:
  12. Thread Author  Thread Author    #112  
    sellers86's Avatar

    Posts
    1,823 Posts
    ROM
    CNA/CM9/Mirage

    Default

    Quote Originally Posted by topdawg661 View Post
    Would the wifi fix zip on xda work?

    Sent from my VM670 using Tapatalk 2
    Idk. I'm not at home right now, ill check it out tomorrow

    Sent from my LG-VM670 using Tapatalk
    Thanked by:
  13. #113  
    inceyet's Avatar

    Posts
    360 Posts
    ROM
    MIUIgb

    Default

    Yo sellers don't know if this has been addressed but I didn't see no music player I need my player side note I can get my own which I did aside that and the known bugs which I know your on your way to fixing can't wait and drews touch recovery works with this. thanks for the hard work

    Sent from my LG-VM670 using Android Central Forums
    Thanked by:
  14. Thread Author  Thread Author    #114  
    sellers86's Avatar

    Posts
    1,823 Posts
    ROM
    CNA/CM9/Mirage

    Default Re: [ROM][ALPHA][WIP][ICS]: CodenameAndroid

    Quote Originally Posted by inceyet View Post
    Yo sellers don't know if this has been addressed but I didn't see no music player I need my player side note I can get my own which I did aside that and the known bugs which I know your on your way to fixing can't wait and drews touch recovery works with this. thanks for the hard work

    Sent from my LG-VM670 using Android Central Forums
    Ill pull apollo from my cm9 build and put it in there.
    Guess whos coming back!
    Thanked by 2:
  15. Thread Author  Thread Author    #115  
    sellers86's Avatar

    Posts
    1,823 Posts
    ROM
    CNA/CM9/Mirage

    Default Re: [ROM][ALPHA][WIP][ICS]: CodenameAndroid

    Quote Originally Posted by topdawg661 View Post
    Would the wifi fix zip on xda work?

    Sent from my VM670 using Tapatalk 2
    my guess is no, ill give it a shot sometime though.
    Guess whos coming back!
    Thanked by 3:
  16. #116  
    jonny5449's Avatar
    AC Citizen

    Posts
    2,567 Posts
    ROM
    Cm7/Cm9/Cm10

    Default

    Gonna test wi fi fix wish me luck.....

    Looking for good cm9 or cm7 themes??? visit this site for good themes.
  17. #117  
    jonny5449's Avatar
    AC Citizen

    Posts
    2,567 Posts
    ROM
    Cm7/Cm9/Cm10

    Default

    Nope failed status0

    Looking for good cm9 or cm7 themes??? visit this site for good themes.
  18. Thread Author  Thread Author    #118  
    sellers86's Avatar

    Posts
    1,823 Posts
    ROM
    CNA/CM9/Mirage

    Default

    Quote Originally Posted by jonny5449 View Post
    Nope failed status0

    Looking for good cm9 or cm7 themes??? visit this site for good themes.
    Well then you would have to install the apk by itsself. But it wouldn't work anyways because there is an edit that needs to be made in the build.prop

    Sent from my LG-VM670 using Tapatalk
  19. #119  
    jonny5449's Avatar
    AC Citizen

    Posts
    2,567 Posts
    ROM
    Cm7/Cm9/Cm10

    Default

    Quote Originally Posted by sellers86 View Post
    Well then you would have to install the apk by itsself. But it wouldn't work anyways because there is an edit that needs to be made in the build.prop

    Sent from my LG-VM670 using Tapatalk
    Hmmmmmmmmmmmmmm

    Looking for good cm9 or cm7 themes??? visit this site for good themes.
  20. Thread Author  Thread Author    #120  
    sellers86's Avatar

    Posts
    1,823 Posts
    ROM
    CNA/CM9/Mirage

    Default

    Quote Originally Posted by jonny5449 View Post
    Hmmmmmmmmmmmmmm

    Looking for good cm9 or cm7 themes??? visit this site for good themes.
    Hmmmmm what?

    Sent from my LG-VM670 using Tapatalk
  21. #121  
    jonny5449's Avatar
    AC Citizen

    Posts
    2,567 Posts
    ROM
    Cm7/Cm9/Cm10

    Default

    Quote Originally Posted by sellers86 View Post
    Hmmmmm what?

    Sent from my LG-VM670 using Tapatalk
    Trying to think
    Looking and comparing build.props see if I can help but I'm not that smart gonna start looking into sense on the s cuz its being recontinued

    Looking for good cm9 or cm7 themes??? visit this site for good themes.
  22. Thread Author  Thread Author    #122  
    sellers86's Avatar

    Posts
    1,823 Posts
    ROM
    CNA/CM9/Mirage

    Default

    Quote Originally Posted by jonny5449 View Post
    Trying to think
    Looking and comparing build.props see if I can help but I'm not that smart gonna start looking into sense on the s cuz its being recontinued

    Looking for good cm9 or cm7 themes??? visit this site for good themes.
    I already know the edit. Search eth0 and change it to wlan0

    Sent from my LG-VM670 using Tapatalk
  23. #123  
    jonny5449's Avatar
    AC Citizen

    Posts
    2,567 Posts
    ROM
    Cm7/Cm9/Cm10

    Default

    Quote Originally Posted by sellers86 View Post
    I already know the edit. Search eth0 and change it to wlan0

    Sent from my LG-VM670 using Tapatalk
    When will u upload build with fix then?????

    Looking for good cm9 or cm7 themes??? visit this site for good themes.
  24. Thread Author  Thread Author    #124  
    sellers86's Avatar

    Posts
    1,823 Posts
    ROM
    CNA/CM9/Mirage

    Default

    Quote Originally Posted by jonny5449 View Post
    When will u upload build with fix then?????

    Looking for good cm9 or cm7 themes??? visit this site for good themes.
    all it does is allows the wifi to turn on. But you can't connect or find any hotspots.

    Sent from my LG-VM670 using Tapatalk
  25. #125  
    jonny5449's Avatar
    AC Citizen

    Posts
    2,567 Posts
    ROM
    Cm7/Cm9/Cm10

    Default

    Quote Originally Posted by sellers86 View Post
    all it does is allows the wifi to turn on. But you can't connect or find any hotspots.

    Sent from my LG-VM670 using Tapatalk
    Weird

    Looking for good cm9 or cm7 themes??? visit this site for good themes.
Page 5 of 14 FirstFirst ... 2345678 ... LastLast

Posting Permissions