tdm
Android Expert
what did you do to get it compiling?
I've not tried since the wee hours and had just got CM10 to repo sync a few ago lol
Just applied the CM10 diffs in iproj-common.

Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
what did you do to get it compiling?
I've not tried since the wee hours and had just got CM10 to repo sync a few ago lol

switching to the jellybean branch wouldnt work?Just applied the CM10 diffs in iproj-common.![]()
switching to the jellybean branch wouldnt work?

CM10 is JBCM10 is jellybean branch.![]()

yea I meant the iprj-common repoCM10 is jellybean branch.![]()


Lol well I learned something today.I wouldnt call AOKP a minimal build, more like another cm kang even though when AOKP started out they were going to build straight from AOSP, they now merge in most of CM's backend stuff at least, as well add in their own coding too. Not taking nothing away from em, just calling what it is... AOSP/CM/AOKP = AOKP
CM = AOSP + added features.

Clean merge, bad compile. Looking...
Fixed the compile. Will it boot? Stay tuned...

D/libEGL ( 679): loaded /system/lib/egl/libEGL_adreno200.so
D/libEGL ( 679): loaded /system/lib/egl/libGLESv1_CM_adreno200.so
D/libEGL ( 679): loaded /system/lib/egl/libGLESv2_adreno200.so
I/Adreno200-EGL( 679): <qeglDrvAPI_eglInitialize:294>: EGL 1.4 QUALCOMM build: GFXGITP4_AU_LINUX_ANDROID_JB.04.01.01.00.036+PATCH[ES]_msm8960_JB_CL2648890_release_ENGG (CL2648890)
I/Adreno200-EGL( 679): Build Date: 07/31/12 Tue
I/Adreno200-EGL( 679): Local Branch: p4-merge-candidate
I/Adreno200-EGL( 679): Remote Branch: quic/master
I/Adreno200-EGL( 679): Local Patches: 55e064af55e39ed47722bcb6fd79bdab10040164 CL2648890: Oxili HWL : Don't bypass filtering on depth formats if comparison function for look ups is enabled for shadow mapping.
I/Adreno200-EGL( 679): bfccf4bb1419e8606fbdcb31bf3472fac4ec72b4 CL2647889: Fixes glComrpessedTexImage so that it checks i
W/Adreno200-EGL( 679): <qeglDrvAPI_eglCreateContext:2324>: EGL_BAD_ALLOC
E/libEGL ( 679): eglMakeCurrent:493 error 3009 (EGL_BAD_MATCH)
E/SurfaceFlinger( 679): Couldn't create a working GLES context. check logs. exiting...
the newer adreno drivers covers em allWish I knew more about developing so I could help you more, tdm. You're doing great work though. Thank you.
EDIT: It says adreno 200. Doesn't the spec use adreno 220? Or is it the same thing? Just a thought.

TDM, just sent you an email about this, linked you the source i could get from decompiling stock ics framework2New build: quattrimus-VS920-cm9-test3.zip
md5=e296103d8885c841cf4734e2102bc57f
The radio/ril still does not work. GPS depends on the radio so it doesn't work either. Most everything else does.
Visible changes:
* PG's lights fix.
* Cameras work.
* Added bacon.
Under the hood:
* Switched product name to i_vzw for cameras.
* Reworked init scripts to match ics leak.
* Added a handful of proprietary services from ics leak.
Areas for devs to investigate:
/system/bin/qcks is segfaulting at startup. What is this and how does its failure impact operation?
/system/bin/qmiproxy is segfaulting. This is probably a ril/radio related service. It may be part of why the radio doesn't work.
/system/bin/ATFWD-daemon is trying to start a service called AtCmdFwd. This is apparently a proprietary service in the vendor's framework:
This may be a part of why the radio doesn't work. "AtCmd" may refer to the radio/modem commands, eg. "AT command" (Hayes modem command set). The modem used in MSM devices doesn't use AT commands, but other devices do (like the OMAP3 based Marquee). Can anyone decompile com.android.internal.atfwd.* so it can be reconstructed and added to the build? That would be a huge help!Code:$ strings framework/services.odex | grep AtCmdFwd AtCmdFwd AtCmdFwd Service ,Lcom/android/internal/atfwd/AtCmdFwdService; starting AtCmdFwd Service $ strings framework/framework2.odex | grep AtCmdFwd AtCmdFwdService AtCmdFwdService.java IAtCmdFwd.java ,Lcom/android/internal/atfwd/AtCmdFwdService; 1Lcom/android/internal/atfwd/IAtCmdFwd$Stub$Proxy; +Lcom/android/internal/atfwd/IAtCmdFwd$Stub; &Lcom/android/internal/atfwd/IAtCmdFwd; $com.android.internal.atfwd.IAtCmdFwd

TDM, just sent you an email about this, linked you the source i could get from decompiling stock ics framework2
Hope it helps
For anyone else who is interested:
http://www.mediafire.com/?0grgmy1au2khm4m
//Off-topic
I'm back![]()

TDM, just sent you an email about this, linked you the source i could get from decompiling stock ics framework2
Hope it helps
For anyone else who is interested:
http://www.mediafire.com/?0grgmy1au2khm4m
//Off-topic
I'm back![]()

welcome back Death!TDM, just sent you an email about this, linked you the source i could get from decompiling stock ics framework2
Hope it helps
For anyone else who is interested:
http://www.mediafire.com/?0grgmy1au2khm4m
//Off-topic
I'm back![]()
TDM, just sent you an email about this, linked you the source i could get from decompiling stock ics framework2
Hope it helps
For anyone else who is interested:
Free Cloud Storage - MediaFire
//Off-topic
I'm back![]()
You are awesomeNo problem, and thank you.
Let me know if that helps.
private void processResetCommand()
{
String str = Environment.getExternalStorageState();
if (("bad_removal".equals(str)) || ("removed".equals(str)) || (!this.mSdReset))
{
Log.d("AtCmarCmdHandler", " Phone Storage MASTER RESET triggered");
this.mContext.sendBroadcast(new Intent("android.intent.action.MASTER_CLEAR"));
}
while (true)
{
return;
Log.d("AtCmarCmdHandler", " External Storage MASTER RESET triggered");
Intent localIntent = new Intent("com.android.internal.os.storage.FORMAT_AND_FACTORY_RESET");
localIntent.setComponent(ExternalStorageFormatter.COMPONENT_NAME);
this.mContext.startService(localIntent);
}
}
*com.lg.mdm.jar --> com.lge.mdm.src.zip
*framework.jar --> framework.src.zip
*lgsvcitems.jar --> lgsvcitems.src.zip
*modemwarmup.jar --> modemwarmup.src.zip
*qcnvitems.jar --> qcnvitems.src.zip
*qcrilhook.jar --> qcrilhook.src.zip