The only version of the Baseband that I was able to get to work with CM10 is the version C baseband, that is why it is flashed during the CM10 install.
Version C Baseband works somewhat with the RIL Libraries and Binaries that are in 985hPaKicK CM10, but on our ROM the 4G does not work
I am not sure where 985hPaKicK got his RIL files from, but I do not think they are from the Optimus LTE 2, they might be, but I am not sure
If we try to use the RIL libraries / binaries from any of the Motion ROMS, it just does not work, there is no communication with the Radio
I have tried using RIL libraries / binaries from a lot of different phones, only a few of them had any communication with the radio
One was from an HTC phone, I do not remember the model, it was a while ago when I tried it. It does not work good at all, but it does communicate with the Radio
some_HTC_RIL.zip
The LG P930 has many variants, read this link for more details.
http://forum.xda-developers.com/showthread.php?t=1419940
A lot of the P930 RIL libraries/binaries communicate with our Radio
The L-01D RIL seems to communicate with the Radio the best, I just tested it tonight, but since my Motion is not active I can not really test it.
L-01D_ril.zip
The su640 RIL communicates with the Radio
su640_ril.zip
The RIL files from the CM10 P930 ROM communicates with the Radio
cm_p930ril.zip
The I_BELL RIL files does not communicate with the Radio, but it seems like it should work the best out of the 4, based on the specs, so I am confused
I_BELL_ril.zip
SO HOW IN THE HECK DO YOU TEST RIL FILES ?
Well the first step is to make sure you have all the required libraries, the best way to do this is to open adb shell and type "rild", if you dont get any errors your probably have them all, but if you see something like this, you do not have all the libraries
[HIGH]hroark13@dev1a:~/lgcm$ adb shell
root@android:/ # rild
dlopen failed: Cannot load library: reloc_library[1331]: 4846 cannot locate 'imsp_get_service_object_internal_v01'...
255|root@android:/ # [/HIGH]if you get an error like that you have to grep the other files in the source rom and find which binaries contain that code
[HIGH]
hroark13@dev1a:~/lgcm$
hroark13@dev1a:~/lgcm$ grep -r "imsp_get_service_object_internal_v01" /home/hroark13/MS77010d_BASE_ROM > imsp_get_service_object_internal_v01.txt
hroark13@dev1a:~/lgcm$ [/HIGH]then you open your imsp_get_service_object_internal_v01.txt and you will see
Binary file /home/hroark13/MS77010d_BASE_ROM/system/bin/qmiproxy matches
Binary file /home/hroark13/MS77010d_BASE_ROM/system/lib/libqmiservices.so matches
Binary file /home/hroark13/MS77010d_BASE_ROM/system/lib/libril-qc-qmi-1.so matches
so obviously you need those files too
[HIGH]adb push /home/hroark13/MS77010d_BASE_ROM/system/bin/qmiproxy /system/bin
adb shell "chmod 777 /system/bin/qmiproxy"
adb push /home/hroark13/MS77010d_BASE_ROM/system/lib/libqmiservices.so /system/lib
adb push /home/hroark13/MS77010d_BASE_ROM/system/lib/libril-qc-qmi-1.so /system/lib
[/HIGH]you need to keep doing this until you get no errors when you type rild
and you should reboot after each push, it is probably best if you push the files while in CWM
Once you have all of your RIL libraries and binaries then you can test with
[HIGH]adb shell logcat -b radio > radiolog.txt[/HIGH]open your radiolog.txt and look for errors and such
try changing your RIL build prop settings and see if it makes a difference
I can not test my Motion radio, my motion is not activated, and I just do not have the time for this stuff anymore
I hope this thread helps you, I will probably be banned, and this thread will be deleted, so copy text and links while you can
hK
Version C Baseband works somewhat with the RIL Libraries and Binaries that are in 985hPaKicK CM10, but on our ROM the 4G does not work
I am not sure where 985hPaKicK got his RIL files from, but I do not think they are from the Optimus LTE 2, they might be, but I am not sure
If we try to use the RIL libraries / binaries from any of the Motion ROMS, it just does not work, there is no communication with the Radio
I have tried using RIL libraries / binaries from a lot of different phones, only a few of them had any communication with the radio
One was from an HTC phone, I do not remember the model, it was a while ago when I tried it. It does not work good at all, but it does communicate with the Radio
some_HTC_RIL.zip
The LG P930 has many variants, read this link for more details.
http://forum.xda-developers.com/showthread.php?t=1419940
A lot of the P930 RIL libraries/binaries communicate with our Radio
The L-01D RIL seems to communicate with the Radio the best, I just tested it tonight, but since my Motion is not active I can not really test it.
L-01D_ril.zip
The su640 RIL communicates with the Radio
su640_ril.zip
The RIL files from the CM10 P930 ROM communicates with the Radio
cm_p930ril.zip
The I_BELL RIL files does not communicate with the Radio, but it seems like it should work the best out of the 4, based on the specs, so I am confused
I_BELL_ril.zip
SO HOW IN THE HECK DO YOU TEST RIL FILES ?
Well the first step is to make sure you have all the required libraries, the best way to do this is to open adb shell and type "rild", if you dont get any errors your probably have them all, but if you see something like this, you do not have all the libraries
[HIGH]hroark13@dev1a:~/lgcm$ adb shell
root@android:/ # rild
dlopen failed: Cannot load library: reloc_library[1331]: 4846 cannot locate 'imsp_get_service_object_internal_v01'...
255|root@android:/ # [/HIGH]if you get an error like that you have to grep the other files in the source rom and find which binaries contain that code
[HIGH]
hroark13@dev1a:~/lgcm$
hroark13@dev1a:~/lgcm$ grep -r "imsp_get_service_object_internal_v01" /home/hroark13/MS77010d_BASE_ROM > imsp_get_service_object_internal_v01.txt
hroark13@dev1a:~/lgcm$ [/HIGH]then you open your imsp_get_service_object_internal_v01.txt and you will see
Binary file /home/hroark13/MS77010d_BASE_ROM/system/bin/qmiproxy matches
Binary file /home/hroark13/MS77010d_BASE_ROM/system/lib/libqmiservices.so matches
Binary file /home/hroark13/MS77010d_BASE_ROM/system/lib/libril-qc-qmi-1.so matches
so obviously you need those files too
[HIGH]adb push /home/hroark13/MS77010d_BASE_ROM/system/bin/qmiproxy /system/bin
adb shell "chmod 777 /system/bin/qmiproxy"
adb push /home/hroark13/MS77010d_BASE_ROM/system/lib/libqmiservices.so /system/lib
adb push /home/hroark13/MS77010d_BASE_ROM/system/lib/libril-qc-qmi-1.so /system/lib
[/HIGH]you need to keep doing this until you get no errors when you type rild
and you should reboot after each push, it is probably best if you push the files while in CWM
Once you have all of your RIL libraries and binaries then you can test with
[HIGH]adb shell logcat -b radio > radiolog.txt[/HIGH]open your radiolog.txt and look for errors and such
try changing your RIL build prop settings and see if it makes a difference
I can not test my Motion radio, my motion is not activated, and I just do not have the time for this stuff anymore
I hope this thread helps you, I will probably be banned, and this thread will be deleted, so copy text and links while you can
hK