[SOLVED][Q] SM-G313HN CM12 video driver problem - Android Q&A, Help & Troubleshooting

I am trying to port Cyanogenmod 12 to Trend 2 SM-G313HN, but there is a problem loading the video driver and it is stuck in a infinite bootloop. Looks like the library has some unknown calls or something. With CM11 the video worked.
Here is what logcat shows:
Code:
I/SurfaceFlinger( 2277): SurfaceFlinger is starting
I/SurfaceFlinger( 2277): SurfaceFlinger's main thread ready to run. Initializing graphics H/W...
E/libEGL ( 2277): load_driver(/system/lib/egl/libGLES_hawaii.so): dlopen failed: cannot locate symbol "ucnv_convertEx_51" referenced by "libGLES_hawaii.so"...
F/libEGL ( 2277): couldn't find an OpenGL ES implementation
F/libc ( 2277): Fatal signal 6 (SIGABRT), code -6 in tid 2277 (surfaceflinger)
I/DEBUG ( 1596): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
I/DEBUG ( 1596): Build fingerprint: 'samsung/cm_vivaltonfc3g/vivaltonfc3g:5.0.2/LRX22G/7bc057ecca:userdebug/test-keys'
I/DEBUG ( 1596): Revision: '1'
I/DEBUG ( 1596): ABI: 'arm'
I/DEBUG ( 1596): pid: 2277, tid: 2277, name: surfaceflinger >>> /system/bin/surfaceflinger <<<
I/DEBUG ( 1596): signal 6 (SIGABRT), code -6 (SI_TKILL), fault addr --------
I/DEBUG ( 1596): Abort message: 'couldn't find an OpenGL ES implementation'
I/DEBUG ( 1596): r0 00000000 r1 000008e5 r2 00000006 r3 00000000
I/DEBUG ( 1596): r4 40012114 r5 00000006 r6 00000002 r7 0000010c
I/DEBUG ( 1596): r8 41a11550 r9 00000000 sl 00000000 fp be93da6c
I/DEBUG ( 1596): ip 000008e5 sp be93d4d8 lr 4002f539 pc 40054c6c cpsr 600f0010
I/DEBUG ( 1596):
I/DEBUG ( 1596): backtrace:
I/DEBUG ( 1596): #00 pc 00038c6c /system/lib/libc.so (tgkill+12)
I/DEBUG ( 1596): #01 pc 00013535 /system/lib/libc.so (pthread_kill+52)
I/DEBUG ( 1596): #02 pc 00014293 /system/lib/libc.so (raise+10)
I/DEBUG ( 1596): #03 pc 00010a75 /system/lib/libc.so (__libc_android_abort+36)
I/DEBUG ( 1596): #04 pc 0000f244 /system/lib/libc.so (abort+4)
I/DEBUG ( 1596): #05 pc 00007611 /system/lib/libcutils.so (__android_log_assert+88)
I/DEBUG ( 1596): #06 pc 00043565 /system/lib/libEGL.so
I/DEBUG ( 1596): #07 pc 00010a75 /system/lib/libEGL.so
I/DEBUG ( 1596): #08 pc 00011259 /system/lib/libEGL.so (eglGetDisplay+24)
I/DEBUG ( 1596): #09 pc 000189b3 /system/lib/libsurfaceflinger.so (android::SurfaceFlinger::init()+70)
I/DEBUG ( 1596): #10 pc 000007e1 /system/bin/surfaceflinger
I/DEBUG ( 1596): #11 pc 0000f101 /system/lib/libc.so (__libc_init+44)
I/DEBUG ( 1596): #12 pc 000008d8 /system/bin/surfaceflinger
D/AT_Distributor( 1615): try to connect RIL
E/AT_Distributor( 1615): connection fail & retry connect(62)
I/DEBUG ( 1596):
I/DEBUG ( 1596): Tombstone written to: /data/tombstones/tombstone_01
SOLVED: I had to patch external/icu/icu4c/source/common/ucnv.c
Code:
diff --git a/external/icu/icu4c/source/common/ucnv.c b/external/icu/icu4c/source/common/ucnv.c
index bb4c068..3078368 100755
--- a/external/icu/icu4c/source/common/ucnv.c
+++ b/external/icu/icu4c/source/common/ucnv.c
@@ -2984,6 +2984,74 @@ U_STABLE void U_EXPORT2 UCNV_TO_U_CALLBACK_STOP_48 (
reason, err);
}
+U_CAPI void U_EXPORT2 ucnv_setToUCallBack_51 (UConverter * converter,
+ UConverterToUCallback newAction,
+ const void* newContext,
+ UConverterToUCallback *oldAction,
+ const void** oldContext,
+ UErrorCode * err) {
+ ucnv_setToUCallBack(converter, newAction, newContext,
+ oldAction, oldContext, err);
+}
+
+U_CAPI void U_EXPORT2 ucnv_close_51 (UConverter * converter) {
+ ucnv_close (converter);
+}
+
+U_CAPI void U_EXPORT2
+ucnv_setFromUCallBack_51 (UConverter * converter,
+ UConverterFromUCallback newAction,
+ const void* newContext,
+ UConverterFromUCallback *oldAction,
+ const void** oldContext,
+ UErrorCode * err) {
+
+ ucnv_setFromUCallBack(converter, newAction, newContext, oldAction,
+ oldContext, err);
+}
+
+U_CAPI void U_EXPORT2
+ucnv_convertEx_51 (UConverter *targetCnv, UConverter *sourceCnv,
+ char **target, const char *targetLimit,
+ const char **source, const char *sourceLimit,
+ UChar *pivotStart, UChar **pivotSource,
+ UChar **pivotTarget, const UChar *pivotLimit,
+ UBool reset, UBool flush,
+ UErrorCode *pErrorCode) {
+ ucnv_convertEx(targetCnv, sourceCnv, target, targetLimit, source,
+ sourceLimit, pivotStart, pivotSource,
+ pivotTarget, pivotLimit, reset, flush,
+ pErrorCode);
+}
+
+U_CAPI UConverter* U_EXPORT2
+ucnv_open_51 (const char *name,
+ UErrorCode * err) {
+ return ucnv_open(name, err);
+}
+
+U_STABLE void U_EXPORT2 UCNV_FROM_U_CALLBACK_STOP_51 (
+ const void *context,
+ UConverterFromUnicodeArgs *fromUArgs,
+ const UChar* codeUnits,
+ int32_t length,
+ UChar32 codePoint,
+ UConverterCallbackReason reason,
+ UErrorCode * err) {
+ return UCNV_FROM_U_CALLBACK_STOP(context, fromUArgs, codeUnits,
+ length, codePoint, reason, err);
+}
+
+U_STABLE void U_EXPORT2 UCNV_TO_U_CALLBACK_STOP_51 (
+ const void *context,
+ UConverterToUnicodeArgs *toUArgs,
+ const char* codeUnits,
+ int32_t length,
+ UConverterCallbackReason reason,
+ UErrorCode * err) {
+ return UCNV_TO_U_CALLBACK_STOP(context, toUArgs, codeUnits, length,
+ reason, err);
+}
#endif
/*

good job
hello friend, you managed to finish the CM12?​:good:

Nikiz, keep going!
Where can we found your CM11 build for Trend 2 or just a local_manifest?! I would like to compile AOSP 5.1. after I had found 8Gb archive with sources.

Any progress?

TokRa said:
Any progress?
Click to expand...
Click to collapse
I am working on CM11 for this phone. (I have CM12 sources and I am downloading Omnirom 4.4 & 5.1 sources right now) We might have a beta build soon. There are some issues I need to work on. Wifi is not working right now and the RIL has some issues. (Everything else seems to work, but there is no phone number on incoming calls and calling someone kills the audio on the device for some reason)

Thank you! Looking forward to test it.

Nikiz said:
I am working on CM11 for this phone. (I have CM12 sources and I am downloading Omnirom 4.4.4 & 5.2 sources right now) We might have a beta build soon. There are some issues I need to work on. Wifi is not working right now and the RIL has some issues. (Everything else seems to work, but there is no phone number on incoming calls and calling someone kills the audio on the device for some reason)
Click to expand...
Click to collapse
Hey, could you please share a device folder (this one that's boardconfig.mk etcetc)?
Btw i've tried to build aosp 4.4.4_r1 and it compiled fine but sadly it gets stuck on loading (bootloop). Did you use the stock kernel or compiled it from source?

itigr said:
Hey, could you please share a device folder (this one that's boardconfig.mk etcetc)?
Btw i've tried to build aosp 4.4.4_r1 and it compiled fine but sadly it gets stuck on loading (bootloop). Did you use the stock kernel or compiled it from source?
Click to expand...
Click to collapse
At first I used the stock kernel and now I compile it from source. (Kernel configuration is the same as stock, but "Samsung MTP" is disabled, with it MTP does not work correctly) The device configuration is here, I'll update it today.
The device will not boot if your boot.img does not have the device tree-file as a "secondary bootloader" or you aren't using the /init executable from the stock boot.img. vivaltonfc3g is weird.. I am working on reverse engineering some binaries so we can use our own files compiled from source.

Nikiz said:
At first I used the stock kernel and now I compile it from source. (Kernel configuration is the same as stock, but "Samsung MTP" is disabled, with it MTP does not work correctly) The device configuration is here, I'll update it today.
The device will not boot if your boot.img does not have the device tree-file as a "secondary bootloader" or you aren't using the /init executable from the stock boot.img. vivaltonfc3g is weird.. I am working on reverse engineering some binaries so we can use our own files compiled from source.
Click to expand...
Click to collapse
Thanks
I am currently having fun with vivaltods5m (gm313hu. same as yours, an nfc support is the only difference, even stock kernel images are same).
Successfuly downloaded and built omnirom today and it boots fine tho wifi doesn't work and dialer has the same issues that you've had.
But also sound doesn't work, here's a logcat dump
Code:
E/HAL ( 2307): load: module=/system/lib/hw/audio.primary.hawaii.so
E/HAL ( 2307): dlopen failed: cannot locate symbol "pcm_drain" referenced by "audio.primary.hawaii.so"...
E/AudioFlinger( 2307): int android::load_audio_interface(const char*, audio_hw_device_t**) couldn't load audio hw module audio.primary (Invalid argument)
E/AudioPolicyManagerBase( 2307): Not output found for attached devices 00000003
E/AudioPolicyManagerBase( 2307): Failed to open primary output
E/AudioPolicyManagerBase( 2307): getDeviceForStrategy() speaker device not found
maybe i'm missing some proprietary lib or should modify some code. no idea

itigr said:
Thanks
I am currently having fun with vivaltods5m (gm313hu. same as yours, an nfc support is the only difference, even stock kernel images are same).
Successfuly downloaded and built omnirom today and it boots fine tho wifi doesn't work and dialer has the same issues that you've had.
But also sound doesn't work, here's a logcat dump
Code:
E/HAL ( 2307): load: module=/system/lib/hw/audio.primary.hawaii.so
E/HAL ( 2307): dlopen failed: cannot locate symbol "pcm_drain" referenced by "audio.primary.hawaii.so"...
E/AudioFlinger( 2307): int android::load_audio_interface(const char*, audio_hw_device_t**) couldn't load audio hw module audio.primary (Invalid argument)
E/AudioPolicyManagerBase( 2307): Not output found for attached devices 00000003
E/AudioPolicyManagerBase( 2307): Failed to open primary output
E/AudioPolicyManagerBase( 2307): getDeviceForStrategy() speaker device not found
maybe i'm missing some proprietary lib or should modify some code. no idea
Click to expand...
Click to collapse
Oh, I forgot add the patches. You need to modify tinyalsa. Add these anywhere. I put them between pcm_start and pcm_stop.
external/tinyalsa/pcm.c
Code:
int pcm_drain(struct pcm *pcm)
{
if (ioctl(pcm->fd, SNDRV_PCM_IOCTL_DRAIN) < 0)
return oops(pcm, errno, "drain failed");
return 0;
}
external/tinyalsa/include/tinyalsa/asoundlib.h
Code:
int pcm_drain(struct pcm *pcm);

Nikiz said:
Oh, I forgot add the patches. You need to modify tinyalsa. Add these anywhere. I put them between pcm_start and pcm_stop.
external/tinyalsa/pcm.c
Code:
int pcm_drain(struct pcm *pcm)
{
if (ioctl(pcm->fd, SNDRV_PCM_IOCTL_DRAIN) < 0)
return oops(pcm, errno, "drain failed");
return 0;
}
external/tinyalsa/include/tinyalsa/asoundlib.h
Code:
int pcm_drain(struct pcm *pcm);
Click to expand...
Click to collapse
Still no luck. now i'm getting this
Code:
I/AudioFlinger( 2038): loadHwModule() Loaded primary audio interface from BRCM audio HW HAL (audio) handle 1
V/audio_hw( 2038): ENTERING adev_open_output_stream() devices = 0x2 Fs = 44100
V/audio_hw( 2038): dump.audio.pcm = OFF
V/audio_hw( 2038): Data Dump is disabled
D/audio_out( 2038): soundsolution_init sample_rate = 48000
I/wrap_soundbooster( 2038): [wrap_soundbooster] CreateSoundBooster entered
I/wrap_soundbooster( 2038): [wrap_soundbooster] SoundBoosterInit entered
V/alsa_pcm( 2038): PCM INIT
V/alsa_pcm( 2038): PCM OPEN
V/alsa_pcm( 2038): alsa_pcm_open: handle = 0x40f292e8,pcm_handle->handle =0x0
V/alsa_pcm( 2038): alsa_pcm_open:(After)pcm_handle->handle =0x40f292e8
V/alsa_pcm( 2038): buffersize_samples = 4096
D/alsa_pcm( 2038): channels = 2, Fs = 48000, period_size = 0x800, periods = 2
D/alsa_pcm( 2038): pcm_handle->bufSize_bytes = 0x2000 samples = 0x1000
V/alsa_pcm( 2038): (After Norm)pcm_handle->bufSize_bytes =8192
V/alsa_pcm( 2038): PCM CLOSE
V/alsa_pcm( 2038): alsa_pcm_close: handle = 0x40f292e8
V/alsa_hal_controller( 2038): ENTERING select_output_device out_devices = 0x2
V/alsa_hal_controller( 2038): select_output_device out cur dev = 0 device = 2 cur_device_count = 0 new_device_count = 1
V/alsa_hal_controller( 2038): new device to be selected device = 2
V/alsa_hal_controller( 2038): get_playback_device returning driver_device[0] = 4, driver_device[1] = 4
V/alsa_hal_controller( 2038): select_output_device calling set_output_device with SELECT_DEV
V/alsa_hal_controller( 2038): ENTERING set_output_device() driver_device[0] = 4 driver_device[1] = 4
V/alsa_hal_controller( 2038): set_output_device called for cfg_device = 0
V/alsa_hal_controller( 2038): set_stereo_speaker() set to 1
V/alsa_hal_controller( 2038): set_output_device() for P1-SEL & P2-SEL - 4
V/alsa_hal_controller( 2038): LEAVING set_output_device()
V/alsa_hal_controller( 2038): update currentDevice = 2
V/alsa_hal_controller( 2038): LEAVING select_output_device ret
V/audio_out( 2038): ENTERING out_get_format()
V/audio_out( 2038): ENTERING out_get_channels()
V/audio_out( 2038): ENTERING out_get_sample_rate()
V/audio_out( 2038): LEAVING out_get_sample_rate() : sample rate = 48000
V/audio_hw( 2038): LEAVING adev_open_output_stream() out = 0x40f29008 out_stream = 0x40f29008
V/audio_out( 2038): ENTERING out_get_sample_rate()
V/audio_out( 2038): LEAVING out_get_sample_rate() : sample rate = 48000
V/audio_out( 2038): ENTERING out_get_channels()
V/audio_out( 2038): ENTERING out_get_format()
V/audio_out( 2038): ENTERING out_get_format()
V/audio_out( 2038): ENTERING out_get_channels()
V/audio_out( 2038): ENTERING out_get_buffer_size()
V/audio_out( 2038): LEAVING out_get_buffer_size() Buffer size = 8192
I/AudioFlinger( 2038): HAL output buffer size 2048 frames, normal mix buffer size 2048 frames
I/AudioMixer( 2038): found effect "Multichannel Downmix To Stereo" from The Android Open Source Project
V/audio_out( 2038): ENTERING out_get_buffer_size()
V/audio_out( 2038): LEAVING out_get_buffer_size() Buffer size = 8192
V/audio_out( 2038): ENTERING out_get_format()
V/audio_out( 2038): ENTERING out_get_sample_rate()
V/audio_out( 2038): LEAVING out_get_sample_rate() : sample rate = 48000
V/audio_out( 2038): ENTERING out_get_channels()
V/audio_out( 2038): entering out_get_latency()
V/audio_out( 2038): leaving out_get_latency() : 148
V/audio_out( 2038): entering out_get_latency()
V/audio_out( 2038): leaving out_get_latency() : 148
I/AudioFlinger( 2038): Using module 1 has the primary audio interface
V/audio_hw( 2038): ENTERING adev_set_mode() 0 <- 0
V/audio_hw( 2038): LEAVING adev_set_mode() 0
V/AudioPolicyManagerBase( 2038): setOutputDevice() output 2 device 0002 force 1 delayMs 0
I/AudioFlinger( 2038): AudioFlinger's thread 0x4102f008 ready to run
F/libc ( 2038): Fatal signal 11 (SIGSEGV) at 0xbe9d3000 (code=1), thread 2038 (mediaserver)
V/audio_out( 2038): ENTERING out_standby()
V/audio_out( 2038): ENTERING do_output_standby()
V/audio_out( 2038): dump.audio.pcm = OFF
V/audio_out( 2038): Data Dump is disabled
V/audio_out( 2038): LEAVING do_output_standby()
V/audio_out( 2038): LEAVING out_standby()
I/DEBUG ( 1571): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
I/DEBUG ( 1571): Build fingerprint: 'unknown'
I/DEBUG ( 1571): Revision: '1'
I/DEBUG ( 1571): pid: 2038, tid: 2038, name: mediaserver >>> /system/bin/mediaserver <<<
I/DEBUG ( 1571): signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr be9d3000
I/DEBUG ( 1571): r0 40f29fa8 r1 be9d2fe8 r2 079e2f18 r3 44494f52
I/DEBUG ( 1571): r4 4f52505f r5 54524550 r6 4f575f59 r7 50534b52
I/DEBUG ( 1571): r8 3d454341 r9 40f29708 sl 00000008 fp be9d2748
I/DEBUG ( 1571): ip 00302c39 sp be9d2704 lr 7379732f pc 4008e212 cpsr 200f0070
I/DEBUG ( 1571): d0 734d79616c656420 d1 0000000000000002
I/DEBUG ( 1571): d2 69206f6964756120 d3 656361667265746e
I/DEBUG ( 1571): d4 0000000000000000 d5 0000000000000000
I/DEBUG ( 1571): d6 0000080000000000 d7 40a0000000000000
I/DEBUG ( 1571): d8 0000000000000000 d9 0000000000000000
I/DEBUG ( 1571): d10 0000000000000000 d11 0000000000000000
I/DEBUG ( 1571): d12 0000000000000000 d13 0000000000000000
I/DEBUG ( 1571): d14 0000000000000000 d15 0000000000000000
I/DEBUG ( 1571): d16 417349cc01020c4a d17 0000000000000002
I/DEBUG ( 1571): d18 41aad90c7e000000 d19 0000000000000000
I/DEBUG ( 1571): d20 0000000000000000 d21 0000000000000000
I/DEBUG ( 1571): d22 0000000000000000 d23 0000000000000000
I/DEBUG ( 1571): d24 0000000000000000 d25 0000000000000000
I/DEBUG ( 1571): d26 0000000000000000 d27 0000000000000000
I/DEBUG ( 1571): d28 0000000000000000 d29 0000000000000000
I/DEBUG ( 1571): d30 0000000000000000 d31 0000000000000000
I/DEBUG ( 1571): scr 80000010
I/DEBUG ( 1571):
I/DEBUG ( 1571): backtrace:
I/DEBUG ( 1571): #00 pc 00022212 /system/lib/libc.so (__memcpy_base_aligned+69)
I/DEBUG ( 1571): #01 pc 00010645 /system/lib/libutils.so (android::SortedVectorImpl::_indexOrderOf(void const*, unsigned int*) const+48)
I/DEBUG ( 1571): #02 pc 00008e2b /system/lib/libaudiopolicy_sec.so
I/DEBUG ( 1571): #03 pc 0000b6b3 /system/lib/libaudiopolicy_sec.so
I/DEBUG ( 1571): #04 pc 0000f367 /system/lib/libaudiopolicy_sec.so (android::AudioPolicyManagerBase::setOutputDevice(int, unsigned int, bool, int)+50)
I/DEBUG ( 1571): #05 pc 0000f775 /system/lib/libaudiopolicy_sec.so (android::AudioPolicyManagerBase::AudioPolicyManagerBase(android::AudioPolicyClientInterface*)+712)
I/DEBUG ( 1571): #06 pc 00004a0d /system/lib/hw/audio_policy.hawaii.so (android::AudioPolicyManagerALSA::AudioPolicyManagerALSA(android::AudioPolicyClientInterface*)+4)
I/DEBUG ( 1571): #07 pc 00004a81 /system/lib/hw/audio_policy.hawaii.so (createAudioPolicyManager+16)
I/DEBUG ( 1571): #08 pc 00003c55 /system/lib/hw/audio_policy.hawaii.so
I/DEBUG ( 1571): #09 pc 000296e1 /system/lib/libaudioflinger.so (android::AudioPolicyService::AudioPolicyService()+428)
I/DEBUG ( 1571): #10 pc 00001cdd /system/bin/mediaserver
I/DEBUG ( 1571): #11 pc 00001eab /system/bin/mediaserver
I/DEBUG ( 1571): #12 pc 0000e413 /system/lib/libc.so (__libc_init+50)
I/DEBUG ( 1571): #13 pc 00001920 /system/bin/mediaserver
I/DEBUG ( 1571):
I/DEBUG ( 1571): stack:
I/DEBUG ( 1571): be9d26c4 00000002
I/DEBUG ( 1571): be9d26c8 40b6ac30
I/DEBUG ( 1571): be9d26cc 4003264f /system/lib/libaudioflinger.so
I/DEBUG ( 1571): be9d26d0 40a6b508
I/DEBUG ( 1571): be9d26d4 400343f9 /system/lib/libaudioflinger.so
I/DEBUG ( 1571): be9d26d8 00000002
I/DEBUG ( 1571): be9d26dc 00000000
I/DEBUG ( 1571): be9d26e0 00000000
I/DEBUG ( 1571): be9d26e4 00000001
I/DEBUG ( 1571): be9d26e8 40f29008
I/DEBUG ( 1571): be9d26ec 40a6b51c
I/DEBUG ( 1571): be9d26f0 00000002
I/DEBUG ( 1571): be9d26f4 40a6b53c
I/DEBUG ( 1571): be9d26f8 0000bb80
I/DEBUG ( 1571): be9d26fc 00000003
I/DEBUG ( 1571): be9d2700 00000001
I/DEBUG ( 1571): #00 be9d2704 00000000
I/DEBUG ( 1571): be9d2708 40b6a360
I/DEBUG ( 1571): be9d270c 00000000
I/DEBUG ( 1571): be9d2710 00000000
I/DEBUG ( 1571): be9d2714 00000000
I/DEBUG ( 1571): be9d2718 40f29708
I/DEBUG ( 1571): be9d271c 40139647 /system/lib/libutils.so (android::SortedVectorImpl::_indexOrderOf(void const*, unsigned int*) const+50)
I/DEBUG ( 1571): #01 be9d2720 be9d2748 [stack]
I/DEBUG ( 1571): be9d2724 40b6a360
I/DEBUG ( 1571): be9d2728 00000002
I/DEBUG ( 1571): be9d272c 00000000
I/DEBUG ( 1571): be9d2730 00000000
I/DEBUG ( 1571): be9d2734 00000002
I/DEBUG ( 1571): be9d2738 00000001
I/DEBUG ( 1571): be9d273c 40f4bed4 /system/lib/libaudiopolicy_sec.so
I/DEBUG ( 1571): be9d2740 40f48568 /system/lib/libaudiopolicy_sec.so
I/DEBUG ( 1571): be9d2744 40f3ce2f /system/lib/libaudiopolicy_sec.so
I/DEBUG ( 1571): #02 be9d2748 00000002
I/DEBUG ( 1571): be9d274c 00000002
I/DEBUG ( 1571): be9d2750 f750e65e
I/DEBUG ( 1571): be9d2754 40f3f6b7 /system/lib/libaudiopolicy_sec.so
...
I/DEBUG ( 1571): memory map around fault addr be9d3000:
I/DEBUG ( 1571): be9b2000-be9d3000 rw- [stack]
I/DEBUG ( 1571): (no map for address)
I/DEBUG ( 1571): ffff0000-ffff1000 r-x [vectors]
I/ServiceManager( 1567): service 'media.audio_flinger' died
I/ServiceManager( 1567): service 'media.player' died
I/ServiceManager( 1567): service 'media.camera' died
D/hawaii.hwcomposer( 1572): FBDevice::vsync called 61 times
W/AudioSystem( 1972): AudioPolicyService not published, waiting...
Code:
-----------------------------------------------------
signal 11 (SIGSEGV) at 0xbeee0000 (code=1), thread 2194 (mediaserver)
pid: 2194, tid: 2194, name: mediaserver >>> /system/bin/mediaserver <<<
signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr beee0000
r0 40f29fa8 r1 beedffe8 r2 079f2f18 r3 44494f52
r4 4f52505f r5 54524550 r6 4f575f59 r7 50534b52
r8 3d454341 r9 40f29708 sl 00000008 fp beedf748
ip 00302c39 sp beedf704 lr 7379732f pc 4008e212
Stack Trace:
RELADDR FUNCTION FILE:LINE
00022212 __memcpy_base_aligned+70 /home/kotek/wdir/android/bionic/libc/arch-arm/cortex-a9/bionic/memcpy_base.S:191
00010645 android::SortedVectorImpl::_indexOrderOf(void const*, unsigned int*) const+48 /home/kotek/wdir/android/system/core/libutils/VectorImpl.cpp:577
00008e2b <unknown> /system/lib/libaudiopolicy_sec.so
0000b6b3 <unknown> /system/lib/libaudiopolicy_sec.so
0000f367 android::AudioPolicyManagerBase::setOutputDevice(int, unsigned int, bool, int)+50 /system/lib/libaudiopolicy_sec.so
0000f775 android::AudioPolicyManagerBase::AudioPolicyManagerBase(android::AudioPolicyClientInterface*)+712 /system/lib/libaudiopolicy_sec.so
00004a0d android::AudioPolicyManagerALSA::AudioPolicyManagerALSA(android::AudioPolicyClientInterface*)+4 /system/lib/hw/audio_policy.hawaii.so
00004a81 createAudioPolicyManager+16 /system/lib/hw/audio_policy.hawaii.so
00003c55 <unknown> /system/lib/hw/audio_policy.hawaii.so
000296e1 android::AudioPolicyService::AudioPolicyService()+428 /home/kotek/wdir/android/frameworks/av/services/audioflinger/AudioPolicyService.cpp:89
00001cdd android::BinderService<android::AudioPolicyService>::publish(bool)+36 /home/kotek/wdir/android/frameworks/native/include/binder/BinderService.h:41
v------> android::BinderService<android::AudioPolicyService>::instantiate() /home/kotek/wdir/android/frameworks/native/include/binder/BinderService.h:49
00001eab main+382 /home/kotek/wdir/android/frameworks/av/media/mediaserver/main_mediaserver.cpp:130
0000e413 __libc_init+50 /home/kotek/wdir/android/bionic/libc/bionic/libc_init_dynamic.cpp:112
00001920 _start+96 register.cpp:?
Stack Data:
ADDR VALUE FUNCTION FILE:LINE
beedf6c4 00000002
beedf6c8 40b6ac30
beedf6cc 4003264f <unknown> /system/lib/libaudioflinger.so
beedf6d0 40a6b508
beedf6d4 400343f9 <unknown> /system/lib/libaudioflinger.so
beedf6d8 00000002
beedf6dc 00000000
beedf6e0 00000000
beedf6e4 00000001
beedf6e8 40f29008
beedf6ec 40a6b51c
beedf6f0 00000002
beedf6f4 40a6b53c
beedf6f8 0000bb80
beedf6fc 00000003
beedf700 00000001
beedf704 00000000
beedf708 40b6a360
beedf70c 00000000
beedf710 00000000
beedf714 00000000
beedf718 40f29708
beedf71c 40139647 android::SortedVectorImpl::_indexOrderOf(void const*, unsigned int*) const+50 /system/lib/libutils.so
beedf720 beedf748 [stack]
beedf724 40b6a360
beedf728 00000002
beedf72c 00000000
beedf730 00000000
beedf734 00000002
beedf738 00000001
beedf73c 40f4ded4 <unknown> /system/lib/libaudiopolicy_sec.so
beedf740 40f4a568 <unknown> /system/lib/libaudiopolicy_sec.so
beedf744 40f3ee2f <unknown> /system/lib/libaudiopolicy_sec.so
beedf748 00000002
beedf74c 00000002
beedf750 0fe7c7b2
beedf754 40f416b7 <unknown> /system/lib/libaudiopolicy_sec.so

Nevermind, got it, i shouldn't use audio_policy.hawaii from stock.
Seems like wifi is barely working for me (slider doesn't grey out). it gets stuck on finding networks
it does not detect rfkill iface
logcat
Code:
I/wpa_supplicant( 2037): wpa_supplicant v2.1-devel-4.4.22014-08-06/01:01:21
I/wpa_supplicant( 2037): [wpa_supplicant_init]: use SECRIL
I/wpa_supplicant( 2037): Successfully initialized wpa_supplicant
I/wpa_supplicant( 2037): >>>>> Not GET KEY, IV <<<<<
I/wpa_supplicant( 2037): >>>>> Not GET KEY, IV <<<<<
I/wpa_supplicant( 2037): rfkill: Cannot open RFKILL control device
I/wpa_supplicant( 2037): CTRL-EVENT-STATE-CHANGE id=-1 state=2 BSSID=00.00.00 SSID=
I/wpa_supplicant( 2037): CTRL-EVENT-STATE-CHANGE id=-1 state=0 BSSID=00.00.00 SSID=
I/wpa_supplicant( 2037): >>>>> Not GET KEY, IV <<<<<
I/wpa_supplicant( 2037): >>>>> Not GET KEY, IV <<<<<
I/wpa_supplicant( 2037): rfkill: Cannot open RFKILL control device
[B]E/wpa_supplicant( 2037): nl80211: Could not configure driver to use managed mode
E/wpa_supplicant( 2037): p2p0: Failed to initialize driver interface[/B]
I/wpa_supplicant( 2037): >>>>> Not GET KEY, IV <<<<<
I/wpa_supplicant( 2037): >>>>> Not GET KEY, IV <<<<<
[B]I/wpa_supplicant( 2037): rfkill: Cannot open RFKILL control device
[/B]I/wpa_supplicant( 2037): CTRL-EVENT-STATE-CHANGE id=-1 state=2 BSSID=00.00.00 SSID=
I/wpa_supplicant( 2037): P2P: initialized channels: 81:1,2,3,4,5,6,7,8,9,10,11,12,13
I/wpa_supplicant( 2037): CTRL-EVENT-STATE-CHANGE id=-1 state=0 BSSID=00.00.00 SSID=
I/wpa_supplicant( 2037): P2P: updated channels: 81:1,2,3,4,5,6,7,8,9,10,11,12,13
I/wpa_supplicant( 2037): wlan0: Setting scan request: 0 sec 0 usec
I/wpa_supplicant( 2037): Skip scan - bUseNetwork false
I/wpa_supplicant( 2037): P2P: updated channels: 81:1,2,3,4,5,6,7,8,9,10,11,12,13
I/wpa_supplicant( 2037): P2P: updated channels: 81:1,2,3,4,5,6,7,8,9,10,11,12,13

itigr said:
Nevermind, got it, i shouldn't use audio_policy.hawaii from stock.
Seems like wifi is barely working for me (slider doesn't grey out). it gets stuck on finding networks
it does not detect rfkill iface
logcat
Code:
I/wpa_supplicant( 2037): wpa_supplicant v2.1-devel-4.4.22014-08-06/01:01:21
I/wpa_supplicant( 2037): [wpa_supplicant_init]: use SECRIL
I/wpa_supplicant( 2037): Successfully initialized wpa_supplicant
I/wpa_supplicant( 2037): >>>>> Not GET KEY, IV <<<<<
I/wpa_supplicant( 2037): >>>>> Not GET KEY, IV <<<<<
I/wpa_supplicant( 2037): rfkill: Cannot open RFKILL control device
I/wpa_supplicant( 2037): CTRL-EVENT-STATE-CHANGE id=-1 state=2 BSSID=00.00.00 SSID=
I/wpa_supplicant( 2037): CTRL-EVENT-STATE-CHANGE id=-1 state=0 BSSID=00.00.00 SSID=
I/wpa_supplicant( 2037): >>>>> Not GET KEY, IV <<<<<
I/wpa_supplicant( 2037): >>>>> Not GET KEY, IV <<<<<
I/wpa_supplicant( 2037): rfkill: Cannot open RFKILL control device
[B]E/wpa_supplicant( 2037): nl80211: Could not configure driver to use managed mode
E/wpa_supplicant( 2037): p2p0: Failed to initialize driver interface[/B]
I/wpa_supplicant( 2037): >>>>> Not GET KEY, IV <<<<<
I/wpa_supplicant( 2037): >>>>> Not GET KEY, IV <<<<<
[B]I/wpa_supplicant( 2037): rfkill: Cannot open RFKILL control device
[/B]I/wpa_supplicant( 2037): CTRL-EVENT-STATE-CHANGE id=-1 state=2 BSSID=00.00.00 SSID=
I/wpa_supplicant( 2037): P2P: initialized channels: 81:1,2,3,4,5,6,7,8,9,10,11,12,13
I/wpa_supplicant( 2037): CTRL-EVENT-STATE-CHANGE id=-1 state=0 BSSID=00.00.00 SSID=
I/wpa_supplicant( 2037): P2P: updated channels: 81:1,2,3,4,5,6,7,8,9,10,11,12,13
I/wpa_supplicant( 2037): wlan0: Setting scan request: 0 sec 0 usec
I/wpa_supplicant( 2037): Skip scan - bUseNetwork false
I/wpa_supplicant( 2037): P2P: updated channels: 81:1,2,3,4,5,6,7,8,9,10,11,12,13
I/wpa_supplicant( 2037): P2P: updated channels: 81:1,2,3,4,5,6,7,8,9,10,11,12,13
Click to expand...
Click to collapse
My wifi is not working either. I get the same error too. There is the same error on the stock rom too, but wifi is working on that, so that might not be the problem.. This has bugged me a long time. And the calling someone "kills the audio" does not actually kill the audio, it is unable to stop the call for some reason and there is no system sounds during a call. It might be because the RIL does not send the UNSOL_CALL_RING-command. I'll try if this patch makes a difference.

Nikiz said:
My wifi is not working either. I get the same error too. There is the same error on the stock rom too, but wifi is working on that, so that might not be the problem.. This has bugged me a long time. And the calling someone "kills the audio" does not actually kill the audio, it is unable to stop the call for some reason and there is no system sounds during a call. It might be because the RIL does not send the UNSOL_CALL_RING-command. I'll try if this patch makes a difference.
Click to expand...
Click to collapse
Yeah, i noticed that too. Just tried out this patch but calls still don't stop.
UPD: incoming calls work fine. i can hang up and speaker/mic works. outgoing call problem still remains, maybe this happens due to dualsim/ril idk.

itigr said:
Yeah, i noticed that too. Just tried out this patch but calls still don't stop.
UPD: incoming calls work fine. i can hang up and speaker/mic works. outgoing call problem still remains, maybe this happens due to dualsim/ril idk.
Click to expand...
Click to collapse
Vivaltonfc3g is actually a single SIM phone. Well, technically it is a dual sim phone with a single SIM slot.. But the patch did not work for me either. Btw, do you get a phone number when receiving an incoming call? I don't.

Nikiz said:
Vivaltonfc3g is actually a single SIM phone. Well, technically it is a dual sim phone with a single SIM slot.. But the patch did not work for me either. Btw, do you get a phone number when receiving an incoming call? I don't.
Click to expand...
Click to collapse
Oh, thought that phone has 2 sim slots . Well, i'm downloading cm11 sources right now since omni got no multisim support and its kinda hard to implement.
No i don't. I just see "+" instead of number, nothing more. But i can see incoming sms numbers.
Also, does "recent apps" button work for you? I can't get it to work, tried changing keymaps but it didn't help.
Code:
E/KeyLayoutMap( 1987): /system/usr/keylayout/bcm_keypad_v2.kl:15: Expected key code label, got 'RECENTAPPS'.

I modified initscript to start wpa_supplicant with detailed debug and found this kinda interesting
Code:
D/wpa_supplicant( 2066): random: Got 1/1 bytes from /dev/random
D/wpa_supplicant( 2066): Get randomness: len=20 entropy=0
D/wpa_supplicant( 2066): random from os_get_random - hexdump(len=20): [REMOVED]
D/wpa_supplicant( 2066): random_mix_pool - hexdump(len=20): [REMOVED]
D/wpa_supplicant( 2066): random from internal pool - hexdump(len=16): [REMOVED]
D/wpa_supplicant( 2066): random_mix_pool - hexdump(len=20): [REMOVED]
D/wpa_supplicant( 2066): random from internal pool - hexdump(len=16): [REMOVED]
D/wpa_supplicant( 2066): mixed random - hexdump(len=20): [REMOVED]
D/wpa_supplicant( 2066): random: Updated entropy file /data/misc/wifi/entropy.bin (own_pool_ready=2)
D/wpa_supplicant( 2066): EAPOL: disable timer tick
D/wpa_supplicant( 2066): EAPOL: Supplicant port status: Unauthorized
[B]D/wpa_supplicant( 2066): nl80211: Set supplicant port unauthorized for 00:00:00:00:00:00[/B]
D/wpa_supplicant( 2066): EAPOL: disable timer tick
[B]D/wpa_supplicant( 2066): EAPOL: Supplicant port status: Unauthorized
[B]D/wpa_supplicant( 2066): nl80211: Set supplicant port unauthorized for 00:00:00:00:00:00[/B][/B]
I wonder why its using 00:00: plaplapla insteada actual macaddr

itigr said:
I modified initscript to start wpa_supplicant with detailed debug and found this kinda interesting
Code:
D/wpa_supplicant( 2066): random: Got 1/1 bytes from /dev/random
D/wpa_supplicant( 2066): Get randomness: len=20 entropy=0
D/wpa_supplicant( 2066): random from os_get_random - hexdump(len=20): [REMOVED]
D/wpa_supplicant( 2066): random_mix_pool - hexdump(len=20): [REMOVED]
D/wpa_supplicant( 2066): random from internal pool - hexdump(len=16): [REMOVED]
D/wpa_supplicant( 2066): random_mix_pool - hexdump(len=20): [REMOVED]
D/wpa_supplicant( 2066): random from internal pool - hexdump(len=16): [REMOVED]
D/wpa_supplicant( 2066): mixed random - hexdump(len=20): [REMOVED]
D/wpa_supplicant( 2066): random: Updated entropy file /data/misc/wifi/entropy.bin (own_pool_ready=2)
D/wpa_supplicant( 2066): EAPOL: disable timer tick
D/wpa_supplicant( 2066): EAPOL: Supplicant port status: Unauthorized
[B]D/wpa_supplicant( 2066): nl80211: Set supplicant port unauthorized for 00:00:00:00:00:00[/B]
D/wpa_supplicant( 2066): EAPOL: disable timer tick
[B]D/wpa_supplicant( 2066): EAPOL: Supplicant port status: Unauthorized
[B]D/wpa_supplicant( 2066): nl80211: Set supplicant port unauthorized for 00:00:00:00:00:00[/B][/B]
I wonder why its using 00:00: plaplapla insteada actual macaddr
Click to expand...
Click to collapse
Interesting.. I have to look into that. I made some changes to telephone related stuff, hopefully it makes some difference. Too bad my computer is really slow so recompiling the whole thing takes hours. And my recent apps-button does not work either. :/

Nikiz said:
Interesting.. I have to look into that. I made some changes to telephone related stuff, hopefully it makes some difference. Too bad my computer is really slow so recompiling the whole thing takes hours. And my recent apps-button does not work either. :/
Click to expand...
Click to collapse
Fixed recent apps-button. https://github.com/TheNikiz/android...mmit/904756156584da6a9cecb37afa2d5a6b56dafb19

Great.
Did these changes that you've made to phone stuff work?

Related

[Q] unable to display a mail content with gmail ( + other errors)

I successfully installed GT-I9100_TPH_I9100XWLPD_I9100XXLPW_I9100OXXLPJ on my SGS2 (multi CSC, my phone should use XEF, which is included )
All was formatted before instal. All apps are "clean" and freshly installed.
In Gmail, i can list my mail, but when i try to open one mail (to look at the content), i have the following trace in the logcat console (adb -logcat)
--> same problem when trying to access google.com with included webbrowser, but installed chrome browser successfully achieve to display google.com. Many apps seems to work as usual, without any problem.
--> I did not see any other curious error inside my logcat
--> after a while, the app brutally close, without any error (no ask for report, no log)
Code:
D/SocialHubService( 3053): [ContactCache] onChange() >> Contact Provider is changed!! self - false
D/STATUSBAR-NetworkController( 2107): onDataActivity: direction=3
D/STATUSBAR-NetworkController( 2107): onSignalStrengthsChanged signalStrength=SignalStrength: 12 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 gsm|lte 3 level=3
D/STATUSBAR-NetworkController( 2107): onSignalStrengthsChanged signalStrength=SignalStrength: 11 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 gsm|lte 3 level=3
I/InputReader( 1984): dispatchTouch::touch event's action is 0 (deviceType=0) [pCnt=1, pending(waiting finished signal)=0]
I/InputDispatcher( 1984): Delivering touch to current input target: action: 0, channel 'xxxx'
I/InputDispatcher( 1984): Delivering touch to current input target: action: 0, channel 'xxxx'
E/lights ( 1984): write_int: path /sys/devices/virtual/sec/sec_touchkey/brightness, value 1
I/PowerManagerService( 1984): Ulight 3->7|0
D/PowerManagerService( 1984): setLightBrightness : mButtonLight : 160
E/DataRouter( 1823): usb connection is true
E/DataRouter( 1823): DSR is ON. Don't send DTR ON.
I/InputReader( 1984): dispatchTouch::touch event's action is 1 (deviceType=0) [pCnt=1, pending(waiting finished signal)=0]
I/InputDispatcher( 1984): Delivering touch to current input target: action: 1, channel 'xxxx'
I/InputDispatcher( 1984): Delivering touch to current input target: action: 1, channel 'xxxx'
D/STATUSBAR-NetworkController( 2107): onDataActivity: direction=0
D/dalvikvm( 5880): GC_CONCURRENT freed 436K, 6% free 9807K/10375K, paused 2ms+3ms
I/webclipboard( 5880): clipservice: [email protected]
D/STATUSBAR-NetworkController( 2107): onSignalStrengthsChanged signalStrength=SignalStrength: 10 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 gsm|lte 3 level=3
D/dalvikvm( 5880): GC_FOR_ALLOC freed 67K, 6% free 9808K/10375K, paused 17ms
I/dalvikvm-heap( 5880): Grow heap (frag case) to 10.394MB for 768016-byte allocation
D/dalvikvm( 5880): GC_FOR_ALLOC freed <1K, 6% free 10557K/11143K, paused 16ms
D/dalvikvm( 5880): GC_CONCURRENT freed 13K, 5% free 10673K/11143K, paused 1ms+3ms
D/WML_SISO( 5880): InitPasteboardJni
D/dalvikvm( 5880): GC_CONCURRENT freed 327K, 4% free 10981K/11399K, paused 2ms+3ms
D/dalvikvm( 5880): GC_FOR_ALLOC freed 462K, 7% free 11117K/11847K, paused 15ms
D/dalvikvm( 5880): GC_FOR_ALLOC freed 509K, 7% free 11204K/11975K, paused 19ms
F/libc ( 5880): Fatal signal 11 (SIGSEGV) at 0x00000010 (code=1)
D/GLWebViewState( 5880): Disappearing white area time and Sharpening time after zooming: -792252246255446009284224155586413572466884689443328824933945986737014592311901076586496.000 milliSecs
I/DEBUG ( 5822): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
I/DEBUG ( 5822): Build fingerprint: 'samsung/GT-I9100/GT-I9100:4.0.3/IML74K/XWLPD:user/release-keys'
I/DEBUG ( 5822): pid: 5880, tid: 5916 >>> com.google.android.gm <<<
I/DEBUG ( 5822): signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 00000010
I/DEBUG ( 5822): r0 00000000 r1 01dd0000 r2 40688d34 r3 4fd01dd0
I/DEBUG ( 5822): r4 00000000 r5 00000000 r6 00000000 r7 00000000
I/DEBUG ( 5822): r8 002d9058 r9 53cf6440 10 4d80b444 fp 53cf6484
I/DEBUG ( 5822): ip 4fd01e20 sp 53cf63d8 lr 40688d40 pc 40688c44 cpsr 60000010
I/DEBUG ( 5822): d0 ffffffffffffffff d1 bf800000bf800000
I/DEBUG ( 5822): d2 bf800000bf800000 d3 0000000047960000
I/DEBUG ( 5822): d4 bf800000bf800000 d5 bf800000bf800000
I/DEBUG ( 5822): d6 bf800000bf800000 d7 403b00000000001b
I/DEBUG ( 5822): d8 0000000000004699 d9 41d3f435636807bc
I/DEBUG ( 5822): d10 0000000000000000 d11 0000000000000000
I/DEBUG ( 5822): d12 0000000000000000 d13 0000000000000000
I/DEBUG ( 5822): d14 0000000000000000 d15 0000000000000000
I/DEBUG ( 5822): d16 0000000000000000 d17 0000000000000000
I/DEBUG ( 5822): d18 41219a3000000000 d19 0000000000000000
I/DEBUG ( 5822): d20 0000000000000000 d21 0000000000000000
I/DEBUG ( 5822): d22 0000000000000000 d23 0000000000000000
I/DEBUG ( 5822): d24 0000000000000000 d25 0000000000000000
I/DEBUG ( 5822): d26 0000000000000000 d27 0000000000000000
I/DEBUG ( 5822): d28 0000000000000000 d29 0000000000000000
I/DEBUG ( 5822): d30 0000000000000000 d31 0000000000000000
I/DEBUG ( 5822): scr 60000013
I/DEBUG ( 5822):
D/STATUSBAR-NetworkController( 2107): onSignalStrengthsChanged signalStrength=SignalStrength: 9 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 gsm|lte 3 level=3
E/lights ( 1984): write_int: path /sys/devices/virtual/sec/sec_touchkey/brightness, value 2
W/PowerManagerService( 1984): Timer 0x7->0x3|0x0
I/PowerManagerService( 1984): Ulight 7->3|0
D/PowerManagerService( 1984): setLightBrightness : mButtonLight : 0
I/DEBUG ( 5822): #00 pc 0003ac44 /system/lib/libskia.so (_ZN8SkRegion8freeRunsEv)
I/DEBUG ( 5822): #01 pc 0003ad3c /system/lib/libskia.so (_ZN8SkRegionD1Ev)
I/DEBUG ( 5822): #02 pc 00281e50 /system/lib/libwebcore.so
I/DEBUG ( 5822): #03 pc 00284c7e /system/lib/libwebcore.so
I/DEBUG ( 5822): #04 pc 00285050 /system/lib/libwebcore.so
I/DEBUG ( 5822): #05 pc 0027ec66 /system/lib/libwebcore.so
I/DEBUG ( 5822): #06 pc 0029af54 /system/lib/libwebcore.so
I/DEBUG ( 5822): #07 pc 0001ecf0 /system/lib/libdvm.so (dvmPlatformInvoke)
I/DEBUG ( 5822): #08 pc 00058fac /system/lib/libdvm.so (_Z16dvmCallJNIMethodPKjP6JValuePK6MethodP6Thread)
I/DEBUG ( 5822):
I/DEBUG ( 5822): code around pc:
I/DEBUG ( 5822): 40688c24 ebffe5e2 e2700001 33a00000 e8bd8070 ......p....3p...
I/DEBUG ( 5822): 40688c34 e3a00001 e8bd8070 e92d4010 e1a04000 [email protected]@..
I/DEBUG ( 5822): 40688c44 e5900010 e2403001 e3730003 88bd8010 [email protected]
I/DEBUG ( 5822): 40688c54 ebffe5d9 e3500001 18bd8010 e5940010 ......P.........
I/DEBUG ( 5822): 40688c64 e8bd4010 ea0138c9 e92d4010 e1a04000 [email protected]@[email protected]
I/DEBUG ( 5822):
I/DEBUG ( 5822): code around lr:
I/DEBUG ( 5822): 40688d20 e1a04000 e5803010 ebffffef e1a00004 [email protected]
I/DEBUG ( 5822): 40688d30 e8bd8010 e92d4010 e1a04000 ebffffbe [email protected]@......
I/DEBUG ( 5822): 40688d40 e1a00004 e8bd8010 e92d4070 e1a05000 [email protected]
I/DEBUG ( 5822): 40688d50 e2810002 e1a04001 e1a00100 eb0138da [email protected]
I/DEBUG ( 5822): 40688d60 e3a03001 e5850010 e8800018 e8bd8070 .0..........p...
I/DEBUG ( 5822):
I/DEBUG ( 5822): stack:
I/DEBUG ( 5822): 53cf6398 003f2500 [heap]
I/DEBUG ( 5822): 53cf639c 00125728 [heap]
I/DEBUG ( 5822): 53cf63a0 004d1d28 [heap]
I/DEBUG ( 5822): 53cf63a4 0044c970 [heap]
I/DEBUG ( 5822): 53cf63a8 00000000
I/DEBUG ( 5822): 53cf63ac 00000001
I/DEBUG ( 5822): 53cf63b0 003f2500 [heap]
I/DEBUG ( 5822): 53cf63b4 00125728 [heap]
I/DEBUG ( 5822): 53cf63b8 004d1d28 [heap]
I/DEBUG ( 5822): 53cf63bc 0044c970 [heap]
I/DEBUG ( 5822): 53cf63c0 00000000
I/DEBUG ( 5822): 53cf63c4 4fa3f3c9 /system/lib/libwebcore.so
I/DEBUG ( 5822): 53cf63c8 002d9688 [heap]
I/DEBUG ( 5822): 53cf63cc 004d1d28 [heap]
I/DEBUG ( 5822): 53cf63d0 df0027ad
I/DEBUG ( 5822): 53cf63d4 00000000
I/DEBUG ( 5822): #00 53cf63d8 00000000
I/DEBUG ( 5822): 53cf63dc 40688d40 /system/lib/libskia.so
I/DEBUG ( 5822): #01 53cf63e0 002d9688 [heap]
I/DEBUG ( 5822): 53cf63e4 4f7ede53 /system/lib/libwebcore.so
E/DataRouter( 1823): usb connection is true
E/DataRouter( 1823): DSR is ON. Don't send DTR ON.
D/KeyguardViewMediator( 1984): handleTimeout
If someone have any idea...
NicholasLyon said:
I successfully installed GT-I9100_TPH_I9100XWLPD_I9100XXLPW_I9100OXXLPJ on my SGS2 (multi CSC, my phone should use XEF, which is included )
All was formatted before instal. All apps are "clean" and freshly installed.
In Gmail, i can list my mail, but when i try to open one mail (to look at the content), i have the following trace in the logcat console (adb -logcat)
--> same problem when trying to access google.com with included webbrowser, but installed chrome browser successfully achieve to display google.com. Many apps seems to work as usual, without any problem.
--> I did not see any other curious error inside my logcat
--> after a while, the app brutally close, without any error (no ask for report, no log)
Code:
D/SocialHubService( 3053): [ContactCache] onChange() >> Contact Provider is changed!! self - false
D/STATUSBAR-NetworkController( 2107): onDataActivity: direction=3
D/STATUSBAR-NetworkController( 2107): onSignalStrengthsChanged signalStrength=SignalStrength: 12 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 gsm|lte 3 level=3
D/STATUSBAR-NetworkController( 2107): onSignalStrengthsChanged signalStrength=SignalStrength: 11 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 gsm|lte 3 level=3
I/InputReader( 1984): dispatchTouch::touch event's action is 0 (deviceType=0) [pCnt=1, pending(waiting finished signal)=0]
I/InputDispatcher( 1984): Delivering touch to current input target: action: 0, channel 'xxxx'
I/InputDispatcher( 1984): Delivering touch to current input target: action: 0, channel 'xxxx'
E/lights ( 1984): write_int: path /sys/devices/virtual/sec/sec_touchkey/brightness, value 1
I/PowerManagerService( 1984): Ulight 3->7|0
D/PowerManagerService( 1984): setLightBrightness : mButtonLight : 160
E/DataRouter( 1823): usb connection is true
E/DataRouter( 1823): DSR is ON. Don't send DTR ON.
I/InputReader( 1984): dispatchTouch::touch event's action is 1 (deviceType=0) [pCnt=1, pending(waiting finished signal)=0]
I/InputDispatcher( 1984): Delivering touch to current input target: action: 1, channel 'xxxx'
I/InputDispatcher( 1984): Delivering touch to current input target: action: 1, channel 'xxxx'
D/STATUSBAR-NetworkController( 2107): onDataActivity: direction=0
D/dalvikvm( 5880): GC_CONCURRENT freed 436K, 6% free 9807K/10375K, paused 2ms+3ms
I/webclipboard( 5880): clipservice: [email protected]
D/STATUSBAR-NetworkController( 2107): onSignalStrengthsChanged signalStrength=SignalStrength: 10 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 gsm|lte 3 level=3
D/dalvikvm( 5880): GC_FOR_ALLOC freed 67K, 6% free 9808K/10375K, paused 17ms
I/dalvikvm-heap( 5880): Grow heap (frag case) to 10.394MB for 768016-byte allocation
D/dalvikvm( 5880): GC_FOR_ALLOC freed <1K, 6% free 10557K/11143K, paused 16ms
D/dalvikvm( 5880): GC_CONCURRENT freed 13K, 5% free 10673K/11143K, paused 1ms+3ms
D/WML_SISO( 5880): InitPasteboardJni
D/dalvikvm( 5880): GC_CONCURRENT freed 327K, 4% free 10981K/11399K, paused 2ms+3ms
D/dalvikvm( 5880): GC_FOR_ALLOC freed 462K, 7% free 11117K/11847K, paused 15ms
D/dalvikvm( 5880): GC_FOR_ALLOC freed 509K, 7% free 11204K/11975K, paused 19ms
F/libc ( 5880): Fatal signal 11 (SIGSEGV) at 0x00000010 (code=1)
D/GLWebViewState( 5880): Disappearing white area time and Sharpening time after zooming: -792252246255446009284224155586413572466884689443328824933945986737014592311901076586496.000 milliSecs
I/DEBUG ( 5822): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
I/DEBUG ( 5822): Build fingerprint: 'samsung/GT-I9100/GT-I9100:4.0.3/IML74K/XWLPD:user/release-keys'
I/DEBUG ( 5822): pid: 5880, tid: 5916 >>> com.google.android.gm <<<
I/DEBUG ( 5822): signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 00000010
I/DEBUG ( 5822): r0 00000000 r1 01dd0000 r2 40688d34 r3 4fd01dd0
I/DEBUG ( 5822): r4 00000000 r5 00000000 r6 00000000 r7 00000000
I/DEBUG ( 5822): r8 002d9058 r9 53cf6440 10 4d80b444 fp 53cf6484
I/DEBUG ( 5822): ip 4fd01e20 sp 53cf63d8 lr 40688d40 pc 40688c44 cpsr 60000010
I/DEBUG ( 5822): d0 ffffffffffffffff d1 bf800000bf800000
I/DEBUG ( 5822): d2 bf800000bf800000 d3 0000000047960000
I/DEBUG ( 5822): d4 bf800000bf800000 d5 bf800000bf800000
I/DEBUG ( 5822): d6 bf800000bf800000 d7 403b00000000001b
I/DEBUG ( 5822): d8 0000000000004699 d9 41d3f435636807bc
I/DEBUG ( 5822): d10 0000000000000000 d11 0000000000000000
I/DEBUG ( 5822): d12 0000000000000000 d13 0000000000000000
I/DEBUG ( 5822): d14 0000000000000000 d15 0000000000000000
I/DEBUG ( 5822): d16 0000000000000000 d17 0000000000000000
I/DEBUG ( 5822): d18 41219a3000000000 d19 0000000000000000
I/DEBUG ( 5822): d20 0000000000000000 d21 0000000000000000
I/DEBUG ( 5822): d22 0000000000000000 d23 0000000000000000
I/DEBUG ( 5822): d24 0000000000000000 d25 0000000000000000
I/DEBUG ( 5822): d26 0000000000000000 d27 0000000000000000
I/DEBUG ( 5822): d28 0000000000000000 d29 0000000000000000
I/DEBUG ( 5822): d30 0000000000000000 d31 0000000000000000
I/DEBUG ( 5822): scr 60000013
I/DEBUG ( 5822):
D/STATUSBAR-NetworkController( 2107): onSignalStrengthsChanged signalStrength=SignalStrength: 9 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 gsm|lte 3 level=3
E/lights ( 1984): write_int: path /sys/devices/virtual/sec/sec_touchkey/brightness, value 2
W/PowerManagerService( 1984): Timer 0x7->0x3|0x0
I/PowerManagerService( 1984): Ulight 7->3|0
D/PowerManagerService( 1984): setLightBrightness : mButtonLight : 0
I/DEBUG ( 5822): #00 pc 0003ac44 /system/lib/libskia.so (_ZN8SkRegion8freeRunsEv)
I/DEBUG ( 5822): #01 pc 0003ad3c /system/lib/libskia.so (_ZN8SkRegionD1Ev)
I/DEBUG ( 5822): #02 pc 00281e50 /system/lib/libwebcore.so
I/DEBUG ( 5822): #03 pc 00284c7e /system/lib/libwebcore.so
I/DEBUG ( 5822): #04 pc 00285050 /system/lib/libwebcore.so
I/DEBUG ( 5822): #05 pc 0027ec66 /system/lib/libwebcore.so
I/DEBUG ( 5822): #06 pc 0029af54 /system/lib/libwebcore.so
I/DEBUG ( 5822): #07 pc 0001ecf0 /system/lib/libdvm.so (dvmPlatformInvoke)
I/DEBUG ( 5822): #08 pc 00058fac /system/lib/libdvm.so (_Z16dvmCallJNIMethodPKjP6JValuePK6MethodP6Thread)
I/DEBUG ( 5822):
I/DEBUG ( 5822): code around pc:
I/DEBUG ( 5822): 40688c24 ebffe5e2 e2700001 33a00000 e8bd8070 ......p....3p...
I/DEBUG ( 5822): 40688c34 e3a00001 e8bd8070 e92d4010 e1a04000 [email protected]@..
I/DEBUG ( 5822): 40688c44 e5900010 e2403001 e3730003 88bd8010 [email protected]
I/DEBUG ( 5822): 40688c54 ebffe5d9 e3500001 18bd8010 e5940010 ......P.........
I/DEBUG ( 5822): 40688c64 e8bd4010 ea0138c9 e92d4010 e1a04000 [email protected]@[email protected]
I/DEBUG ( 5822):
I/DEBUG ( 5822): code around lr:
I/DEBUG ( 5822): 40688d20 e1a04000 e5803010 ebffffef e1a00004 [email protected]
I/DEBUG ( 5822): 40688d30 e8bd8010 e92d4010 e1a04000 ebffffbe [email protected]@......
I/DEBUG ( 5822): 40688d40 e1a00004 e8bd8010 e92d4070 e1a05000 [email protected]
I/DEBUG ( 5822): 40688d50 e2810002 e1a04001 e1a00100 eb0138da [email protected]
I/DEBUG ( 5822): 40688d60 e3a03001 e5850010 e8800018 e8bd8070 .0..........p...
I/DEBUG ( 5822):
I/DEBUG ( 5822): stack:
I/DEBUG ( 5822): 53cf6398 003f2500 [heap]
I/DEBUG ( 5822): 53cf639c 00125728 [heap]
I/DEBUG ( 5822): 53cf63a0 004d1d28 [heap]
I/DEBUG ( 5822): 53cf63a4 0044c970 [heap]
I/DEBUG ( 5822): 53cf63a8 00000000
I/DEBUG ( 5822): 53cf63ac 00000001
I/DEBUG ( 5822): 53cf63b0 003f2500 [heap]
I/DEBUG ( 5822): 53cf63b4 00125728 [heap]
I/DEBUG ( 5822): 53cf63b8 004d1d28 [heap]
I/DEBUG ( 5822): 53cf63bc 0044c970 [heap]
I/DEBUG ( 5822): 53cf63c0 00000000
I/DEBUG ( 5822): 53cf63c4 4fa3f3c9 /system/lib/libwebcore.so
I/DEBUG ( 5822): 53cf63c8 002d9688 [heap]
I/DEBUG ( 5822): 53cf63cc 004d1d28 [heap]
I/DEBUG ( 5822): 53cf63d0 df0027ad
I/DEBUG ( 5822): 53cf63d4 00000000
I/DEBUG ( 5822): #00 53cf63d8 00000000
I/DEBUG ( 5822): 53cf63dc 40688d40 /system/lib/libskia.so
I/DEBUG ( 5822): #01 53cf63e0 002d9688 [heap]
I/DEBUG ( 5822): 53cf63e4 4f7ede53 /system/lib/libwebcore.so
E/DataRouter( 1823): usb connection is true
E/DataRouter( 1823): DSR is ON. Don't send DTR ON.
D/KeyguardViewMediator( 1984): handleTimeout
If someone have any idea...
Click to expand...
Click to collapse
Although you wrote that all apps are clean and sd card was formatted, try to wipe cache (and Dalvik cache) in recovery mode.
Just to be sure that it is no cache issue.
If that does not help, try to remove your Google account and recreate it.
If that does not help either, you may have to flash the ROM again.
Good luck !

[ROM][CM10 Jellybean 4.1] PhotonBeans 4.1 Test build for Developers (Logcat Posted)

Hello everyone!
My name is AndroiddiordnA and I am new to Motorola Photon.
I have taken Jokersax CM9 Port as my base and brought epinter's CM10 port for the Atrix 4G over to Photon.
The Rom gets to this point and aborts.
about to run program [/tmp/backuptool.sh] with 2 args
Not backing up files from incompatible version.
run_program: child exited with status 127
package_extract_file: no system/bin/modelid_cfg.sh in package
set_perm: chown of /tmp/modelid_cfg.sh to 0 0 failed: No such file or directory
set_perm: chmod of /tmp/modelid_cfg.sh to 777 failed: No such file or directory
script aborted: set_perm: some changes failed
set_perm: some changes failed
E:Error in /sdcard/PhotonBeans071812.zip
(Status 7)
The rom and full logcat are hosted in my Dev-Host account.
http://d-h.st/users/AndroiddiordnA
If there are any developers willing to take a look at the Logcat and help me out it would be appreciated.
Would love to see some Photonbeans in action!
Keep it crispy,
AdA
This might seem obvious, but have you spoken to Joker himself? I know he's working on porting JB as well, and from what he's written before, it sounds like he's gotten it to boot, just had to deal with a lot of force closes. Perhaps both of you can collaborate together in some form.
Status update!
I got it booting to the bootscreen and have an updated logcat below!
I/Netd ( 2852): Netd 1.0 starting
D/AndroidRuntime( 2853):
D/AndroidRuntime( 2853): >>>>>> AndroidRuntime START com.android.internal.os.Zyg
oteInit <<<<<<
D/AndroidRuntime( 2853): CheckJNI is OFF
D/dalvikvm( 2853): Unable to stat classpath element '/system/framework/filterfw.
jar'
E/dalvikvm( 2853): ERROR: couldn't find native method
E/dalvikvm( 2853): Requested: Llibcore/net/RawSocket;.createLjava/io/FileDescr
iptor;Ljava/lang/StringV
E/dalvikvm( 2853): Candidate: Llibcore/net/RawSocket;.createLjava/io/FileDescr
iptor;SLjava/lang/StringV
E/JNIHelp ( 2853): RegisterNatives failed for 'libcore/net/RawSocket', aborting
F/libc ( 2853): Fatal signal 11 (SIGSEGV) at 0xdeadbaad (code=1)
I/ ( 2854): ServiceManager: 0xf958
D/AudioMgrRIL( 2854): Requesting current call status from RDS
D/AudioMgrRIL( 2854): RDS reports call not connected (callStatus = 0)
D/AudioPostProcessor( 2854): AudioPostProcessor()
D/AudioPostProcessor( 2854): Could not load beamformer parameters. Feature Disab
led.
D/AudioPostProcessor( 2854): No debug parameters in /data; checking ro.product.l
ocale.region
D/AudioPostProcessor( 2854): ro.product.locale.region value = US
D/AudioPostProcessor( 2854): /system/bin/ap_gain.bin file size is 50371
D/AudioPostProcessor( 2854): Read format version 0x1808, content version 0x1800
from /system/bin/ap_gain.bin
D/AudioPostProcessor( 2854): Successfully parsed parameters from /system/bin/ap_
gain.bin
D/AudioMsgHandler_CDMA( 2854): Create socket successful 16
D/AudioHardwareMot( 2854): nvInitSetup done
I/AudioFlinger( 2854): Loaded primary audio interface from LEGACY Audio HW HAL (
audio)
I/AudioFlinger( 2854): Using 'LEGACY Audio HW HAL' (audio.primary) as the primar
y audio interface
I/AudioFlinger( 2854): Loaded a2dp audio interface from A2DP Audio HW HAL (audio
)
D/AudioHardwareMot( 2854): setMode(NORMAL)
I/DEBUG ( 1384): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *
**
I/DEBUG ( 1384): Build fingerprint: 'MOTO/olyatt/olympus:2.3.4/4.5.91/110625:u
ser/release-keys'
I/DEBUG ( 1384): pid: 2853, tid: 2853 >>> zygote <<<
I/DEBUG ( 1384): signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr deadbaa
d
I/DEBUG ( 1384): r0 deadbaad r1 00000001 r2 a0000000 r3 00000000
I/DEBUG ( 1384): r4 00000000 r5 00000027 r6 4080b16d r7 00000003
I/DEBUG ( 1384): r8 401f9cb8 r9 beb124e4 10 4084b16d fp 4084b1b2
I/DEBUG ( 1384): ip ffffffff sp beb123c8 lr 4001f695 pc 4001ba00 cpsr 600
f0030
I/DEBUG ( 1384): d0 00000000bd6bc8e3 d1 0000000000000000
I/DEBUG ( 1384): d2 0000000000000000 d3 0000000000000000
I/DEBUG ( 1384): d4 0000000000000000 d5 419a9aaab0000000
I/DEBUG ( 1384): d6 3f50624dd2f1a9fc d7 c18af9670f34b1a1
I/DEBUG ( 1384): d8 0000000000000000 d9 0000000000000000
I/DEBUG ( 1384): d10 0000000000000000 d11 0000000000000000
I/DEBUG ( 1384): d12 0000000000000000 d13 0000000000000000
I/DEBUG ( 1384): d14 0000000000000000 d15 0000000000000000
I/DEBUG ( 1384): scr 00000010
I/DEBUG ( 1384):
I/CameraService( 2854): CameraService started (pid=2854)
V/NvOmxCamera( 2854): HAL_getNumberOfCameras ++
D/AudioHardwareMot( 2854): AudioHardwareMot:penOutputStream enter
D/AudioHardwareMot( 2854): AudioStreamOutMot::set(0xfba0, 2, 0, 0 0 0)
D/AudioHardwareMot( 2854): bufSize = 8192
D/AudioHardwareMot( 2854): bufSize = 8192
D/AudioHardwareMot( 2854): bufSize = 8192
I/AudioFlinger( 2854): AudioFlinger's thread 0x10cb8 ready to run
D/AudioHardwareMot( 2854): bufSize = 8192
W/AudioFlinger( 2854): Thread AudioOut_1 cannot connect to the power manager ser
vice
D/AudioHardwareMot( 2854): AudioStreamOutMot::setParameters() routing=2
D/AudioHardwareMot( 2854): set output from 2 to 2
D/AudioHardwareMot( 2854): [int android::AudioHardwareMot::audioSelectSpeakers(i
nt)] enter with spkr = 0
D/AudioHardwareMot( 2854): spkr1 = 0, spkr2 = 0
D/AudioHardwareMot( 2854): Setting STDAC speakers to none
D/AudioHardwareMot( 2854): configPostProcessor() called with accy = 9
D/AudioPostProcessor( 2854): configPostProcessing() called, inputAccy= 40, outpu
tAccy= 9, sampleRate= 44100, ringtoneMode= 0
D/AudioPostProcessor( 2854): updatePostProcessor: disabling effects
D/AudioPostProcessor( 2854): updatePostProcessor calling SuperAPI parser with: a
ccy=0 config=0 SE_level_index=1
D/AudioHardwareMot( 2854): Using FLUENCE_HIGH setting
D/AudioMgrRIL( 2854): Sending accessory : 1
D/AudioPostProcessor( 2854): slider opened, coeffs device for handset =0
D/AudioHardwareMot( 2854): doRouting devs: stereo 0, mono 0, input 0. Chose spea
ker None (gain 0) mic None (gain 0x1c1c)
D/CpcapAudio( 2854): 0x200 = 65
D/CpcapAudio( 2854): 0x201 = 0
D/CpcapAudio( 2854): 0x202 = 0
D/CpcapAudio( 2854): 0x203 = 0
D/CpcapAudio( 2854): 0x204 = 4
D/CpcapAudio( 2854): 0x205 = 0
D/CpcapAudio( 2854): 0x206 = 39c
D/CpcapAudio( 2854): 0x207 = 0
D/CpcapAudio( 2854): 0x208 = 0
D/CpcapAudio( 2854): 0x209 = 0
D/CpcapAudio( 2854): 0x20A = 0
D/CpcapAudio( 2854): 0x20B = 0
D/CpcapAudio( 2854): 0x20D = 30
D/AudioHardwareMot( 2854): setVoiceVolume(0.067000) Setting in-call volume to 0
(available range is 0 to 7)
D/AudioMgrRIL( 2854): setting volume, volume = 0
D/AudioHardwareMot( 2854): AudioStreamOutMot::standby called
D/AudioHardwareMot( 2854): setVoiceVolume(1.000000) Setting in-call volume to 7
(available range is 0 to 7)
D/AudioMgrRIL( 2854): setting volume, volume = 7
I/AudioPolicyService( 2854): Loaded audio policy from LEGACY Audio Policy HAL (a
udio_policy)
I/DEBUG ( 1384): #00 pc 00017a00 /system/lib/libc.so
I/DEBUG ( 1384): #01 pc 0000c282 /system/lib/libnativehelper.so (jn
iRegisterNativeMethods)
I/DEBUG ( 1384): #02 pc 0001c3d0 /system/lib/libnativehelper.so
I/DEBUG ( 1384): #03 pc 0000c438 /system/lib/libnativehelper.so
I/DEBUG ( 1384): #04 pc 0000c2a4 /system/lib/libnativehelper.so (_Z
24jniRegisterSystemMethodsP7_JNIEnv)
I/DEBUG ( 1384): #05 pc 00052df6 /system/lib/libdvm.so (_Z10dvmStar
tupiPKPKcbP7_JNIEnv)
I/DEBUG ( 1384): #06 pc 00054602 /system/lib/libdvm.so (JNI_CreateJ
avaVM)
I/DEBUG ( 1384): #07 pc 00045e72 /system/lib/libandroid_runtime.so
(_ZN7android14AndroidRuntime7startVmEPP7_JavaVMPP7_JNIEnv)
I/DEBUG ( 1384): #08 pc 00046254 /system/lib/libandroid_runtime.so
(_ZN7android14AndroidRuntime5startEPKcS2_)
I/DEBUG ( 1384): #09 pc 00008f0e /system/bin/app_process
I/DEBUG ( 1384): #10 pc 000169b4 /system/lib/libc.so (__libc_init)
I/DEBUG ( 1384):
I/DEBUG ( 1384): code around pc:
I/DEBUG ( 1384): 4001b9e0 4623b15c 2c006824 e026d1fb b12368db \.#F$h.,..&..h#
.
I/DEBUG ( 1384): 4001b9f0 21014a17 6011447a 48124798 24002527 .J.!zD.`.G.H'%.
$
I/DEBUG ( 1384): 4001ba00 f7f47005 2106ee50 eefcf7f5 f04fa901 .p..P..!......O
.
I/DEBUG ( 1384): 4001ba10 460a5380 93032006 94029401 eaa8f7f5 .S.F. .........
.
I/DEBUG ( 1384): 4001ba20 4622a905 f7f52002 f7f4eab2 2106ee3c .."F. ......<..
!
I/DEBUG ( 1384):
I/DEBUG ( 1384): code around lr:
I/DEBUG ( 1384): 4001f674 41f0e92d 4c0c4680 447c2600 68a56824 -..A.F.L.&|D$h.
h
I/DEBUG ( 1384): 4001f684 e0076867 300cf9b5 dd022b00 47c04628 gh.....0.+..(F.
G
I/DEBUG ( 1384): 4001f694 35544306 37fff117 6824d5f4 d1ee2c00 .CT5...7..$h.,.
.
I/DEBUG ( 1384): 4001f6a4 e8bd4630 bf0081f0 00028e6a 41f0e92d 0F......j...-..
A
I/DEBUG ( 1384): 4001f6b4 9004b086 f602fb01 460c461f 46154814 .........F.F.H.
F
I/DEBUG ( 1384):
I/DEBUG ( 1384): memory map around addr deadbaad:
I/DEBUG ( 1384): beafe000-beb13000 [stack]
I/DEBUG ( 1384): (no map for address)
I/DEBUG ( 1384): (no map above)
I/DEBUG ( 1384):
I/DEBUG ( 1384): stack:
I/DEBUG ( 1384): beb12388 569845a8 /dev/ashmem/dalvik-LinearAlloc (delet
ed)
I/DEBUG ( 1384): beb1238c 4084d4fc /system/lib/libdvm.so
I/DEBUG ( 1384): beb12390 401f4518 /system/lib/libnativehelper.so
I/DEBUG ( 1384): beb12394 00017020 [heap]
I/DEBUG ( 1384): beb12398 40048788 /system/lib/libc.so
I/DEBUG ( 1384): beb1239c 40048718 /system/lib/libc.so
I/DEBUG ( 1384): beb123a0 00000000
I/DEBUG ( 1384): beb123a4 4001f695 /system/lib/libc.so
I/DEBUG ( 1384): beb123a8 00000000
I/DEBUG ( 1384): beb123ac beb123dc [stack]
I/DEBUG ( 1384): beb123b0 4080b16d /system/lib/libdvm.so
I/DEBUG ( 1384): beb123b4 00000003
I/DEBUG ( 1384): beb123b8 401f9cb8 /system/lib/libnativehelper.so
I/DEBUG ( 1384): beb123bc 4001e801 /system/lib/libc.so
I/DEBUG ( 1384): beb123c0 df0027ad
I/DEBUG ( 1384): beb123c4 00000000
I/DEBUG ( 1384): #00 beb123c8 21c00001
I/DEBUG ( 1384): beb123cc c30732db
I/DEBUG ( 1384): beb123d0 401f4502 /system/lib/libnativehelper.so
I/DEBUG ( 1384): beb123d4 0000f2c8 [heap]
I/DEBUG ( 1384): beb123d8 401f4502 /system/lib/libnativehelper.so
I/DEBUG ( 1384): beb123dc fffffbdf
I/DEBUG ( 1384): beb123e0 00000003
I/DEBUG ( 1384): beb123e4 0000f2c8 [heap]
I/DEBUG ( 1384): beb123e8 401f4502 /system/lib/libnativehelper.so
I/DEBUG ( 1384): beb123ec 401d1285 /system/lib/libnativehelper.so
I/DEBUG ( 1384): #01 beb123f0 0000f2c8 [heap]
I/DEBUG ( 1384): beb123f4 21c00001
I/DEBUG ( 1384): beb123f8 0000f2c8 [heap]
I/DEBUG ( 1384): beb123fc beb1256c [stack]
I/DEBUG ( 1384): beb12400 00012830 [heap]
I/DEBUG ( 1384): beb12404 4018d350 /system/lib/libandroid_runtime.so
I/DEBUG ( 1384): beb12408 0000f2f8 [heap]
I/DEBUG ( 1384): beb1240c 401e13d5 /system/lib/libnativehelper.so
I/ServiceManager( 1381): service 'media.audio_flinger' died
I/ServiceManager( 1381): service 'media.player' died
I/ServiceManager( 1381): service 'media.camera' died
I/ServiceManager( 1381): service 'media.audio_policy' died
thank you very much
im very looking forward to see it in my phone.
good luck with that
Thought we would see a lot of action in this thread by now...lol.
Welcome to the photon community.
Sent from my MB855 using xda app-developers app
Welcome, we appreciate any and all developers to expanding our wondrous photon. As someone else said speak to our main guy Jokersax. He had been working on some jelly bean.
And thanks for joining or little community.
Sent from my PHOTON wishing it had some photonbean on it.
Thank you everyone for the awesome welcoming!
I was up until 4am Florida time working on that rom last night.
I found by switching out the libaudioflinger.so and the libaudiopolicy.so I got it to give me a different logcat. But by examining it closer it looks like that logcat was worse off than the first one.
Sooooo....
Back to the drawing board :fingers-crossed:
Hopefully I can get a Photon Master in here to point me in the right direction. I have swapped out so many libs it is unreal and still cant get her past the bootscreen bootloop. Tried a couple different kernels as well to no avail.
If anyone can help out with this issue, please speak up. All ideas are appreciated and no one is going to give you any crap if you're wrong.
We are all here working together! :highfive:
Keep it crispy,
AdA
BTW: This is my first Motorola device so I am learning as I go, YOUR BOOTLOADER IS WORSE THAN HTC! I didn't think that was possible...lol
I just got cm10 booting from source today, itll be posted after a few bug fixes
AndroiddiordnA said:
Thank you everyone for the awesome welcoming!
I was up until 4am Florida time working on that rom last night.
I found by switching out the libaudioflinger.so and the libaudiopolicy.so I got it to give me a different logcat. But by examining it closer it looks like that logcat was worse off than the first one.
Sooooo....
Back to the drawing board :fingers-crossed:
Hopefully I can get a Photon Master in here to point me in the right direction. I have swapped out so many libs it is unreal and still cant get her past the bootscreen bootloop. Tried a couple different kernels as well to no avail.
If anyone can help out with this issue, please speak up. All ideas are appreciated and no one is going to give you any crap if you're wrong.
We are all here working together! :highfive:
Keep it crispy,
AdA
BTW: This is my first Motorola device so I am learning as I go, YOUR BOOTLOADER IS WORSE THAN HTC! I didn't think that was possible...lol
Click to expand...
Click to collapse
im uploading now, but you can see that many many framework changes had to be done to fix that issue.
Why dont you guys team up? Two heads better then one!!!
My build box is in the works so hopefully ill b able to contribute aswell
Sent from my MB855 using xda app-developers app
jokersax11 said:
im uploading now, but you can see that many many framework changes had to be done to fix that issue.
Click to expand...
Click to collapse
Awesome news just logged on and saw your responses!
Now we have a booting, working, alpha version of 4.1 to base our work off of!
Thank you Jokersax!:highfive:
been running jokers 4.1 alpha for a couple of hours. suprisingly no force closes! I love seeing this taking form, you guys are like artists. other than mobile data not working and the lack of drivers it works great!
AndroiddiordnA said:
Awesome news just logged on and saw your responses!
Now we have a booting, working, alpha version of 4.1 to base our work off of!
Thank you Jokersax!:highfive:
Click to expand...
Click to collapse
Do you have any ideas why data is borked.
Sent from my MB855 using xda premium
Funny you ask,
Data on 4.1 is like the holy grail, I cant tell you how many builds I have tested in the last 3 days.
I have come to the conclusion that somehow either in the framework or in the libs the phone is provisioned for GSM data and not CDMA.
I even went as far as trying to turn my photon into a GSM photon and then flashing CM10 and I bricked my device (Long story and 4 red bulls later) I am back to CM9 and tired as hell. :silly:
My guess?
I tried using APN backup restore app on CM9. You have to use titanium backup to make it a system app before you can make any true changes to the APN. After I did all of those steps I flashed CM10 and tried to restore my backup. 4.1 will NOT let you make APN backup and restore a system app. Therefore you cannot restore your working APN settings from CM9.
Might have something to do with root, I don't know at this point. I wasn't the genius to get it booting so i probably won't be the genius to get data working either. BUT that doesn't mean im going to stop trying...lol :fingers-crossed:
Keep it crispy,
AdA
AndroiddiordnA said:
Funny you ask,
Data on 4.1 is like the holy grail, I cant tell you how many builds I have tested in the last 3 days.
I have come to the conclusion that somehow either in the framework or in the libs the phone is provisioned for GSM data and not CDMA.
I even went as far as trying to turn my photon into a GSM photon and then flashing CM10 and I bricked my device (Long story and 4 red bulls later) I am back to CM9 and tired as hell. :silly:
My guess?
I tried using APN backup restore app on CM9. You have to use titanium backup to make it a system app before you can make any true changes to the APN. After I did all of those steps I flashed CM10 and tried to restore my backup. 4.1 will NOT let you make APN backup and restore a system app. Therefore you cannot restore your working APN settings from CM9.
Might have something to do with root, I don't know at this point. I wasn't the genius to get it booting so i probably won't be the genius to get data working either. BUT that doesn't mean im going to stop trying...lol :fingers-crossed:
Keep it crispy,
AdA
Click to expand...
Click to collapse
Good luck! I'm always willing to test on my mopho
Sent from my JellyBean Poppin MoPho
So you quit working on this?
Sent from my MB855 using xda app-developers app
I haven't *quit*
Been busy with actual life projects.
Check out my CM7 xperia thread for more info on that I guess.
But Photonbeans is still in the works im just taking it in a different direction than the original port. Building it from source was the better option and joker did exactly that so im going to do the same but of course it will take some time.
Thanks,
AdA
AndroiddiordnA said:
I haven't *quit*
Been busy with actual life projects.
Check out my CM7 xperia thread for more info on that I guess.
But Photonbeans is still in the works im just taking it in a different direction than the original port. Building it from source was the better option and joker did exactly that so im going to do the same but of course it will take some time.
Thanks,
AdA
Click to expand...
Click to collapse
Check out Nexus S threads....have some really interesting roms on there. I have grabbed the 2 I know people expected me to do, but there are some that may be popular here. CNA is back with JB, as well as ones like Xenon. Most of the builds there are HIGHLY compatible with our phones as a starting point.
hello
welcome to the MoPho(photon nickname). send a friend invite to th3bill here,he is the awesome porter on jokersax.com and a great dude

[DEV] Porting 3.4 kernel.

ITT: hunderteins doing wonders working on kernel.
No troll.
Chance appeared.
OK.
What do we have to start with:
Current (kibuuka's) camera implementation is in using camera wrapper / HAL that provides HAL functions, bridging them to libcamera.so
Unfortunately, libcamera uses three overlay functions, used to be in libui in Gingerbread.
Now they are in liboverlay.so (and two haven't exact analogs).
My thoughts:
Does liboverlay actually work?
Can we simply add/replace needed functions -
overlay:: Overlay::setFd(int) _ZN7overlay7Overlay5setFdEi - new impl uses second channel parameter.
overlay:: Overlay::setCrop(unsigned int, unsigned int, unsigned int, unsigned int) _ZN7overlay7Overlay7setCropEjjjj - present as is.
overlay:: Overlay::queueBuffer(void *) _ZN7overlay7Overlay11queueBufferEPv - dunno.
So far: i've made a simple hacks to liboverlay and libcamera - wrappers loads fine.
But on Camera init if fails (seems like on wrapper init):
Code:
I/CameraService( 117): Opening camera 0
D/CameraHAL( 117): qcamera_device_open: name:0 device:0x153e4 cameraId:0
F/libc ( 117): Fatal signal 11 (SIGSEGV) at 0x00000000 (code=1)
I/Process ( 184): Sending signal. PID: 653 SIG: 3
I/dalvikvm( 653): threadid=3: reacting to signal 3
I/dalvikvm( 653): Wrote stack traces to '/data/anr/traces.txt'
D/dalvikvm( 250): GC_CONCURRENT freed 285K, 27% free 10229K/13959K, paused 7ms+14ms
D/dalvikvm( 653): GC_CONCURRENT freed 206K, 4% free 9376K/9671K, paused 4ms+11ms
D/dalvikvm( 653): GC_FOR_ALLOC freed 21K, 3% free 9768K/10055K, paused 20ms
I/DEBUG ( 111): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
I/DEBUG ( 111): Build fingerprint: 'dell/dell_streak/streak:4.0.4/IMM76L/eng.den.20120711.230916:eng/test-keys'
I/DEBUG ( 111): pid: 117, tid: 117 >>> /system/bin/mediaserver <<<
I/DEBUG ( 111): signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 00000000
I/DEBUG ( 111): r0 00000000 r1 40f463b0 r2 ffffff54 r3 ffffff58
I/DEBUG ( 111): r4 40f4622c r5 405aa4b1 r6 beb2c9dc r7 00000000
I/DEBUG ( 111): r8 0000028d r9 beb2caa4 10 beb2c9f0 fp 40f462e8
I/DEBUG ( 111): ip ffffff50 sp beb2c970 lr ffffff48 pc 40f44322 cpsr 40000030
I/DEBUG ( 111): d0 496172656d616320 d1 0076007200650035
I/DEBUG ( 111): d2 0065007200610033 d3 0061004300490065
I/DEBUG ( 111): d4 0069007300730069 d5 006f0043006e006f
I/DEBUG ( 111): d6 006f00720074006e d7 00720065006c006c
I/DEBUG ( 111): d8 0000000000000000 d9 0000000000000000
I/DEBUG ( 111): d10 0000000000000000 d11 0000000000000000
I/DEBUG ( 111): d12 0000000000000000 d13 0000000000000000
I/DEBUG ( 111): d14 0000000000000000 d15 0000000000000000
I/DEBUG ( 111): d16 0000000000000000 d17 3fefae147ae147ae
I/DEBUG ( 111): d18 4000000000000000 d19 3fcce748f8ed8687
I/DEBUG ( 111): d20 3f11504c209ef562 d21 bebbb370fb6f0b05
I/DEBUG ( 111): d22 3ff0000000000000 d23 3ff43d16aee00482
I/DEBUG ( 111): d24 3e66376972bea4d0 d25 0000000000000000
I/DEBUG ( 111): d26 0000000000000000 d27 0000000000000000
I/DEBUG ( 111): d28 0000000000000000 d29 0000000000000000
I/DEBUG ( 111): d30 0000000000000000 d31 0000000000000000
I/DEBUG ( 111): scr 20000010
I/DEBUG ( 111):
D/dalvikvm( 653): GC_CONCURRENT freed 15K, 2% free 10233K/10439K, paused 2ms+15ms
I/DEBUG ( 111): #00 pc 00002322 /system/lib/hw/camera.streak.so (_Z21qcamera_set_callbacksP13camera_devicePFviiiPvEPFviPK13camera_memoryjP21camera_frame_metadataS1_EPFvxiS6_jS1_EPFPS4_ijjS1_ES1_)
I/DEBUG ( 111): #01 pc 0000a84a /system/lib/libcameraservice.so (_ZN7android13CameraService6ClientC1ERKNS_2spIS0_EERKNS2_INS_13ICameraClientEEERKNS2_INS_23CameraHardwareInterfaceEEEiii)
I/DEBUG ( 111): #02 pc 0000aba6 /system/lib/libcameraservice.so (_ZN7android13CameraService7connectERKNS_2spINS_13ICameraClientEEEi)
I/DEBUG ( 111): #03 pc 000174b6 /system/lib/libcamera_client.so (_ZN7android15BnCameraService10onTransactEjRKNS_6ParcelEPS1_j)
I/DEBUG ( 111): #04 pc 00008d62 /system/lib/libcameraservice.so (_ZN7android13CameraService10onTransactEjRKNS_6ParcelEPS1_j)
I/DEBUG ( 111): #05 pc 00017ec0 /system/lib/libbinder.so (_ZN7android7BBinder8transactEjRKNS_6ParcelEPS1_j)
I/DEBUG ( 111): #06 pc 0001b1ea /system/lib/libbinder.so (_ZN7android14IPCThreadState14executeCommandEi)
I/DEBUG ( 111): #07 pc 0001b3c6 /system/lib/libbinder.so (_ZN7android14IPCThreadState14joinThreadPoolEb)
I/DEBUG ( 111): #08 pc 00008a96 /system/bin/mediaserver
I/DEBUG ( 111): #09 pc 00016524 /system/lib/libc.so (__libc_init)
I/DEBUG ( 111):
I/DEBUG ( 111): code around pc:
I/DEBUG ( 111): 40f44300 58216029 9d064811 f854600a 5821200c )`!X.H...`T.. !X
I/DEBUG ( 111): 40f44310 c03cf8df f8546013 6808300e 601d4a0d ..<..`T..0.h.J.`
I/DEBUG ( 111): 40f44320 68054b0d 58e358a1 200cf854 94009c07 .K.h.X.XT.. ....
I/DEBUG ( 111): 40f44330 47a0692c bf00bd3e 00001f38 ffffff3c ,i.G>...8...<...
I/DEBUG ( 111): 40f44340 ffffff40 ffffff44 ffffff48 ffffff4c @...D...H...L...
I/DEBUG ( 111):
I/DEBUG ( 111): code around lr:
I/DEBUG ( 111): ffffff28 ffffffff ffffffff ffffffff ffffffff ................
I/DEBUG ( 111): ffffff38 ffffffff ffffffff ffffffff ffffffff ................
I/DEBUG ( 111): ffffff48 ffffffff ffffffff ffffffff ffffffff ................
I/DEBUG ( 111): ffffff58 ffffffff ffffffff ffffffff ffffffff ................
I/DEBUG ( 111): ffffff68 ffffffff ffffffff ffffffff ffffffff ................
I/DEBUG ( 111):
I/DEBUG ( 111): stack:
I/DEBUG ( 111): beb2c930 000224e0 [heap]
I/DEBUG ( 111): beb2c934 4008b498
I/DEBUG ( 111): beb2c938 405abe48 /system/lib/libcameraservice.so
I/DEBUG ( 111): beb2c93c 40057a1d /system/lib/libc.so
I/DEBUG ( 111): beb2c940 000224e0 [heap]
I/DEBUG ( 111): beb2c944 4008b4a8
I/DEBUG ( 111): beb2c948 00013758 [heap]
I/DEBUG ( 111): beb2c94c 000137a4 [heap]
I/DEBUG ( 111): beb2c950 405ae194 /system/lib/libcameraservice.so
I/DEBUG ( 111): beb2c954 beb2c9dc [stack]
I/DEBUG ( 111): beb2c958 00014ad0 [heap]
I/DEBUG ( 111): beb2c95c 000153e0 [heap]
I/DEBUG ( 111): beb2c960 00014ad0 [heap]
I/DEBUG ( 111): beb2c964 000153e0 [heap]
I/DEBUG ( 111): beb2c968 df0027ad
I/DEBUG ( 111): beb2c96c 00000000
I/DEBUG ( 111): #00 beb2c970 00014710 [heap]
I/DEBUG ( 111): beb2c974 405a8571 /system/lib/libcameraservice.so
I/DEBUG ( 111): beb2c978 405a9031 /system/lib/libcameraservice.so
I/DEBUG ( 111): beb2c97c 00013758 [heap]
I/DEBUG ( 111): beb2c980 40f442e9 /system/lib/hw/camera.streak.so
I/DEBUG ( 111): beb2c984 405ab84d /system/lib/libcameraservice.so
I/DEBUG ( 111): #01 beb2c988 405aa4b1 /system/lib/libcameraservice.so
I/DEBUG ( 111): beb2c98c 000153e0 [heap]
I/DEBUG ( 111): beb2c990 00013758 [heap]
I/DEBUG ( 111): beb2c994 00000000
I/DEBUG ( 111): beb2c998 0000fd88 [heap]
I/DEBUG ( 111): beb2c99c beb2ca90 [stack]
I/DEBUG ( 111): beb2c9a0 0000028d
I/DEBUG ( 111): beb2c9a4 405ae194 /system/lib/libcameraservice.so
I/DEBUG ( 111): beb2c9a8 beb2c9dc [stack]
I/DEBUG ( 111): beb2c9ac 405abbab /system/lib/libcameraservice.so
In attach:
libcamera.so (libui reference changed to libov.so, android:: Overlay changed to overlay:: Overlay) and libov.so (quickly built liboverlay variant)
Useful only if you want to debug the issue further.
This libcamera2
https://github.com/Dorregaray/libcamera2
uses the very same Overlay functions. Anyone willing to rewrite?
Some light on ICS camera implementation:
http://marakana.com/static/courseware/android/Aptina-Android-Camera-Internals.pdf
http://forum.xda-developers.com/showthread.php?t=1379368
Looks like this is the only patch we can take.
--
In attach - built lib (/system/lib/hw)
To avoid init error in Camera - do a
chmod -R 666 /dev/msm_camera/*
--
Doesn't work now - but hey, it at least doesn't die
@all the streakers , where are your thanks, don't you see what's going on over here, thank the guy a thousand times.
Thank you , n0p
Need more explanation!
_n0p_ said:
http://forum.xda-developers.com/showthread.php?t=1379368
Looks like this is the only patch we can take.
--
In attach - built lib (/system/lib/hw)
To avoid init error in Camera - do a
chmod -R 666 /dev/msm_camera/*
--
Doesn't work now - but hey, it at least doesn't die
Click to expand...
Click to collapse
I do not really understand this problem! You can add is not clear? camera.streak.zip for any rom? Does the [ROM] [Early pre-alpha] AOSP ICS 4.0.4_r2.1 for DS5.
Thank!
This camera.streak.so is just a quickly built HAL/wrapper for liboemcamera.
Now it only shows blank screen, but it at least:
Allows camera app to work.
Correctly loads our liboemcamera.
Eliminates need of intermidiate libcamera.so.
I hope i'll be able to make it at least shoot, taking sources from old CAF camera libraries.
Too bad I don't have much time, and most important, abilities for that, so the process will be slow.
Other path we could take - fully reimplementing camera support by using kernel msm camera sources as base, but I doubt that I can handle this much of R&D work.
Does it useful for us?
http://forum.xda-developers.com/showthread.php?t=1448303
Or this:
http://www.spinics.net/lists/linux-media/msg51836.html
http://www.spinics.net/lists/linux-omap/msg69649.html
http://www.spinics.net/lists/linux-media/msg37279.html
Thank you! First one is a very nice piece of work!
_n0p_ said:
Thank you! First one is a very nice piece of work!
Click to expand...
Click to collapse
All the thanks to me are belong to you Sergei; you are the man!
---------- Post added at 01:09 PM ---------- Previous post was at 01:02 PM ----------
I have seen another camera development for ics one month ago and the dev wrote that,it can work on ds5 but i forgot the link.
It was on xda too.
The dev have been released a flashable zip which includes all the files required to work camera on ics.
Possible cam issue solution
The link below contains some information about ov5642 and ov 5640 cameras.
The person is a android developer, maybe we can get help from him.
http://cn.linkedin.com/pub/lu-wei/37/602/484
sinan33 said:
All the thanks to me are belong to you Sergei; you are the man!
---------- Post added at 01:09 PM ---------- Previous post was at 01:02 PM ----------
I have seen another camera development for ics one month ago and the dev wrote that,it can work on ds5 but i forgot the link.
It was on xda too.
The dev have been released a flashable zip which includes all the files required to work camera on ics.
Click to expand...
Click to collapse
First link you posted is very valuable. Dunno if it could be directly reused, but patches actually should solve the exact problems we have with our libcamera (overlay libui functions). I will try to apply patches and build libs asap.
We are waiting your great news about ICS progress, n0p. Dont hesitate to let us know if you need any help from us.
Todays log:
Code:
D/CameraHAL( 1274): CameraHAL_GetNum_Cameras: loading libcamera at 0xb000e8a8
I/CameraService( 1274): Opening camera 0
D/CameraHAL( 1274): qcamera_device_open: name:0 device:0x13b64 cameraId:0
D/CameraHAL( 1274): loading libcamera at 0xb000e8a8
D/QualcommCameraHardware( 1274): openDualCamera: E
D/QualcommCameraHardware( 1274): openDualCamera: ov5642 is found
D/PrintK ( 1274): <6>msm_camera: sensor_store: sensor ov5642 found
D/QualcommCameraHardware( 1274): openDualCamera: X, 1
D/QualcommCameraHardware( 1274): createInstance: E
E/QualcommCameraHardware( 1274): Sensor name ov5642 is found
D/PrintK ( 1274): <6>msm_camera: msm_camio_enable: turn on camera power
D/PrintK ( 1274): <6>vreg_enable: wlan enabled
D/PrintK ( 1274): <6>vreg_enable: gp5 enabled
D/PrintK ( 1274): <6>vreg_enable: msme2 enabled
D/PrintK ( 1274): <6>vreg_enable: gp3 enabled
D/dalvikvm( 1286): GC_CONCURRENT freed 199K, 4% free 9354K/9671K, paused 3ms+2ms
D/dalvikvm( 1286): GC_FOR_ALLOC freed 10K, 4% free 9378K/9671K, paused 24ms
D/dalvikvm( 1286): GC_FOR_ALLOC freed 13K, 3% free 9766K/10055K, paused 22ms
D/PrintK ( 1274): <6>msm_camera: ov5642_reg_init(403): 90 ms
D/dalvikvm( 1286): GC_CONCURRENT freed 58K, 3% free 10198K/10439K, paused 3ms+3ms
F/PrintK ( 104): <2>[I2C]IRQ: 78 W33 Error (21D0)
W/PrintK ( 1274): [I2C]Recover (0000) intf 300: Bus busy cleared after 1 clock cycles
D/PrintK ( 1274): <6>msm_camera: ov5642_i2c_burst_write: write 51h 33 bytes successfully at retryCnt=1
D/PrintK ( 1274): <6>msm_camera: ov5642_reg_init(424): 310 ms
D/PrintK ( 1274): <6>msm_camera: __msm_open: sensor ov7690 power down
D/PrintK ( 1274): <6>msm_camera: ov5642_sensor_init: 1D sensor
W/PrintK ( 1274): msm_get_sensor_info: sensor_name ov5642
D/QualcommCameraHardware( 1274): initDefaultParameters E
E/mm-camera( 1274): cam_conf: sensor name:ov5642 and length:6
E/mm-camera( 1274): cam_conf: open sensor name ov5642
W/PrintK ( 1274): msm_get_sensor_info: sensor_name ov5642
F/libc ( 1274): Fatal signal 8 (SIGFPE) at 0x000004fa (code=0)
I/Process ( 182): Sending signal. PID: 1286 SIG: 3
I/dalvikvm( 1286): threadid=3: reacting to signal 3
I/dalvikvm( 1286): Wrote stack traces to '/data/anr/traces.txt'
I/Process ( 182): Sending signal. PID: 1286 SIG: 3
I/dalvikvm( 1286): threadid=3: reacting to signal 3
I/dalvikvm( 1286): Wrote stack traces to '/data/anr/traces.txt'
D/PrintK ( 1274): <6>msm_enqueue: queue control new max is 1
D/QualcommCameraHardware( 1274): findSensorType: sensorType is 5mp
D/QualcommCameraHardware( 1274): filterPictureSizes: supportedPictureSizesCount=6
D/QualcommCameraHardware( 1274): ctrlCmd.value = 30
D/QualcommCameraHardware( 1274): Maximum zoom value is 30
D/QualcommCameraHardware( 1274): initDefaultParameters X
D/QualcommCameraHardware( 1274): createInstance: X created hardware=0x13be8
E/ExtendedExtractor( 1274): Failed to open MM_PARSER_LIB, dlerror = Cannot load library: reloc_library[1285]: 1274 cannot locate '_ZN7android11MediaSource23getNumberOfVideoBuffersEv'...
E/ExtendedExtractor( 1274):
E/ExtendedExtractor( 1274): Failed to open MM_PARSER_LITE_LIB, dlerror = Cannot load library: load_library[1091]: Library 'libmmparser_lite.so' not found
did you tried a simple
#touch /system/lib/libmmparser_lite.so
maybe its not very much needed,at least for now.
https://github.com/ThePlayground/proprietary_vendor_qcom/commits/ics
https://github.com/aospX/platform_vendor_qcom_proprietary/commits/ics-devel
https://github.com/aospX/platform_vendor_qcom_proprietary/commits/ics-devel
Are those useful for us?
I actually don't think it's the real problem - look at SIGFPE in libc while getting camera parameters.
--
I'm still hesitating what path should we take (keeping in mind that i have less than hour per day for tests).
Anyway - after applying (thank you, sinan33) patches, libcamera loads and seems to work (mm-camera).
We having this on GB camera start:
Code:
W/PrintK ( 1785): msm_get_sensor_info: sensor_name ov5642
D/QualcommCameraHardware( 1785): initDefaultParameters E
E/mm-camera( 1785): cam_conf: sensor name:ov5642 and length:6
E/mm-camera( 1785): cam_conf: open sensor name ov5642
W/PrintK ( 1785): msm_get_sensor_info: sensor_name ov5642
D/PrintK ( 1785): <6>msm_enqueue: queue control new max is 1
and this on ICS:
Code:
W/PrintK ( 1274): msm_get_sensor_info: sensor_name ov5642
D/QualcommCameraHardware( 1274): initDefaultParameters E
E/mm-camera( 1274): cam_conf: sensor name:ov5642 and length:6
E/mm-camera( 1274): cam_conf: open sensor name ov5642
W/PrintK ( 1274): msm_get_sensor_info: sensor_name ov5642
F/libc ( 1274): Fatal signal 8 (SIGFPE) at 0x000004fa (code=0)
https://bugzilla.mozilla.org/show_bug.cgi?id=766395
pastebin.com/6BBkRMBs
And those?
---------- Post added at 10:55 AM ---------- Previous post was at 10:47 AM ----------
pastebin.com/b1cB4SFF
Maybe this would help us?
---------- Post added at 10:56 AM ---------- Previous post was at 10:55 AM ----------
http://fixunix.com/unix/335322-catching-sigfpe-signal.html
---------- Post added at 10:58 AM ---------- Previous post was at 10:56 AM ----------
Description of SIGFPE 8:
Action:Core
Comment:Floating point exception.
"SIGFPE 8 Core Floating point exception"
_n0p_ said:
I actually don't think it's the real problem - look at SIGFPE in libc while getting camera parameters.
--
I'm still hesitating what path should we take (keeping in mind that i have less than hour per day for tests).
Anyway - after applying (thank you, sinan33) patches, libcamera loads and seems to work (mm-camera).
We having this on GB camera start:
Code:
W/PrintK ( 1785): msm_get_sensor_info: sensor_name ov5642
D/QualcommCameraHardware( 1785): initDefaultParameters E
E/mm-camera( 1785): cam_conf: sensor name:ov5642 and length:6
E/mm-camera( 1785): cam_conf: open sensor name ov5642
W/PrintK ( 1785): msm_get_sensor_info: sensor_name ov5642
D/PrintK ( 1785): <6>msm_enqueue: queue control new max is 1
and this on ICS:
Code:
W/PrintK ( 1274): msm_get_sensor_info: sensor_name ov5642
D/QualcommCameraHardware( 1274): initDefaultParameters E
E/mm-camera( 1274): cam_conf: sensor name:ov5642 and length:6
E/mm-camera( 1274): cam_conf: open sensor name ov5642
W/PrintK ( 1274): msm_get_sensor_info: sensor_name ov5642
F/libc ( 1274): Fatal signal 8 (SIGFPE) at 0x000004fa (code=0)
Click to expand...
Click to collapse
can you please upload the latest build
Uploading to SkyDrive now, but doubt that it has any practical effect.
https://skydrive.live.com/redir.asp...!Amrj8sR38ZY7OSw&Bpub=SDX.SkyDrive&Bsrc=Share
In attach - version of camera.streak.so that should dump camera parameters to log.
Don't forget to
chmod 666 /dev/msm_camera/*
So far:
Code:
D/PrintK ( 118): <6>msm_camera: ov5642_reg_init(403): 100 ms
D/dalvikvm( 671): GC_CONCURRENT freed 13K, 2% free 10233K/10439K, paused 2ms+2ms
D/PrintK ( 118): <6>msm_camera: ov5642_reg_init(424): 170 ms
D/PrintK ( 118): <6>msm_camera: __msm_open: sensor ov7690 power down
D/PrintK ( 118): <6>msm_camera: ov5642_sensor_init: 1D sensor
W/PrintK ( 118): msm_get_sensor_info: sensor_name ov5642
D/QualcommCameraHardware( 118): initDefaultParameters E
E/mm-camera( 118): cam_conf: sensor name:ov5642 and length:6
D/PrintK ( 118): <6>msm_enqueue: queue event new max is 1
E/mm-camera( 118): cam_conf: open sensor name ov5642
W/PrintK ( 118): msm_get_sensor_info: sensor_name ov5642
F/libc ( 118): Fatal signal 8 (SIGFPE) at 0x00000076 (code=0)
I/Process ( 185): Sending signal. PID: 671 SIG: 3
I/dalvikvm( 671): threadid=3: reacting to signal 3
I/dalvikvm( 671): Wrote stack traces to '/data/anr/traces.txt'
D/PrintK ( 118): <6>msm_enqueue: queue control new max is 1
D/QualcommCameraHardware( 118): findSensorType: sensorType is 5mp
D/QualcommCameraHardware( 118): filterPictureSizes: supportedPictureSizesCount=6
D/QualcommCameraHardware( 118): ctrlCmd.value = 30
D/QualcommCameraHardware( 118): Maximum zoom value is 30
D/QualcommCameraHardware( 118): initDefaultParameters X
D/QualcommCameraHardware( 118): createInstance: X created hardware=0x186f0
D/CameraHAL( 118): camera_set_callbacks
D/CameraHAL( 118): camera_enable_msg_type: type 13
D/CameraHAL( 118): camera_enable_msg_type: CAMERA_MSG_ERROR
D/CameraHAL( 118): camera_enable_msg_type: CAMERA_MSG_FOCUS
D/CameraHAL( 118): camera_enable_msg_type: CAMERA_MSG_ZOOM
I/AwesomePlayer( 118): setDataSource_l('/system/media/audio/ui/camera_click.ogg')
E/OMXCodec( 118): Attempting to allocate OMX node 'OMX.google.vorbis.decoder'
E/OMXCodec( 118): Successfully allocated OMX node 'OMX.google.vorbis.decoder'
I/AwesomePlayer( 118): setDataSource_l('/system/media/audio/ui/VideoRecord.ogg')
E/OMXCodec( 118): Attempting to allocate OMX node 'OMX.google.vorbis.decoder'
E/OMXCodec( 118): Successfully allocated OMX node 'OMX.google.vorbis.decoder'
D/CameraHAL( 118): camera_get_parameters
D/CameraHAL( 118): camera_get_parameters
D/Camera ( 671): app passed NULL surface
D/CameraHAL( 118): camera_get_camera_info: id:0 faceing:0 orientation: 90
D/CameraHAL( 118): camera_get_parameters
V/camera ( 671): Preview size is 640x480
D/CameraHAL( 118): camera_set_parameters
D/QualcommCameraHardware( 118): setParameters: E params = 0xbea15a3c
D/QualcommCameraHardware( 118): requested preview size 640 x 480
D/QualcommCameraHardware( 118): requested picture size 1280 x 960
D/QualcommCameraHardware( 118): Set zoom=0
I/DEBUG ( 111): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
I/DEBUG ( 111): Build fingerprint: 'dell/dell_streak/streak:4.0.4/IMM76L/eng.den.20120711.230916:eng/test-keys'
I/DEBUG ( 111): pid: 118, tid: 689 >>> /system/bin/mediaserver <<<
I/DEBUG ( 111): signal 8 (SIGFPE), code 0 (?), fault addr 00000076
I/DEBUG ( 111): r0 00000000 r1 00000008 r2 ffffffff r3 00000000
I/DEBUG ( 111): r4 00000008 r5 000003c0 r6 0000000a r7 00000025
I/DEBUG ( 111): r8 a7762fa0 r9 41b52aa8 10 41b52ac4 fp 00000000
I/DEBUG ( 111): ip 4005c12d sp 41b529e8 lr 4005c13b pc 400506b0 cpsr 00000010
I/DEBUG ( 111): d0 0000079800000000 d1 44a0000000000002
I/DEBUG ( 111): d2 4000333340000000 d3 0000000000000a20
I/DEBUG ( 111): d4 0000000000000000 d5 0000000000000000
I/DEBUG ( 111): d6 0000050000000000 d7 0000000000000000
I/DEBUG ( 111): d8 0000000000000000 d9 0000000000000000
I/DEBUG ( 111): d10 0000000000000000 d11 0000000000000000
I/DEBUG ( 111): d12 0000000000000000 d13 0000000000000000
I/DEBUG ( 111): d14 0000000000000000 d15 0000000000000000
I/DEBUG ( 111): d16 3fe0000000000000 d17 4001540d31d1dd7f
I/DEBUG ( 111): d18 4000000000000000 d19 bfc540d31d1dd7f1
I/DEBUG ( 111): d20 3f1153849946b6ba d21 bebbb89c51a06d6e
I/DEBUG ( 111): d22 3ff0000000000000 d23 3feb390135d1ac72
I/DEBUG ( 111): d24 3e66376972bea4d0 d25 0000000000000000
I/DEBUG ( 111): d26 0000000000000000 d27 0000000000000000
I/DEBUG ( 111): d28 0000000000000000 d29 0000000000000000
I/DEBUG ( 111): d30 0000000000000000 d31 0000000000000000
I/DEBUG ( 111): scr 20000010
I/DEBUG ( 111):
I/DEBUG ( 111): #00 pc 0000d6b0 /system/lib/libc.so (kill)
I/DEBUG ( 111): #01 pc 00019138 /system/lib/libc.so (raise)
I/DEBUG ( 111):
I/DEBUG ( 111): code around pc:
I/DEBUG ( 111): 40050690 e2601000 e0100001 116f0f10 12600020 ..`.......o. .`.
I/DEBUG ( 111): 400506a0 e12fff1e e92d50f0 e3a07025 ef000000 ../..P-.%p......
I/DEBUG ( 111): 400506b0 e8bd50f0 e1b00000 512fff1e ea00b0f8 .P......../Q....
I/DEBUG ( 111): 400506c0 e92d50f0 e3a070ee ef000000 e8bd50f0 .P-..p.......P..
I/DEBUG ( 111): 400506d0 e1b00000 512fff1e ea00b0f1 f5d0f000 ....../Q........
I/DEBUG ( 111):
I/DEBUG ( 111): code around lr:
I/DEBUG ( 111): 4005c118 0002a37a 461cb537 e9cd17dd f7f34500 z...7..F.....E..
I/DEBUG ( 111): 4005c128 bd3ee9c0 4604b510 e81cf7f3 f7f44621 ..>....F....!F..
I/DEBUG ( 111): 4005c138 bd10eab6 49034602 2300b510 f7f44802 .....F.I...#.H..
I/DEBUG ( 111): 4005c148 bd10e8b4 28121969 fee1dead 2400b513 ....i..(.......$
I/DEBUG ( 111): 4005c158 94019400 ef5af7f3 bf00bd1c 4c11b570 ......Z.....p..L
I/DEBUG ( 111):
I/DEBUG ( 111): stack:
I/DEBUG ( 111): 41b529a8 00000000
I/DEBUG ( 111): 41b529ac 00000000
I/DEBUG ( 111): 41b529b0 a7762288
I/DEBUG ( 111): 41b529b4 a7763f48
I/DEBUG ( 111): 41b529b8 00001000
I/DEBUG ( 111): 41b529bc 00000000
I/DEBUG ( 111): 41b529c0 a7763e88
I/DEBUG ( 111): 41b529c4 00000000
I/DEBUG ( 111): 41b529c8 00001000
I/DEBUG ( 111): 41b529cc 00000001
I guess we are dealing with some parser error in CameraParameters.cpp. I mean some value supplied to liboemcamera breaks it.
Would someone strace it?

[Q] Help I got a bootloop tried porting rom [logcat]

Hi,
I tried porting a rom for my GP Keon phone to it's base rom and got the following fatal error:
Code:
--------- beginning of /dev/log/main
--------- beginning of /dev/log/system
F/libc ( 118): Fatal signal 11 (SIGSEGV) at 0xdeadbaad (code=1)
Full logcat:
Code:
--------- beginning of /dev/log/main
I/DEBUG ( 112): debuggerd: Jan 14 2014 20:28:53
E/AKMD2 ( 124): restore calibration data failed.
--------- beginning of /dev/log/system
I/Vold ( 108): Vold 2.1 (the revenge) firing up
D/Vold ( 108): Volume sdcard state changing -1 (Initializing) -> 0 (No-Media)
D/Vold ( 108): Volume sdcard state changing 0 (No-Media) -> 2 (Pending)
E/DirectVolume( 108): Dv:partAdd: ignoring part_num = 4 (max: 3)
E/DirectVolume( 108): Invalid 'PARTN' value
E/DirectVolume( 108): Invalid 'PARTN' value
E/DirectVolume( 108): Invalid 'PARTN' value
E/DirectVolume( 108): Invalid 'PARTN' value
E/DirectVolume( 108): Invalid 'PARTN' value
E/DirectVolume( 108): Invalid 'PARTN' value
E/DirectVolume( 108): Invalid 'PARTN' value
E/DirectVolume( 108): Invalid 'PARTN' value
E/DirectVolume( 108): Invalid 'PARTN' value
E/DirectVolume( 108): Invalid 'PARTN' value
E/DirectVolume( 108): Invalid 'PARTN' value
E/DirectVolume( 108): Invalid 'PARTN' value
E/DirectVolume( 108): Invalid 'PARTN' value
E/DirectVolume( 108): Invalid 'PARTN' value
E/DirectVolume( 108): Invalid 'PARTN' value
E/DirectVolume( 108): Invalid 'PARTN' value
W/Vold ( 108): Duplicate state (2)
D/Vold ( 108): Volume sdcard state changing 2 (Pending) -> 1 (Idle-Unmounted)
D/QCRIL_RPC( 116): Enter qcril_cm_phonesvc_command_callback
D/QCRIL_RPC( 116): Exit qcril_cm_phonesvc_command_callback
D/QCRIL_RPC( 116): Enter qcril_sms_cmd_callback
D/QCRIL_RPC( 116): Exit qcril_sms_cmd_callback
D/QCRIL_RPC( 116): Enter qcril_sms_cfg_event_callback
D/QCRIL_RPC( 116): Exit qcril_sms_cfg_event_callback
D/QCRIL_RPC( 116): Enter qcril_sms_cmd_callback
D/QCRIL_RPC( 116): Exit qcril_sms_cmd_callback
D/QCRIL_RPC( 116): Enter qcril_sms_cfg_event_callback
D/QCRIL_RPC( 116): Exit qcril_sms_cfg_event_callback
E/AudioHardwareMSM76XXA( 120): failed to open AUTO_VOLUME_CONTROL /system/etc/AutoVolumeControl.txt: No such file or directory (2)
E/QualcommCamera( 120): Qint android::get_number_of_cameras(): E
I/QualcommCameraHardware( 120): getCameraInfo: IN
I/QualcommCameraHardware( 120): getCameraInfo: loading libqcamera at 0xb000ee20
V/QualcommCameraHardware( 120): Storing the current target type as 3
I/QualcommCameraHardware( 120): getCameraInfo: numOfCameras = 1
I/QualcommCameraHardware( 120): Camera sensor 0 info:
I/QualcommCameraHardware( 120): camera_id: 0
I/QualcommCameraHardware( 120): modes_supported: 5
I/QualcommCameraHardware( 120): position: 0
I/QualcommCameraHardware( 120): sensor_mount_angle: 90
V/QualcommCameraHardware( 120): getCameraInfo: dlclose(libqcamera)
I/QualcommCameraHardware( 120): getCameraInfo: OUT
W/AudioFlinger( 120): Thread AudioOut_1 cannot connect to the power manager service
W/AudioHardwareMSM76XXA( 120): rpc_snd_set_device(6, 1, 1)
E/ ( 120): Error Loading libmpqstobinder
E/ ( 120): Error: Cannot load library: load_library[1091]: Library 'libmpqstobinder.so' not found
E/GestureDeviceService( 120): Could not load gesture HAL module
D/CALCFPS ( 117): DEBUG_CALC_FPS: 0
D/CALCFPS ( 117): period: 10
D/CALCFPS ( 117): ignorethresh_us: 500000
D/CALCFPS ( 117): DEBUG_CALC_FPS: 0
D/CALCFPS ( 117): period: 10
D/CALCFPS ( 117): ignorethresh_us: 500000
D/CALCFPS ( 117): DEBUG_CALC_FPS: 0
D/CALCFPS ( 117): period: 10
D/CALCFPS ( 117): ignorethresh_us: 500000
D/QCRIL_RPC( 116): Enter qcril_cm_phonesvc_command_callback
D/QCRIL_RPC( 116): Exit qcril_cm_phonesvc_command_callback
D/QCRIL_RPC( 116): Enter qcril_cm_phonesvc_event_callback
D/QCRIL_RPC( 116): Exit qcril_cm_phonesvc_event_callback
D/QCRIL_RPC( 116): Enter qcril_cm_phonesvc_command_callback
D/QCRIL_RPC( 116): Exit qcril_cm_phonesvc_command_callback
D/QCRIL_RPC( 116): Enter qcril_cm_srvsys_command_callback
D/QCRIL_RPC( 116): Exit qcril_cm_srvsys_command_callback
D/QCRIL_RPC( 116): Enter qcril_cm_srvsys_event_callback
D/QCRIL_RPC( 116): Exit qcril_cm_srvsys_event_callback
D/QCRIL_RPC( 116): Enter qcril_cm_srvsys_event_callback
D/QCRIL_RPC( 116): Exit qcril_cm_srvsys_event_callback
D/QCRIL_RPC( 116): Enter qcril_cm_srvsys_event_callback
D/QCRIL_RPC( 116): Exit qcril_cm_srvsys_event_callback
D/QCRIL_RPC( 116): Enter qcril_cm_phonesvc_event_callback
D/QCRIL_RPC( 116): Exit qcril_cm_phonesvc_event_callback
D/QCRIL_RPC( 116): Enter qcril_cm_phonesvc_event_callback
D/QCRIL_RPC( 116): Exit qcril_cm_phonesvc_event_callback
E/JNIHelp ( 118): Native registration unable to find class 'android/util/jTestFramework', aborting
F/libc ( 118): Fatal signal 11 (SIGSEGV) at 0xdeadbaad (code=1)
I/DEBUG ( 112): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
I/DEBUG ( 112): Build fingerprint: 'qcom/full_keon/keon:4.0.4/IMM76I/eng.cval.20140115.163225:eng/test-keys'
I/DEBUG ( 112): pid: 118, tid: 118 >>> zygote <<<
I/DEBUG ( 112): signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr deadbaad
I/DEBUG ( 112): r0 deadbaad r1 00000001 r2 a0000000 r3 00000000
I/DEBUG ( 112): r4 00000000 r5 00000027 r6 003da620 r7 00000006
I/DEBUG ( 112): r8 4022d4a4 r9 4020af12 10 0000904c fp 00009062
I/DEBUG ( 112): ip 40144240 sp bee38a90 lr 400b4821 pc 400b0bb0 cpsr 60000030
I/DEBUG ( 112): d0 74726f6261202c27 d1 747365546a2f6c69
I/DEBUG ( 112): d2 0000000000000073 d3 0000000000000073
I/DEBUG ( 112): d4 0000d4e80000d4cd d5 0000d5040000d4e9
I/DEBUG ( 112): d6 0000d5200000d505 d7 0000d53c0000d521
I/DEBUG ( 112): d8 0000000000000000 d9 0000000000000000
I/DEBUG ( 112): d10 0000000000000000 d11 0000000000000000
I/DEBUG ( 112): d12 0000000000000000 d13 0000000000000000
I/DEBUG ( 112): d14 0000000000000000 d15 0000000000000000
I/DEBUG ( 112): d16 0000000040a5fad0 d17 0000000000000000
I/DEBUG ( 112): d18 0000d5900000d575 d19 0000d5ac0000d591
I/DEBUG ( 112): d20 0000d5c80000d5ad d21 0000d5e40000d5c9
I/DEBUG ( 112): d22 0000d6000000d5e5 d23 0000d61c0000d601
I/DEBUG ( 112): d24 0000000000000000 d25 0000000000000000
I/DEBUG ( 112): d26 0000000000000000 d27 0000000000000000
I/DEBUG ( 112): d28 0000000000000000 d29 0000000000000000
I/DEBUG ( 112): d30 0000000000000000 d31 0000000000000000
I/DEBUG ( 112): scr 60000010
I/DEBUG ( 112):
I/DEBUG ( 112): #00 pc 00017bb0 /system/lib/libc.so
I/DEBUG ( 112): #01 pc 0000c282 /system/lib/libnativehelper.so (jniRegisterNativeMethods)
I/DEBUG ( 112): #02 pc 00047414 /system/lib/libandroid_runtime.so (_ZN7android14AndroidRuntime21registerNativeMethodsEP7_JNIEnvPKcPK15JNINativeMethodi)
I/DEBUG ( 112): #03 pc 00066044 /system/lib/libandroid_runtime.so (_ZN7android36register_android_util_jTestFrameworkEP7_JNIEnv)
I/DEBUG ( 112): #04 pc 00047520 /system/lib/libandroid_runtime.so
I/DEBUG ( 112): #05 pc 00047552 /system/lib/libandroid_runtime.so (_ZN7android14AndroidRuntime8startRegEP7_JNIEnv)
I/DEBUG ( 112): #06 pc 00047632 /system/lib/libandroid_runtime.so (_ZN7android14AndroidRuntime5startEPKcS2_)
I/DEBUG ( 112): #07 pc 00008f0a /system/bin/app_process
I/DEBUG ( 112): #08 pc 00016a78 /system/lib/libc.so (__libc_init)
I/DEBUG ( 112):
I/DEBUG ( 112): code around pc:
I/DEBUG ( 112): 400b0b90 4623b15c 2c006824 e026d1fb b12368db \.#F$h.,..&..h#.
I/DEBUG ( 112): 400b0ba0 21014a17 6011447a 48124798 24002527 .J.!zD.`.G.H'%.$
I/DEBUG ( 112): 400b0bb0 f7f47005 2106ede8 ee84f7f5 460aa901 .p.....!.......F
I/DEBUG ( 112): 400b0bc0 f04f2006 94015380 94029303 ea40f7f5 . [email protected]
I/DEBUG ( 112): 400b0bd0 4622a905 f7f52002 f7f4ea4a 2106edd4 .."F. ..J......!
I/DEBUG ( 112):
I/DEBUG ( 112): code around lr:
I/DEBUG ( 112): 400b4800 41f0e92d 46804c0c 447c2600 68a56824 -..A.L.F.&|D$h.h
I/DEBUG ( 112): 400b4810 e0076867 300cf9b5 dd022b00 47c04628 gh.....0.+..(F.G
I/DEBUG ( 112): 400b4820 35544306 37fff117 6824d5f4 d1ee2c00 .CT5...7..$h.,..
I/DEBUG ( 112): 400b4830 e8bd4630 bf0081f0 00027cfe 41f0e92d 0F.......|..-..A
I/DEBUG ( 112): 400b4840 fb01b086 9004f602 461f4815 4615460c .........H.F.F.F
I/DEBUG ( 112):
I/DEBUG ( 112): memory map around addr deadbaad:
I/DEBUG ( 112): bee18000-bee39000 [stack]
I/DEBUG ( 112): (no map for address)
I/DEBUG ( 112): ffff0000-ffff1000 [vectors]
I/DEBUG ( 112):
I/DEBUG ( 112): stack:
I/DEBUG ( 112): bee38a50 40a5f8e0 /dev/ashmem/dalvik-heap (deleted)
I/DEBUG ( 112): bee38a54 00496388 [heap]
I/DEBUG ( 112): bee38a58 00494650 [heap]
I/DEBUG ( 112): bee38a5c 400e15a0
I/DEBUG ( 112): bee38a60 400dc7c0 /system/lib/libc.so
I/DEBUG ( 112): bee38a64 400dc758 /system/lib/libc.so
I/DEBUG ( 112): bee38a68 00000000
I/DEBUG ( 112): bee38a6c 400b4821 /system/lib/libc.so
I/DEBUG ( 112): bee38a70 00000000
I/DEBUG ( 112): bee38a74 bee38aa4 [stack]
I/DEBUG ( 112): bee38a78 003da620 [heap]
I/DEBUG ( 112): bee38a7c 00000006
I/DEBUG ( 112): bee38a80 4022d4a4 /system/lib/libandroid_runtime.so
I/DEBUG ( 112): bee38a84 400b398d /system/lib/libc.so
I/DEBUG ( 112): bee38a88 df0027ad
I/DEBUG ( 112): bee38a8c 00000000
I/DEBUG ( 112): #00 bee38a90 00000000
I/DEBUG ( 112): bee38a94 0b2f8794
I/DEBUG ( 112): bee38a98 00000000
I/DEBUG ( 112): bee38a9c 003da620 [heap]
I/DEBUG ( 112): bee38aa0 4021564e /system/lib/libandroid_runtime.so
I/DEBUG ( 112): bee38aa4 fffffbdf
I/DEBUG ( 112): bee38aa8 00000006
I/DEBUG ( 112): bee38aac 003da620 [heap]
I/DEBUG ( 112): bee38ab0 4021564e /system/lib/libandroid_runtime.so
I/DEBUG ( 112): bee38ab4 4011d285 /system/lib/libnativehelper.so
I/DEBUG ( 112): #01 bee38ab8 003da620 [heap]
I/DEBUG ( 112): bee38abc 00000000
I/DEBUG ( 112): bee38ac0 40226a54 /system/lib/libandroid_runtime.so
I/DEBUG ( 112): bee38ac4 40226c30 /system/lib/libandroid_runtime.so
I/DEBUG ( 112): bee38ac8 003da620 [heap]
I/DEBUG ( 112): bee38acc bee38bc4 [stack]
I/DEBUG ( 112): bee38ad0 0000907e /system/bin/app_process
I/DEBUG ( 112): bee38ad4 401c8417 /system/lib/libandroid_runtime.so
I'm new to this so I will be greatfull for any help. What should I do with that error?
Best Regards!
I replaced the framework.jar from the old rom to the port and then I solved that error but new one appeared:
Code:
--------- beginning of /dev/log/main
--------- beginning of /dev/log/system
E/AKMD2 ( 125): restore calibration data failed.
E/DirectVolume( 108): Dv:partAdd: ignoring part_num = 4 (max: 3)
E/DirectVolume( 108): Invalid 'PARTN' value
E/DirectVolume( 108): Invalid 'PARTN' value
E/DirectVolume( 108): Invalid 'PARTN' value
E/DirectVolume( 108): Invalid 'PARTN' value
E/DirectVolume( 108): Invalid 'PARTN' value
E/DirectVolume( 108): Invalid 'PARTN' value
E/DirectVolume( 108): Invalid 'PARTN' value
E/DirectVolume( 108): Invalid 'PARTN' value
E/DirectVolume( 108): Invalid 'PARTN' value
E/DirectVolume( 108): Invalid 'PARTN' value
E/DirectVolume( 108): Invalid 'PARTN' value
E/DirectVolume( 108): Invalid 'PARTN' value
E/DirectVolume( 108): Invalid 'PARTN' value
E/DirectVolume( 108): Invalid 'PARTN' value
E/DirectVolume( 108): Invalid 'PARTN' value
E/DirectVolume( 108): Invalid 'PARTN' value
E/QualcommCamera( 121): Qint android::get_number_of_cameras(): E
E/ ( 121): Error Loading libmpqstobinder
E/ ( 121): Error: Cannot load library: load_library[1091]: Library 'libmpqstobinder.so' not
found
E/GestureDeviceService( 121): Could not load gesture HAL module
E/MediaPlayer-JNI( 119): QCMediaPlayer could not be located....
E/PhonePolicy( 119): Could not preload class for phone policy: com.android.internal.policy.impl.Pho
neWindow$ContextMenuCallback
E/dalvikvm( 343): ERROR: couldn't find native method
E/dalvikvm( 343): Requested: Lcom/android/server/PowerManagerService;.nativeStartSurfaceFlingerAnim
ation:(I)V
E/JNIHelp ( 343): RegisterNatives failed for 'com/android/server/PowerManagerService', aborting
F/libc ( 343): Fatal signal 11 (SIGSEGV) at 0xdeadbaad (code=1)
What should I do now?
Thanks!

[Q] Help with Logcat

I'm helping a friend to port a rom and now we stuck on this error
can someone share some lights on this please??
Code:
--------- beginning of /dev/log/system
I/Vold ( 193): Vold 2.1 (the revenge) firing up
D/Vold ( 193): Volume usbdisk state changing -1 (Initializing) -> 0 (No-Media)
--------- beginning of /dev/log/main
D/QCamera3HWI( 1755): static int8_t qcamera::QCamera3HardwareInterface::lookupFwkName(const qcamera::QCamera3HardwareInterface::QCameraMap*, int, int): Cannot find matching framework type
D/QCamera3HWI( 1755): static int8_t qcamera::QCamera3HardwareInterface::lookupFwkName(const qcamera::QCamera3HardwareInterface::QCameraMap*, int, int): Cannot find matching framework type
D/QCamera3HWI( 1755): static int8_t qcamera::QCamera3HardwareInterface::lookupFwkName(const qcamera::QCamera3HardwareInterface::QCameraMap*, int, int): Cannot find matching framework type
D/QCamera3HWI( 1755): static int8_t qcamera::QCamera3HardwareInterface::lookupFwkName(const qcamera::QCamera3HardwareInterface::QCameraMap*, int, int): Cannot find matching framework type
D/QCamera3HWI( 1755): static int8_t qcamera::QCamera3HardwareInterface::lookupFwkName(const qcamera::QCamera3HardwareInterface::QCameraMap*, int, int): Cannot find matching framework type
D/QCamera3HWI( 1755): static int8_t qcamera::QCamera3HardwareInterface::lookupFwkName(const qcamera::QCamera3HardwareInterface::QCameraMap*, int, int): Cannot find matching framework type
D/mm-camera-intf( 1755): mm_camera_open: dev name = /dev/video2, cam_idx = 2
I/mm-camera-sensor( 214): module_sensor_start_session:577 session 2
I/mm-camera( 214): gyro_module_start_session: Enter
I/mm-camera( 214): gyro_module_start_session: Init DSPS
I/mm-camera( 214): gyro_module_start_session: Exit successful
I/mm-camera( 214): gyro_module_get_port: Exit successful
I/mm-camera( 214): cpp_module_start_session:352, info: starting session 2
I/mm-camera( 214): cpp_module_start_session:425, info: session 2 started.
I/mm-camera( 214): c2d_module_start_session:246, info: starting session 2
I/mm-camera( 214): c2d_module_start_session:306, info: session 2 started.
I/mm-camera-sensor( 214): module_module_set_session_data:2435 max delay 2 report dSelay 1
D/mm-camera( 214): module_faceproc_set_session_data:1826] Per frame control 2 1
D/mm-camera-intf( 1755): mm_camera_open: opened, break out while loop
I/mm-camera( 214): mct_pipeline_process_set:command=800000b
E/mm-camera( 214): mct_pipeline_get_stream: no children
E/mm-camera( 214): mct_pipeline_process_set:1370: Couldn't find stream
I/mm-camera-sensor( 214): module_sensor_stop_session:630 session 2
I/mm-camera( 214): stats_module_stop_session: list =0xb8da77f0, remove port =0xb8d9f8c8 name=stats_sink from module=0xb8d8d778, name=stats
I/mm-camera( 214): stats_module_stop_session: 1 port =0xb8d9f8c8 name=stats_sink
I/mm-camera( 214): stats_module_stop_session: 2 port =0xb8d9f8c8 name=stats_sink
I/mm-camera( 214): gyro_module_stop_session: Enter
I/mm-camera( 214): gyro_module_stop_session: Deinit DSPS
I/mm-camera( 214): gyro_module_stop_session: Exit successful
I/mm-camera( 214): stats_module_stop_session: 3 port =0xb8d9f8c8 name=stats_sink
I/mm-camera( 214): cpp_module_stop_session:453, info: stopping session 2 ...
I/mm-camera( 214): cpp_module_stop_session:495, info: session 2 stopped.
I/mm-camera( 214): c2d_module_stop_session:322, info: stopping session 2 ...
I/mm-camera( 214): c2d_module_stop_session:361, info: session 2 stopped.
D/QCamera3HWI( 1755): static int8_t qcamera::QCamera3HardwareInterface::lookupFwkName(const qcamera::QCamera3HardwareInterface::QCameraMap*, int, int): Cannot find matching framework type
D/QCamera3HWI( 1755): static int8_t qcamera::QCamera3HardwareInterface::lookupFwkName(const qcamera::QCamera3HardwareInterface::QCameraMap*, int, int): Cannot find matching framework type
D/QCamera3HWI( 1755): static int8_t qcamera::QCamera3HardwareInterface::lookupFwkName(const qcamera::QCamera3HardwareInterface::QCameraMap*, int, int): Cannot find matching framework type
D/QCamera3HWI( 1755): static int8_t qcamera::QCamera3HardwareInterface::lookupFwkName(const qcamera::QCamera3HardwareInterface::QCameraMap*, int, int): Cannot find matching framework type
D/QCamera3HWI( 1755): static int8_t qcamera::QCamera3HardwareInterface::lookupFwkName(const qcamera::QCamera3HardwareInterface::QCameraMap*, int, int): Cannot find matching framework type
D/QCamera3HWI( 1755): static int8_t qcamera::QCamera3HardwareInterface::lookupFwkName(const qcamera::QCamera3HardwareInterface::QCameraMap*, int, int): Cannot find matching framework type
D/QCamera3HWI( 1755): static int8_t qcamera::QCamera3HardwareInterface::lookupFwkName(const qcamera::QCamera3HardwareInterface::QCameraMap*, int, int): Cannot find matching framework type
D/QCamera3HWI( 1755): static int8_t qcamera::QCamera3HardwareInterface::lookupFwkName(const qcamera::QCamera3HardwareInterface::QCameraMap*, int, int): Cannot find matching framework type
I/AudioPolicyManagerBase( 1755): loadAudioPolicyConfig() loaded /system/etc/audio_policy.conf
D/audio_hw_primary( 1755): adev_open: enter
I/ServiceManager( 192): service 'media.audio_flinger' died
I/ServiceManager( 192): service 'media.player' died
I/ServiceManager( 192): service 'media.camera' died
I/Netd ( 1844): Netd 1.0 starting
W/InterfaceController( 1844): Warning (dlopen failed: library "/system/lib/libnetcmdiface.so" not found) while opening the net interface command library
I/mediaserver( 1846): ServiceManager: 0xb77e0460
I/AudioFlinger( 1846): Using default 3000 mSec as standby time.
I/CameraService( 1846): CameraService started (pid=1846)
I/CameraService( 1846): Loaded "QCamera Module" camera module
D/mm-camera-intf( 1846): mm_camera_open: dev name = /dev/video1, cam_idx = 1
I/mm-camera-sensor( 214): module_sensor_start_session:577 session 1
I/mm-camera( 214): gyro_module_start_session: Enter
I/mm-camera( 214): gyro_module_start_session: Init DSPS
I/mm-camera( 214): gyro_module_start_session: Exit successful
I/mm-camera( 214): gyro_module_get_port: Exit successful
I/mm-camera( 214): cpp_module_start_session:352, info: starting session 1
I/mm-camera( 214): cpp_module_start_session:425, info: session 1 started.
I/mm-camera( 214): c2d_module_start_session:246, info: starting session 1
I/mm-camera( 214): c2d_module_start_session:306, info: session 1 started.
I/mm-camera-sensor( 214): module_module_set_session_data:2435 max delay 2 report dSelay 1
D/mm-camera( 214): module_faceproc_set_session_data:1826] Per frame control 2 1
D/mm-camera-intf( 1846): mm_camera_open: opened, break out while loop
I/mm-camera( 214): mct_pipeline_process_set:command=800000b
E/mm-camera( 214): mct_pipeline_get_stream: no children
E/mm-camera( 214): mct_pipeline_process_set:1370: Couldn't find stream
I/mm-camera-sensor( 214): module_sensor_stop_session:630 session 1
D/AndroidRuntime( 1845):
D/AndroidRuntime( 1845): >>>>>> AndroidRuntime START com.android.internal.os.ZygoteInit <<<<<<
D/AndroidRuntime( 1845): CheckJNI is OFF
D/dalvikvm( 1845): Trying to load lib libjavacore.so 0x0
D/dalvikvm( 1845): Added shared lib libjavacore.so 0x0
D/dalvikvm( 1845): Trying to load lib libnativehelper.so 0x0
D/dalvikvm( 1845): Added shared lib libnativehelper.so 0x0
D/dalvikvm( 1845): No JNI_OnLoad found in libnativehelper.so 0x0, skipping init
E/dalvikvm( 1845): ERROR: couldn't find native method
E/dalvikvm( 1845): Requested: Landroid/content/res/AssetManager;.addOverlayPath:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)I
E/dalvikvm( 1845): JNI posting fatal error: RegisterNatives failed for 'android/content/res/AssetManager'; aborting...
I/dalvikvm( 1845): "main" prio=5 tid=1 NATIVE
I/dalvikvm( 1845): | group="main" sCount=0 dsCount=0 obj=0x41597cc0 self=0x414d1410
I/dalvikvm( 1845): | sysTid=1845 nice=0 sched=0/0 cgrp=default handle=1074164052
I/dalvikvm( 1845): | state=R schedstat=( 240528748 6300576 47 ) utm=16 stm=8 core=1
I/dalvikvm( 1845): #00 pc 0000132e /system/lib/libcorkscrew.so (unwind_backtrace_thread+29)
I/dalvikvm( 1845): #01 pc 0006064e /system/lib/libdvm.so (dvmDumpNativeStack(DebugOutputTarget const*, int)+33)
I/dalvikvm( 1845): #02 pc 0005463c /system/lib/libdvm.so (dvmDumpThreadEx(DebugOutputTarget const*, Thread*, bool)+395)
I/dalvikvm( 1845): #03 pc 000546aa /system/lib/libdvm.so (dvmDumpThread(Thread*, bool)+25)
I/dalvikvm( 1845): #04 pc 000490c0 /system/lib/libdvm.so
I/dalvikvm( 1845): #05 pc 00001fd2 /system/lib/libnativehelper.so (jniRegisterNativeMethods+81)
I/dalvikvm( 1845): #06 pc 0004d8b6 /system/lib/libandroid_runtime.so
I/dalvikvm( 1845): #07 pc 0004dba4 /system/lib/libandroid_runtime.so (android::AndroidRuntime::startReg(_JNIEnv*)+23)
I/dalvikvm( 1845): #08 pc 0004e5f4 /system/lib/libandroid_runtime.so (android::AndroidRuntime::start(char const*, char const*)+183)
I/dalvikvm( 1845): #09 pc 0000105a /system/bin/app_process
I/dalvikvm( 1845): #10 pc 0000e398 /system/lib/libc.so (__libc_init+47)
I/dalvikvm( 1845): at dalvik.system.NativeStart.main(Native Method)
I/dalvikvm( 1845): at dalvik.system.NativeStart.main(Native Method)
I/dalvikvm( 1845):
E/dalvikvm( 1845): VM aborting
F/libc ( 1845): Fatal signal 6 (SIGABRT) at 0x00000735 (code=-6), thread 1845 (zygote)
I/DEBUG ( 196): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
I/DEBUG ( 196): Build fingerprint: 'google/hammerhead/hammerhead:4.4.4/KTU84P/1227136:user/release-keys'
I/DEBUG ( 196): Revision: '11'
I/DEBUG ( 196): pid: 1845, tid: 1845, name: zygote >>> zygote <<<
I/DEBUG ( 196): signal 6 (SIGABRT), code -6 (SI_TKILL), fault addr --------
I/DEBUG ( 196): r0 00000000 r1 00000735 r2 00000006 r3 00000000
I/DEBUG ( 196): r4 00000006 r5 00000016 r6 00000735 r7 0000010c
I/DEBUG ( 196): r8 00000004 r9 bec36ba4 sl 00000000 fp bec36b83
I/DEBUG ( 196): ip 401f44b4 sp bec36628 lr 4008f035 pc 4009dfe0 cpsr 000f0010
I/DEBUG ( 196): d0 0000000000000000 d1 0000000000000000
I/DEBUG ( 196): d2 0000000000000000 d3 0000000000000000
I/DEBUG ( 196): d4 0000000000000000 d5 000000006e736c40
I/DEBUG ( 196): d6 3f0000004158f720 d7 000000000000007f
I/DEBUG ( 196): d8 0000000000000000 d9 0000000000000000
I/DEBUG ( 196): d10 0000000000000000 d11 0000000000000000
I/DEBUG ( 196): d12 0000000000000000 d13 0000000000000000
I/DEBUG ( 196): d14 0000000000000000 d15 0000000000000000
I/DEBUG ( 196): d16 2065766974614e28 d17 0a29646f6874654d
I/DEBUG ( 196): d18 65747379732f2020 d19 696c2f62696c2f6d
I/DEBUG ( 196): d20 64696f72646e6162 d21 656d69746e75725f
I/DEBUG ( 196): d22 646e6128206f732e d23 6e413a3a64696f72
I/DEBUG ( 196): d24 0000000000000000 d25 0000000000000000
I/DEBUG ( 196): d26 0000000000000000 d27 0000000000000000
I/DEBUG ( 196): d28 0000000000000000 d29 0000000000000000
I/DEBUG ( 196): d30 0000000000000000 d31 0000000000000000
I/DEBUG ( 196): scr 60000010
I/DEBUG ( 196):
I/DEBUG ( 196): backtrace:
I/DEBUG ( 196): #00 pc 00021fe0 /system/lib/libc.so (tgkill+12)
I/DEBUG ( 196): #01 pc 00013031 /system/lib/libc.so (pthread_kill+48)
I/DEBUG ( 196): #02 pc 00013245 /system/lib/libc.so (raise+10)
I/DEBUG ( 196): #03 pc 00011f7b /system/lib/libc.so
I/DEBUG ( 196): #04 pc 00021894 /system/lib/libc.so (abort+4)
I/DEBUG ( 196): #05 pc 00045cc7 /system/lib/libdvm.so (dvmAbort+78)
I/DEBUG ( 196): #06 pc 00001fd5 /system/lib/libnativehelper.so (jniRegisterNativeMethods+84)
I/DEBUG ( 196): #07 pc 0004d8b9 /system/lib/libandroid_runtime.so
I/DEBUG ( 196): #08 pc 0004dba5 /system/lib/libandroid_runtime.so (android::AndroidRuntime::startReg(_JNIEnv*)+24)
I/DEBUG ( 196): #09 pc 0004e5f5 /system/lib/libandroid_runtime.so (android::AndroidRuntime::start(char const*, char const*)+184)
I/DEBUG ( 196): #10 pc 0000105b /system/bin/app_process
I/DEBUG ( 196): #11 pc 0000e39b /system/lib/libc.so (__libc_init+50)
I/DEBUG ( 196): #12 pc 00000d7c /system/bin/app_process
I/DEBUG ( 196):
I/DEBUG ( 196): stack:
I/DEBUG ( 196): bec365e8 401e17cd /system/lib/libandroid_runtime.so
I/DEBUG ( 196): bec365ec 00000035
I/DEBUG ( 196): bec365f0 401f44b4 /system/lib/libandroid_runtime.so
I/DEBUG ( 196): bec365f4 00000004
I/DEBUG ( 196): bec365f8 bec36ba4 [stack]
I/DEBUG ( 196): bec365fc 00000000
I/DEBUG ( 196): bec36600 bec36b83 [stack]
I/DEBUG ( 196): bec36604 400a2501 /system/lib/libc.so (snprintf+80)
I/DEBUG ( 196): bec36608 36333138
I/DEBUG ( 196): bec3660c 30203020
I/DEBUG ( 196): bec36610 bec36684 [stack]
I/DEBUG ( 196): bec36614 00000000
I/DEBUG ( 196): bec36618 00000000
I/DEBUG ( 196): bec3661c 20302030
I/DEBUG ( 196): bec36620 00004000
I/DEBUG ( 196): bec36624 bec36692 [stack]
I/DEBUG ( 196): #00 bec36628 00000006
I/DEBUG ( 196): bec3662c 00000016
I/DEBUG ( 196): bec36630 00000735
I/DEBUG ( 196): bec36634 401f44b4 /system/lib/libandroid_runtime.so
I/DEBUG ( 196): bec36638 401f44b4 /system/lib/libandroid_runtime.so
I/DEBUG ( 196): bec3663c 4008f035 /system/lib/libc.so (pthread_kill+52)
I/DEBUG ( 196): #01 bec36640 00000006
I/DEBUG ( 196): bec36644 00000000
I/DEBUG ( 196): bec36648 00000035
I/DEBUG ( 196): bec3664c 4008f249 /system/lib/libc.so (raise+14)
I/DEBUG ( 196): #02 bec36650 bec3665c [stack]
I/DEBUG ( 196): bec36654 4008df7f /system/lib/libc.so
I/DEBUG ( 196):
I/DEBUG ( 196): memory near r9:
I/DEBUG ( 196): bec36b84 746f6779 622f0065 612f6e69 705f7070
I/DEBUG ( 196): bec36b94 65636f72 2d007373 67797a58 0065746f
I/DEBUG ( 196): bec36ba4 7379732f 2f6d6574 006e6962 797a2d2d
I/DEBUG ( 196): bec36bb4 65746f67 732d2d00 74726174 7379732d
I/DEBUG ( 196): bec36bc4 2d6d6574 76726573 50007265 3d485441
I/DEBUG ( 196): bec36bd4 6962732f 762f3a6e 6f646e65 69622f72
I/DEBUG ( 196): bec36be4 732f3a6e 65747379 62732f6d 2f3a6e69
I/DEBUG ( 196): bec36bf4 74737973 622f6d65 2f3a6e69 74737973
I/DEBUG ( 196): bec36c04 782f6d65 006e6962 4c5f444c 41524249
I/DEBUG ( 196): bec36c14 505f5952 3d485441 6e65762f 2f726f64
I/DEBUG ( 196): bec36c24 3a62696c 7379732f 2f6d6574 0062696c
I/DEBUG ( 196): bec36c34 52444e41 5f44494f 544f4f42 4f474f4c
I/DEBUG ( 196): bec36c44 4100313d 4f52444e 525f4449 3d544f4f
I/DEBUG ( 196): bec36c54 7379732f 006d6574 52444e41 5f44494f
I/DEBUG ( 196): bec36c64 45535341 2f3d5354 74737973 612f6d65
I/DEBUG ( 196): bec36c74 41007070 4f52444e 445f4449 3d415441
I/DEBUG ( 196):
I/DEBUG ( 196): memory near fp:
I/DEBUG ( 196): bec36b60 bec36b7f 00000000 00000000 ce000000
I/DEBUG ( 196): bec36b70 4935fbfb a3627a42 6cb16c8e 76cab2c1
I/DEBUG ( 196): bec36b80 7a006c37 746f6779 622f0065 612f6e69
I/DEBUG ( 196): bec36b90 705f7070 65636f72 2d007373 67797a58
I/DEBUG ( 196): bec36ba0 0065746f 7379732f 2f6d6574 006e6962
I/DEBUG ( 196): bec36bb0 797a2d2d 65746f67 732d2d00 74726174
I/DEBUG ( 196): bec36bc0 7379732d 2d6d6574 76726573 50007265
I/DEBUG ( 196): bec36bd0 3d485441 6962732f 762f3a6e 6f646e65
I/DEBUG ( 196): bec36be0 69622f72 732f3a6e 65747379 62732f6d
I/DEBUG ( 196): bec36bf0 2f3a6e69 74737973 622f6d65 2f3a6e69
I/DEBUG ( 196): bec36c00 74737973 782f6d65 006e6962 4c5f444c
I/DEBUG ( 196): bec36c10 41524249 505f5952 3d485441 6e65762f
I/DEBUG ( 196): bec36c20 2f726f64 3a62696c 7379732f 2f6d6574
I/DEBUG ( 196): bec36c30 0062696c 52444e41 5f44494f 544f4f42
I/DEBUG ( 196): bec36c40 4f474f4c 4100313d 4f52444e 525f4449
I/DEBUG ( 196): bec36c50 3d544f4f 7379732f 006d6574 52444e41
I/DEBUG ( 196):
I/DEBUG ( 196): memory near ip:
I/DEBUG ( 196): 401f4494 401d6831 401b20e9 401e1520 401e1485
I/DEBUG ( 196): 401f44a4 401b2145 401dcec4 401dad34 401b2081
I/DEBUG ( 196): 401f44b4 401e17f6 401db373 401b4f19 401e1800
I/DEBUG ( 196): 401f44c4 401e180c 401b4ec1 401e1844 401e1857
I/DEBUG ( 196): 401f44d4 401b4e49 401e186f 401e1884 401b4de1
I/DEBUG ( 196): 401f44e4 401e18bd 401e18c2 401b5019 401e18ea
I/DEBUG ( 196): 401f44f4 401d6b39 401b3a05 401e18f7 401d71ad
I/DEBUG ( 196): 401f4504 401b39d5 401e1905 401e190f 401b3925
I/DEBUG ( 196): 401f4514 401e1918 401e1922 401b38e1 401e1929
I/DEBUG ( 196): 401f4524 401ded38 401b38b5 401e1938 401ded38
I/DEBUG ( 196): 401f4534 401b3889 401e1950 401df0e7 401b4d8f
I/DEBUG ( 196): 401f4544 401e1963 401e1972 401b4c9f 401e19d0
I/DEBUG ( 196): 401f4554 401d70d3 401b4c87 401e19e4 401d88cf
I/DEBUG ( 196): 401f4564 401b4c41 401e19f7 401d88cf 401b4c01
I/DEBUG ( 196): 401f4574 401e1a12 401d71ad 401b4be5 401e1a23
I/DEBUG ( 196): 401f4584 401e1a2f 401b4b17 401e1a7c 401d6a6a
I/DEBUG ( 196):
I/DEBUG ( 196): memory near sp:
I/DEBUG ( 196): bec36608 36333138 30203020 bec36684 00000000
I/DEBUG ( 196): bec36618 00000000 20302030 00004000 bec36692
I/DEBUG ( 196): bec36628 00000006 00000016 00000735 401f44b4
I/DEBUG ( 196): bec36638 401f44b4 4008f035 00000006 00000000
I/DEBUG ( 196): bec36648 00000035 4008f249 bec3665c 4008df7f
I/DEBUG ( 196): bec36658 00000000 ffffffdf 400c62c4 400c622c
I/DEBUG ( 196): bec36668 00000000 40090b3f 415811f0 415811f0
I/DEBUG ( 196): bec36678 401e17cd 4009d898 00000000 41517ccb
I/DEBUG ( 196): bec36688 400d4324 6c756e28 0000296c 00000000
I/DEBUG ( 196): bec36698 00000000 00000000 00000000 00000000
I/DEBUG ( 196): bec366a8 00000000 00000000 00000000 00000000
I/DEBUG ( 196): bec366b8 00000000 00000000 00000000 00000000
I/DEBUG ( 196): bec366c8 00000000 00000000 00000000 00000000
I/DEBUG ( 196): bec366d8 00000000 00000000 00000000 00000000
I/DEBUG ( 196): bec366e8 00000000 00000000 00000000 00000000
I/DEBUG ( 196): bec366f8 00000000 00000000 00000000 00000000
I/DEBUG ( 196):
I/DEBUG ( 196): code around pc:
I/DEBUG ( 196): 4009dfc0 e8bd00f0 e3700a01 912fff1e e2600000
I/DEBUG ( 196): 4009dfd0 ea006e20 e92d50f0 e3a07f43 ef000000
I/DEBUG ( 196): 4009dfe0 e8bd50f0 e3700a01 912fff1e e2600000
I/DEBUG ( 196): 4009dff0 ea006e18 e92d50f0 e3a070ee ef000000
I/DEBUG ( 196): 4009e000 e8bd50f0 e3700a01 912fff1e e2600000
I/DEBUG ( 196): 4009e010 ea006e10 f200429a bf0080b9 f040f891
I/DEBUG ( 196): 4009e020 4001e92d f2c02a04 2a1080a5 8093f2c0
I/DEBUG ( 196): 4009e030 f2c02a20 2a408088 ea4fdb7f f1bc1c92
I/DEBUG ( 196): 4009e040 dd6c0f0a 0600e92d 0f40f1bc f500dd4a
I/DEBUG ( 196): 4009e050 f5016e80 ebae7920 ea4f0e09 ea4f5e4e
I/DEBUG ( 196): 4009e060 f50e5e5e ebbc7e20 dd3b1f9e f04fbfc4
I/DEBUG ( 196): 4009e070 ebd9090a dd35199e 0a0eeb01 0a3ff02a
I/DEBUG ( 196): 4009e080 1c9eebac bfd245e1 0c09ebac f04f46e1
I/DEBUG ( 196): 4009e090 f8910c00 f891f240 f921f280 f921028d
I/DEBUG ( 196): 4009e0a0 f8da428d f1b93000 f9000901 f900028d
I/DEBUG ( 196): 4009e0b0 f10a428d d1ee0a40 0f00f1bc f5bcd02b
I/DEBUG ( 196):
I/DEBUG ( 196): code around lr:
I/DEBUG ( 196): 4008f014 447b4b13 42b3e010 6a1ed10e 44784811
I/DEBUG ( 196): 4008f024 ec84f7fb ea0ef00d 46224631 efd0f00e
I/DEBUG ( 196): 4008f034 d00a3001 e00b2400 2b00681b 480ad1eb
I/DEBUG ( 196): 4008f044 44782403 ec72f7fb f001e002 6804fa23
I/DEBUG ( 196): 4008f054 fa20f001 46206005 bf00bd70 0003b38e
I/DEBUG ( 196): 4008f064 0003b382 0003b37a 0003b356 bf7ef7ff
I/DEBUG ( 196): 4008f074 4a3e4b3d e92d447b b08b43f0 4606589c
I/DEBUG ( 196): 4008f084 6823460d 930946a1 fa04f001 8000f8d0
I/DEBUG ( 196): 4008f094 d0482d00 f0104628 280ff96d d8444604
I/DEBUG ( 196): 4008f0a4 ffe4f7ff d1064286 4629200f e8d8f00d
I/DEBUG ( 196): 4008f0b4 d03c2800 482ee02e f7fb4478 482debb6
I/DEBUG ( 196): 4008f0c4 e0154478 d11342b0 482b6a06 f7fb4478
I/DEBUG ( 196): 4008f0d4 4a2aec2e 46332120 a801447a f9e6f013
I/DEBUG ( 196): 4008f0e4 a8012101 fd00f01a 46061c42 e011d104
I/DEBUG ( 196): 4008f0f4 28006800 e02cd1e6 46294630 f00d4622
I/DEBUG ( 196): 4008f104 1c43e914 d11e4607 f9c4f001 29046801

Categories

Resources