Anyone have any issues with the camera app? Ever since I installed the cracked Skype apk my camera just shows a black screen. It happens on both the back and front cameras and in video mode. The hardware works though as I can review a pic taken and the video is fine its just not displaying in the camera app.
I uninstalled Skype wiped cache and dalvik but no change. When Skype was installed video calls worked just fine.
Any ideas?
Thanks, Matt.
Sent from my ADR6350 using XDA App
Which Rom? Which camera app?
nimdae said:
Which Rom? Which camera app?
Click to expand...
Click to collapse
Stock RMK Rom and stock camera app. I did recompile the stock HTC kernel to add TUN support, but that's it. I'll get a logcat later today.
Sent from my ADR6350 using XDA App
Not sure what caused this, but here is the logcat...at least I know the hardware is good.
Any ideas? Perhaps a different kernel? Not sure why this wouldn't work as its the stock HTC code.
Code:
07-17 12:20:40.772: WARN/HTCCamera(3506): !!!! @@@@ broadcastStopVoiceRecording() - start
07-17 12:20:40.782: WARN/HTCCamera(3506): !!!! @@@@ broadcastStopVoiceRecording() - end
07-17 12:20:40.782: WARN/HTCCamera(3506): OnResume - reset UI, immediately set mMainLayout invisible
07-17 12:20:40.792: WARN/########## HtcSettingsReceiver ##########(3506): 2011-07-17 12:20:40 793(ms) onReceive-start
07-17 12:20:40.802: DEBUG/AK8975(1356): Compass Start
07-17 12:20:40.802: WARN/HTCCamera(3506): Block Capture UI - onResume(), and unblock after start preview
07-17 12:20:40.802: WARN/HTCCamera(3506): onResume() - mFocusingState = NO_FOCUSING
07-17 12:20:40.802: WARN/HTCCamera(3506): keyguard is not shown !!!!!
07-17 12:20:40.802: WARN/HTCCamera(3506): OnResume - set mWaitResetSettings to true
07-17 12:20:40.802: WARN/HTCCamera(3506): onResume() - end
07-17 12:20:40.822: WARN/HTCCamera(3506): $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ surfaceCreated [email protected]
07-17 12:20:40.822: WARN/HTCCamera(3506): $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ surfaceCreated $$$$$$$$$$$$$$$$$$$$$$$$$$$ start preview
07-17 12:20:40.822: WARN/CameraThread(3506): CameraHandler Message - START_PREVIEW start mode0
07-17 12:20:40.822: DEBUG/CameraService(1349): CameraService::connect E (pid 3506, id 0), max 2
07-17 12:20:40.822: INFO/CameraService(1349): cameraId:0
07-17 12:20:40.822: INFO/CameraService(1349): 2D mode only
07-17 12:20:40.822: INFO/QualcommCameraHardware(1349): openCameraHardware: call createInstance
07-17 12:20:40.822: DEBUG/QualcommCameraHardware(1349): createInstance: E
07-17 12:20:40.822: DEBUG/QualcommCameraHardware(1349): Storing the current target type as 2
07-17 12:20:40.822: DEBUG/QualcommCameraHardware(1349): constructor EX
07-17 12:20:40.822: DEBUG/QualcommCameraHardware(1349): startCamera E
07-17 12:20:40.822: DEBUG/QualcommCameraHardware(1349): loading liboemcamera at 0xb000e680
07-17 12:20:40.822: WARN/HTCCamera(3506): $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ surfaceChanged $$$$$$$$$$$$$$$$$$$$$$$$$$$ w=480 h=800
07-17 12:20:40.832: INFO/QualcommCameraHardware(1349): Set main cam
07-17 12:20:40.832: INFO/mm-camera(1349): set sensor selection :0
07-17 12:20:40.882: WARN/InputManagerService(1493): [unbindCurrentClientLocked] Disable input method client.
07-17 12:20:40.882: WARN/InputManagerService(1493): [startInputLocked] Enable input method client.
07-17 12:20:40.932: INFO/QualcommCameraHardware(1349): Open Device node : /dev/msm_camera/control1
07-17 12:20:40.932: INFO/mm-camera(1349): Open Device node : /dev/msm_camera/config1
07-17 12:20:40.952: INFO/mm-camera(1349): [AWB Calibration] from kernel: fuse_id: 0x0, 0x0, 0x4, 0xd776e
...
...
MSM_CAM_IOCTL_CONFIG_VFE failed...
...
...
07-17 12:20:41.632: ERROR/OverlayLIB(1349): overlay play failed.
07-17 12:20:41.632: ERROR/Overlay(1349): Queuebuffer failed for framebuffer 0
Looks like it was a kernel problem. I restored the original kernel and now the camera works just fine.
I am having problems with my camera as well. All I get is a black screen. How did you restore the kernel? I may want to give that a shot.
Thanks.
Sent from my ADR6350 using XDA App
mcfhsieh said:
I am having problems with my camera as well. All I get is a black screen. How did you restore the kernel? I may want to give that a shot.
Thanks.
Sent from my ADR6350 using XDA App
Click to expand...
Click to collapse
with a little research anything is achieveable..
Dev section
http://forum.xda-developers.com/showthread.php?t=1068236
or reflash the ROM
How were you able to take pics and vids if you were getting the black screen? Did you access the camera using another app?
Sent from my ADR6350 using XDA App
mcfhsieh said:
I am having problems with my camera as well. All I get is a black screen. How did you restore the kernel? I may want to give that a shot.
Thanks.
Sent from my ADR6350 using XDA App
Click to expand...
Click to collapse
Before I flashed my new kernel I made a backup of the stock kernel - this should ALWAYS be done when doing kernel development for an occasion just like this!
I backed up my kernel in recovery by doing
Code:
cat /dev/block/mmcblk0p22 > /sdcard/stock_kernel.img
In fact you need to do this in order to extract/repack the ramdisk image if you ever wanted to modify the init.rc, etc.
Restoring the stock image can be done in the bootloader with fastboot on your host machine:
Code:
fastboot flash boot /path/to/stock_kernel.img
In addition to backing up the stock kernel image from the boot partition I always backup the stock kernel modules in /system/lib/modules in case something goes wrong - usually its getting the wifi module to load.
--Matt.
mcfhsieh said:
How were you able to take pics and vids if you were getting the black screen? Did you access the camera using another app?
Sent from my ADR6350 using XDA App
Click to expand...
Click to collapse
The camera hardware still works, it seems there is just a problem with the overlay buffer getting displayed on the screen. In reality the image is still captured and stored correctly.
Thanks for the reply. I can't even see the camera button or anything. The only thing that comes up is the white camera logo when I first open the camera app. It's probably a hardware issue for me.
Sent from my ADR6350 using XDA App
Run a logcat to see what's up.
Sent from my ADR6350 using XDA App
This is what I got:
W/HTCCamera( 2700): onKeyDown - UI Block !!!
W/HTCCamera( 2700): onKeyDown - UI Block !!!
W/HTCCamera( 2700): onKeyDown - UI Block !!!
W/HTCCamera( 2700): onKeyDown - UI Block !!!
W/HTCCamera( 2700): onKeyDown - UI Block !!!
W/HTCCamera( 2700): onKeyDown - UI Block !!!
W/HTCCamera( 2700): onKeyDown - UI Block !!!
W/HTCCamera( 2700): onKeyDown - UI Block !!!
This is the first time running logcat. Dont know if I did it right.
Thanks,
There's got to be more...take a look at my logcat a few posts up...look for that kind of error.
You running a custom kernel?
Sent from my ADR6350 using XDA App
Here is some more logcat.
W/HTCCamera( 2602): onResume() - mFocusingState = NO_FOCUSING
W/HTCCamera( 2602): keyguard is not shown !!!!!
W/HTCCamera( 2602): OnResume - set mWaitResetSettings to true
W/HTCCamera( 2602): onResume() - end
W/HTCCamera( 2602): $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ surfaceCreated $$$$$$$$$$$$$$$
[email protected]
W/HTCCamera( 2602): $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ surfaceCreated $$$$$$$$$$$$$$$
$$$$$$$$$$$$ start preview
W/CameraThread( 2602): CameraHandler Message - START_PREVIEW start mode0
W/HTCCamera( 2602): $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ surfaceChanged $$$$$$$$$$$$$$$
$$$$$$$$$$$$ w=480 h=800
D/CameraService( 1343): CameraService::connect E (pid 2602, id 0), max 2
I/ActivityManager( 1461): Displayed com.android.camera/.CameraEntry: +321ms
W/InputManagerService( 1461): [unbindCurrentClientLocked] Disable input method c
lient.
W/InputManagerService( 1461): [startInputLocked] Enable input method client.
W/KeyboardStateImpl( 1569): EditorInfo provided is null or not valid, defaulting
to dumb mode!
D/InputManagerService( 1461): Starting input on non-focused client com.android.i
[email protected] (uid=9999 pid=1599)
D/PowerManagerService( 1461): New lightsensor value:225, lcdValue:116
I/ScreenBrightnessWidget( 1599): GetCurrentSetting: nRet = 2
D/SurfaceFlinger( 1461): layer=0x83b168 is not in the purgatory list
D/AutoSetting( 1651): service - mRequestRunnable: screen on delay 10s, request N
LP now
D/AutoSetting( 1651): service - mHandler: request location update
V/LocationManagerService( 1461): requestLocationUpdates
V/LocationManagerService( 1461): requestLocationUpdatesLocked: updateProvidersLo
cked
D/LocationManagerService( 1461): [updateProvidersLocked]
D/skia ( 1671): purging 150K from font cache [17 entries]
D/dalvikvm( 1671): GC_EXPLICIT freed 196K, 47% free 3109K/5767K, external 0K/512
K, paused 70ms
D/PowerManagerService( 1461): New lightsensor value:160, lcdValue:83
D/PowerManagerService( 1461): lightSensorChangedLocked, buttonValue >= 0, mPower
State = 3
D/PowerManagerService( 1461): setPenMenuButtonLed: 2
V/DeviceStorageMonitorService( 1461): freeMemory=712622080
D/DeviceStorageMonitorService( 1461): OoO SMS Memory available. SMS_AVAILABLE_TH
RESHOLD == 524288
I/DeviceStorageMonitorService( 1461): Posting Message again
D/StatusBarPolicy( 1548): iconIndex=1
V/StatusBarPolicy( 1548): cdmaLevel:2;max:4
D/StatusBarPolicy( 1548): iconLevel:2
D/skia ( 1599): purging 218K from font cache [27 entries]
D/dalvikvm( 1599): GC_EXPLICIT freed 236K, 45% free 4336K/7879K, external 17026K
/19074K, paused 73ms
D/dalvikvm( 1761): GC_EXPLICIT freed 134K, 60% free 3482K/8647K, external 0K/0K,
paused 76ms
W/HTCCamera( 2602): Unknown orientation !!!
D/PowerManagerService( 1461): New lightsensor value:225, lcdValue:116
D/StatusBarPolicy( 1548): iconIndex=1
V/StatusBarPolicy( 1548): cdmaLevel:2;max:4
D/StatusBarPolicy( 1548): iconLevel:2
V/HtcAppUsageStats( 1461): handleMessage msg=1
W/HTCCamera( 2602): onPause() - start
I/ActivityManager( 1461): Starting activity: Intent { act=android.intent.action.
MAIN cat=[android.intent.category.HOME] flg=0x10200000 cmp=com.htc.launcher/.Lau
ncher } from pid 1461
W/HTCCamera( 2602): onPause() - mIsUIReady = false
W/HTCCamera( 2602): $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ surfaceDestroyed $$$$$$$$$$$$$
$$$$$$$$$$$$$$
V/HtcAppUsageStats( 1461): (launch app, package): (HTC Sense, com.htc.launcher)
W/########## HtcSettingsReceiver ##########( 2602): 2011-07-23 11:28:38 183(ms)
onReceive-start
W/HTCCamera( 2602): onPause() - mFocusingState = NO_FOCUSING
W/HTCCamera( 2602): OnPause - set mWaitResetSettings to false
W/HTCCamera( 2602): releaseFaceDetection()
W/HTCCamera( 2602): onPause mIdle is false
W/HTCCamera( 2602): OnPause - Freeze UI !!!
D/SensorService( 1461): disable: get sensor name = BMA150 3-axis Accelerometer
D/Sensors ( 1461): Enable akm: en = 0
D/SensorService( 1461): pid=2602, uid=10103
W/HTCCamera( 2602): doOnPause() - start
W/HTCCamera( 2602): OnPause - hide UI, set mMainLayout invisible
W/HTCCamera( 2602): doOnPause() - end
W/HTCCamera( 2602): onPause() - end
I/CarouselTimeLog( 1599): onStart() finish: 1311434918234
D/CarouselDummyActivity( 1599): CarouselDummyActivity.onResume: tab_allapps
D/Background traffic light( 1599): traffic light: RED, mBackgroundTrafficLight =
true
D/William ( 1599): - refreshUsageStatCache -
W/InputManagerService( 1461): [unbindCurrentClientLocked] Disable input method c
lient.
W/InputManagerService( 1461): [startInputLocked] Enable input method client.
W/KeyboardStateImpl( 1569): EditorInfo provided is null or not valid, defaulting
to dumb mode!
W/HTCCamera( 2602): onStop() - start
W/HTCCamera( 2602): onStop() - end
D/AK8975 ( 1350): Compass CLOSE
D/BatteryService( 1461): SendIntentforPowersaver
D/WifiService( 1461): [smart wifi] mSmartWiFiStatus: 0 mBatteryLevel: 42 mWifiCo
nnected: true
D/WifiService( 1461): [smart wifi] ACTION_BATTERY_CHANGED pluggedType: 2
D/DATA ( 1575): tryEnableSuperPowerSaving: false, isPowerSavingOn: false, isM
obileDataOn: true, isScreenOn: true, mIsCharging: true
D/HtcCdmaPhoneApp( 1575): level 42 scale 100
I/Fumo ( 1911): mBatteryLevel:42
D/dalvikvm( 1911): GC_CONCURRENT freed 268K, 49% free 2876K/5575K, external 0K/0
K, paused 2ms+2ms
D/DEBUG ( 1599): updateCellLayoutCache(3.5555556, 3.5607476)
D/PowerManagerService( 1461): New lightsensor value:160, lcdValue:83
D/PowerManagerService( 1461): lightSensorChangedLocked, buttonValue >= 0, mPower
State = 3
D/PowerManagerService( 1461): setPenMenuButtonLed: 2
D/Background traffic light( 1599): traffic light: RED, mBackgroundTrafficLight =
false
I/ScreenBrightnessWidget( 1599): GetCurrentSetting: nRet = 0
D/DEBUG ( 1599): updateCellLayoutCache(3.5555556, 3.5607476)
V/HtcAppUsageStats( 1461): handleMessage msg=1
V/HtcAppUsageStats( 1461): (launch app, package): (Camera, com.android.camera)
I/ActivityManager( 1461): Starting activity: Intent { act=android.intent.action.
MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.android.camer
a/.CameraEntry bnds=[0,234][117,352] } from pid 1599
D/Background traffic light( 1599): traffic light: GREEN, mBackgroundTrafficLight
= false
W/HTCCamera( 2602): onNewIntent: com.android.camera.CameraEntry
W/HTCCamera( 2602): need to do create, not to initate mode onNewIntent!!
W/HTCCamera( 2602): onRestart() - start
W/HTCCamera( 2602): onRestart() - end
W/HTCCamera( 2602): onStart() - start
W/HTCCamera( 2602): onStart() - end
W/HTCCamera( 2602): onResume() - start
W/HTCCamera( 2602): !!!! @@@@ broadcastStopVoiceRecording() - start
W/HTCCamera( 2602): !!!! @@@@ broadcastStopVoiceRecording() - end
D/SensorService( 1461): enable: get sensor name = BMA150 3-axis Accelerometer
D/Sensors ( 1461): Enable akm: en = 1
D/SensorService( 1461): pid=2602, uid=10103
W/HTCCamera( 2602): OnResume - reset UI, immediately set mMainLayout invisible
W/########## HtcSettingsReceiver ##########( 2602): 2011-07-23 11:28:45 532(ms)
onReceive-start
W/HTCCamera( 2602): Block Capture UI - onResume(), and unblock after start previ
ew
W/HTCCamera( 2602): onResume() - mFocusingState = NO_FOCUSING
W/HTCCamera( 2602): keyguard is not shown !!!!!
W/HTCCamera( 2602): OnResume - set mWaitResetSettings to true
D/AK8975 ( 1350): Compass Start
W/HTCCamera( 2602): onResume() - end
W/HTCCamera( 2602): $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ surfaceCreated $$$$$$$$$$$$$$$
[email protected]
W/HTCCamera( 2602): $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ surfaceCreated $$$$$$$$$$$$$$$
$$$$$$$$$$$$ start preview
W/HTCCamera( 2602): $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ surfaceChanged $$$$$$$$$$$$$$$
$$$$$$$$$$$$ w=480 h=800
W/InputManagerService( 1461): [unbindCurrentClientLocked] Disable input method c
lient.
W/KeyboardStateImpl( 1569): EditorInfo provided is null or not valid, defaulting
to dumb mode!
W/InputManagerService( 1461): [startInputLocked] Enable input method client.
W/dalvikvm( 1599): disableGcForExternalAlloc: false
D/InputManagerService( 1461): Starting input on non-focused client com.android.i
[email protected] (uid=9999 pid=1599)
I/ScreenBrightnessWidget( 1599): GetCurrentSetting: nRet = 2
D/AppWidgetHostView( 1599): updateAppWidget mInfo = AppWidgetProviderInfo(provid
er=ComponentInfo{com.nullsoft.winamp/com.nullsoft.winamp.widget.PlaybackAppWidge
tProvider})
D/skia ( 1599): purging 172K from font cache [21 entries]
D/dalvikvm( 1599): GC_EXPLICIT freed 239K, 45% free 4335K/7879K, external 16986K
/19034K, paused 76ms
V/HtcAppUsageStats( 1461): handleMessage msg=1
W/HTCCamera( 2602): onPause() - start
W/HTCCamera( 2602): onPause() - mIsUIReady = false
W/HTCCamera( 2602): $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ surfaceDestroyed $$$$$$$$$$$$$
$$$$$$$$$$$$$$
I/ActivityManager( 1461): Starting activity: Intent { act=android.intent.action.
MAIN cat=[android.intent.category.HOME] flg=0x10200000 cmp=com.htc.launcher/.Lau
ncher } from pid 1461
V/HtcAppUsageStats( 1461): (launch app, package): (HTC Sense, com.htc.launcher)
W/########## HtcSettingsReceiver ##########( 2602): 2011-07-23 11:28:58 200(ms)
onReceive-start
W/HTCCamera( 2602): onPause() - mFocusingState = NO_FOCUSING
W/HTCCamera( 2602): OnPause - set mWaitResetSettings to false
W/HTCCamera( 2602): releaseFaceDetection()
W/HTCCamera( 2602): onPause mIdle is false
W/HTCCamera( 2602): OnPause - Freeze UI !!!
D/SensorService( 1461): disable: get sensor name = BMA150 3-axis Accelerometer
D/Sensors ( 1461): Enable akm: en = 0
D/SensorService( 1461): pid=2602, uid=10103
W/HTCCamera( 2602): doOnPause() - start
W/HTCCamera( 2602): OnPause - hide UI, set mMainLayout invisible
W/HTCCamera( 2602): doOnPause() - end
W/HTCCamera( 2602): onPause() - end
I/CarouselTimeLog( 1599): onStart() finish: 1311434938265
D/CarouselDummyActivity( 1599): CarouselDummyActivity.onResume: tab_allapps
D/Background traffic light( 1599): traffic light: RED, mBackgroundTrafficLight =
true
D/William ( 1599): - refreshUsageStatCache -
W/InputManagerService( 1461): [unbindCurrentClientLocked] Disable input method c
lient.
W/KeyboardStateImpl( 1569): EditorInfo provided is null or not valid, defaulting
to dumb mode!
W/InputManagerService( 1461): [startInputLocked] Enable input method client.
W/HTCCamera( 2602): onStop() - start
W/HTCCamera( 2602): onStop() - end
D/AK8975 ( 1350): Compass CLOSE
D/DEBUG ( 1599): updateCellLayoutCache(3.5555556, 3.5607476)
D/PowerManagerService( 1461): New lightsensor value:225, lcdValue:116
D/Background traffic light( 1599): traffic light: GREEN, mBackgroundTrafficLight
= false
D/skia ( 2602): purging 6K from font cache [1 entries]
D/dalvikvm( 2602): GC_EXPLICIT freed 154K, 48% free 2857K/5447K, external 0K/512
K, paused 78ms
D/AutoSetting( 1651): service - mHandler: cancel location update
D/AutoSetting( 1651): service - changes count: 0
D/AutoSetting( 1651): service - notifyErrorMessage() send out error:2
D/AutoSetting( 1651): service - no change received, request a single u
pdate
V/LocationManagerService( 1461): requestLocationUpdates
V/LocationManagerService( 1461): requestLocationUpdatesLocked: updateProvidersLo
cked
D/LocationManagerService( 1461): [updateProvidersLocked]
V/DeviceStorageMonitorService( 1461): freeMemory=712622080
D/DeviceStorageMonitorService( 1461): OoO SMS Memory available. SMS_AVAILABLE_TH
RESHOLD == 524288
I/DeviceStorageMonitorService( 1461): Posting Message again
D/StatusBarPolicy( 1548): iconIndex=1
V/StatusBarPolicy( 1548): cdmaLevel:3;max:4
D/StatusBarPolicy( 1548): iconLevel:3
D/DEBUG ( 1599): updateCellLayoutCache(3.5555556, 3.5607476)
D/StatusBarPolicy( 1548): iconIndex=1
V/StatusBarPolicy( 1548): cdmaLevel:3;max:4
D/StatusBarPolicy( 1548): iconLevel:3
D/StatusBarPolicy( 1548): iconIndex=1
V/StatusBarPolicy( 1548): cdmaLevel:3;max:4
D/StatusBarPolicy( 1548): iconLevel:3
V/DeviceStorageMonitorService( 1461): freeMemory=712622080
D/DeviceStorageMonitorService( 1461): OoO SMS Memory available. SMS_AVAILABLE_TH
RESHOLD == 524288
I/DeviceStorageMonitorService( 1461): Posting Message again
D/StatusBarPolicy( 1548): iconIndex=1
V/StatusBarPolicy( 1548): cdmaLevel:2;max:4
D/StatusBarPolicy( 1548): iconLevel:2
D/dalvikvm( 1548): GC_CONCURRENT freed 336K, 47% free 3314K/6151K, external 2540
K/2753K, paused 6ms+3ms
D/ReaderManager( 2030): construct 0
D/ReaderManager( 2030): [ATS][com.htc.googlereader][bind_engine] start
D/ReaderManager( 2030): context package com.htc.googlereader
D/ReaderManager( 2030): bindResult=true
D/BackgroundService( 2030): onStartCommand()
D/BackgroundService( 2030): ClearImageThread start!
D/ReaderService( 2030): onCreate()
D/ReaderService( 2030): [ATS][com.htc.googlereader][start_engine]
D/ReaderService( 2030): onBind()
D/ReaderManager( 2030): onServiceConnected
D/ReaderManager( 2030): [ATS][com.htc.googlereader][bind_engine] connected
D/ReaderService( 2030): registerCallback
D/ReaderService( 2030): getRefreshTaskIDList
D/ReaderManager( 2030): flushPendingTask()
D/BackgroundService( 2030): clear image under path = /mnt/sdcard/.data/HtcGreade
r
D/BackgroundService( 2030): total image number = 0
D/BackgroundService( 2030): clear image under path = /mnt/sdcard/.data/HtcGreade
r/feedicon
D/BackgroundService( 2030): total image number = 0
D/BackgroundService( 2030): ClearImageThread stop!
D/BackgroundService( 2030): stopBackgroundTask taskType = 1
D/BackgroundService( 2030): onDestroy()
D/ReaderManager( 2030): release 1
D/ReaderService( 2030): unregisterCallback
D/ReaderService( 2030): onDestroy()
D/dalvikvm( 2030): GC_EXPLICIT freed 114K, 49% free 2789K/5379K, external 0K/0K,
paused 69ms
V/LocationManagerService( 1461): requestLocationUpdatesLocked: updateProvidersLo
cked
D/LocationManagerService( 1461): [updateProvidersLocked]
D/BatteryService( 1461): SendIntentforPowersaver
D/WifiService( 1461): [smart wifi] mSmartWiFiStatus: 0 mBatteryLevel: 43 mWifiCo
nnected: true
D/WifiService( 1461): [smart wifi] ACTION_BATTERY_CHANGED pluggedType: 2
D/DATA ( 1575): tryEnableSuperPowerSaving: false, isPowerSavingOn: false, isM
obileDataOn: true, isScreenOn: true, mIsCharging: true
D/HtcCdmaPhoneApp( 1575): level 43 scale 100
I/Fumo ( 1911): mBatteryLevel:43
D/dalvikvm( 2432): GC_EXPLICIT freed 22K, 48% free 2967K/5639K, external 0K/0K,
paused 58ms
D/dalvikvm( 2490): GC_EXPLICIT freed 100K, 47% free 2896K/5447K, external 0K/0K,
paused 69ms
D/DEBUG ( 1599): updateCellLayoutCache(3.5555556, 3.5607476)
D/StatusBarPolicy( 1548): iconIndex=1
V/StatusBarPolicy( 1548): cdmaLevel:3;max:4
D/StatusBarPolicy( 1548): iconLevel:3
V/DeviceStorageMonitorService( 1461): freeMemory=712622080
D/DeviceStorageMonitorService( 1461): OoO SMS Memory available. SMS_AVAILABLE_TH
RESHOLD == 524288
I/DeviceStorageMonitorService( 1461): Posting Message again
This problem was occuring before a flashed Gingersense. I am not running any custom kernels.
Related
hi there.. my problem is that when i install certain roms and reboot them after the first install my screen is stuck at the white htc screen. the roms that i am trying to flash are ultimate droid and oxygen rc3. i wiped all the things that needed to be wiped from both clockwork and amon-ra
here are some things i noticed:
i am NOT s-off
everytime i open recovery i get a "E:Can't open /cache/recovery/command" when i press vol-up + power but i cal still flash with the update.zip
below is my logcat sorry if it is too long but it keeps repeating when i run my logcat
Code:
D/AndroidRuntime( 185):
D/AndroidRuntime( 185): >>>>>> Booting Oxygen by AdamG <<<<<<
D/AndroidRuntime( 185):
D/AndroidRuntime( 185): >>>>>> AndroidRuntime START com.android.internal.os.Zyg
oteInit <<<<<<
D/AndroidRuntime( 185): CheckJNI is OFF
D/dalvikvm( 185): creating instr width table
I/SamplingProfilerIntegration( 185): Profiler is disabled.
I/Zygote ( 185): Preloading classes...
E/Zygote ( 185): setreuid() failed. errno: 30
D/dalvikvm( 185): GC_EXPLICIT freed 47K, 78% free 235K/1024K, external 0K/0K, p
aused 2ms
D/dalvikvm( 185): GC_EXPLICIT freed 1K, 73% free 285K/1024K, external 0K/0K, pa
used 2ms
D/dalvikvm( 185): GC_EXPLICIT freed 22K, 69% free 319K/1024K, external 0K/0K, p
aused 2ms
I/bluetooth_ScoSocket.cpp( 185): Entry name = MY-CAR ScoTypes = 0x7f
I/bluetooth_ScoSocket.cpp( 185): Entry name = Motorola HF850 ScoTypes = 0x7
D/dalvikvm( 185): GC_EXPLICIT freed 17K, 66% free 357K/1024K, external 0K/0K, p
aused 2ms
D/dalvikvm( 185): GC_EXPLICIT freed 25K, 63% free 386K/1024K, external 0K/0K, p
aused 2ms
D/dalvikvm( 185): GC_EXPLICIT freed 20K, 57% free 442K/1024K, external 0K/0K, p
aused 3ms
W/dalvikvm( 185): Exception Ljava/lang/ArithmeticException; thrown while initia
lizing Ljava/util/PropertyPermission;
W/dalvikvm( 185): Exception Ljava/lang/ExceptionInInitializerError; thrown whil
e initializing Ljava/util/Locale;
W/dalvikvm( 185): Exception Ljava/lang/ExceptionInInitializerError; thrown whil
e initializing Landroid/media/ExifInterface;
E/Zygote ( 185): Error preloading android.media.ExifInterface.
E/Zygote ( 185): java.lang.ExceptionInInitializerError
E/Zygote ( 185): at java.lang.Class.classForName(Native Method)
E/Zygote ( 185): at java.lang.Class.forName(Class.java:234)
E/Zygote ( 185): at java.lang.Class.forName(Class.java:181)
E/Zygote ( 185): at com.android.internal.os.ZygoteInit.preloadClasses( Zyg
oteInit.java:297)
E/Zygote ( 185): at com.android.internal.os.ZygoteInit.main(ZygoteInit .ja
va:564)
E/Zygote ( 185): at dalvik.system.NativeStart.main(Native Method)
E/Zygote ( 185): Caused by: java.lang.ExceptionInInitializerError
E/Zygote ( 185): at java.text.SimpleDateFormat.<init>(SimpleDateFormat .ja
va:252)
E/Zygote ( 185): at android.media.ExifInterface.<clinit>(ExifInterface .ja
va:96)
E/Zygote ( 185): ... 6 more
E/Zygote ( 185): Caused by: java.lang.ExceptionInInitializerError
E/Zygote ( 185): at java.util.Locale.<clinit>(Locale.java:214)
E/Zygote ( 185): ... 8 more
E/Zygote ( 185): Caused by: java.lang.ArithmeticException: divide by zero
E/Zygote ( 185): at java.util.PropertyPermission.<clinit>(PropertyPerm iss
ion.java)
E/Zygote ( 185): ... 9 more
E/Zygote ( 185): setreuid() failed. errno: 30
D/AndroidRuntime( 185): Shutting down VM
W/dalvikvm( 185): threadid=1: thread exiting with uncaught exception (group=0x4
0015560)
D/skia ( 185): purging 6K from font cache [1 entries]
I/ServiceManager( 91): service 'media.audio_flinger' died
I/ServiceManager( 91): service 'media.player' died
I/ServiceManager( 91): service 'media.camera' died
I/ServiceManager( 91): service 'media.audio_policy' died
I/Netd ( 187): Netd 1.0 starting
I/ ( 186): ServiceManager: 0xad50
E/AudioHardwareQSD( 186): Cannot open /dev/audience_a1026 -1
I/HTC Acoustic( 186): libhtc_acoustic.so version 2.0.1.5
E/HTC Acoustic( 186): Fail to open /system/etc/AdieHWCodecSetting.csv -1.
E/HTC Acoustic( 186): read ADIE para from file failed -1
E/HTC Acoustic( 186): ioctl ACOUSTIC_UPDATE_ADIE failed -1
I/HTC Acoustic( 186): open /system/etc/AudioBTID.csv success.
I/HTC Acoustic( 186): BT ID table version: PASSION_HTC_20091105
E/HTC Acoustic( 186): Fail to open /system/etc/TPA2018.csv -1.
D/AudioHardwareQSD( 186): speaker amplifier tpa2018 is not supported
D/AudioHardwareInterface( 186): setMode(NORMAL)
I/AudioHardwareQSD( 186): Set master volume to 1.000000
I/CameraService( 186): CameraService started (pid=186)
I/AudioFlinger( 186): AudioFlinger's thread 0xea18 ready to run
D/AudioFlinger( 186): setParameters(): io 1, keyvalue routing=2, tid 191, calli
ng tid 186
I/AudioHardwareQSD( 186): Routing audio to Speakerphone
D/AudioHardwareQSD( 186): Switching audio device to
D/AudioHardwareQSD( 186): Speakerphone
D/AudioHardwareQSD( 186): AudioHardware pcm playback is going to standby.
I/AudioHardwareQSD( 186): voice volume 0.000000 (range is 0 to 0)
D/AudioHardwareQSD( 186): Setting in-call volume to 100
hope to hear from everyone soon, thanks!
you are flashing a custom rom through stock recovery? how is that possible? you need a custom recovery to do that. try flashing one using unrevoked. and a few more details about roms that works and radio+hboot could be handy.
ryanpaul said:
hi there.. my problem is that when i install certain roms and reboot them after the first install my screen is stuck at the white htc screen. the roms that i am trying to flash are ultimate droid and oxygen rc3. i wiped all the things that needed to be wiped from both clockwork and amon-ra
here are some things i noticed:
i am NOT s-off
everytime i open recovery i get a "E:Can't open /cache/recovery/command" when i press vol-up + power but i cal still flash with the update.zip
below is my logcat sorry if it is too long but it keeps repeating when i run my logcat
Code:
D/AndroidRuntime( 185):
D/AndroidRuntime( 185): >>>>>> Booting Oxygen by AdamG <<<<<<
D/AndroidRuntime( 185):
D/AndroidRuntime( 185): >>>>>> AndroidRuntime START com.android.internal.os.Zyg
oteInit <<<<<<
D/AndroidRuntime( 185): CheckJNI is OFF
D/dalvikvm( 185): creating instr width table
I/SamplingProfilerIntegration( 185): Profiler is disabled.
I/Zygote ( 185): Preloading classes...
E/Zygote ( 185): setreuid() failed. errno: 30
D/dalvikvm( 185): GC_EXPLICIT freed 47K, 78% free 235K/1024K, external 0K/0K, p
aused 2ms
D/dalvikvm( 185): GC_EXPLICIT freed 1K, 73% free 285K/1024K, external 0K/0K, pa
used 2ms
D/dalvikvm( 185): GC_EXPLICIT freed 22K, 69% free 319K/1024K, external 0K/0K, p
aused 2ms
I/bluetooth_ScoSocket.cpp( 185): Entry name = MY-CAR ScoTypes = 0x7f
I/bluetooth_ScoSocket.cpp( 185): Entry name = Motorola HF850 ScoTypes = 0x7
D/dalvikvm( 185): GC_EXPLICIT freed 17K, 66% free 357K/1024K, external 0K/0K, p
aused 2ms
D/dalvikvm( 185): GC_EXPLICIT freed 25K, 63% free 386K/1024K, external 0K/0K, p
aused 2ms
D/dalvikvm( 185): GC_EXPLICIT freed 20K, 57% free 442K/1024K, external 0K/0K, p
aused 3ms
W/dalvikvm( 185): Exception Ljava/lang/ArithmeticException; thrown while initia
lizing Ljava/util/PropertyPermission;
W/dalvikvm( 185): Exception Ljava/lang/ExceptionInInitializerError; thrown whil
e initializing Ljava/util/Locale;
W/dalvikvm( 185): Exception Ljava/lang/ExceptionInInitializerError; thrown whil
e initializing Landroid/media/ExifInterface;
E/Zygote ( 185): Error preloading android.media.ExifInterface.
E/Zygote ( 185): java.lang.ExceptionInInitializerError
E/Zygote ( 185): at java.lang.Class.classForName(Native Method)
E/Zygote ( 185): at java.lang.Class.forName(Class.java:234)
E/Zygote ( 185): at java.lang.Class.forName(Class.java:181)
E/Zygote ( 185): at com.android.internal.os.ZygoteInit.preloadClasses( Zyg
oteInit.java:297)
E/Zygote ( 185): at com.android.internal.os.ZygoteInit.main(ZygoteInit .ja
va:564)
E/Zygote ( 185): at dalvik.system.NativeStart.main(Native Method)
E/Zygote ( 185): Caused by: java.lang.ExceptionInInitializerError
E/Zygote ( 185): at java.text.SimpleDateFormat.<init>(SimpleDateFormat .ja
va:252)
E/Zygote ( 185): at android.media.ExifInterface.<clinit>(ExifInterface .ja
va:96)
E/Zygote ( 185): ... 6 more
E/Zygote ( 185): Caused by: java.lang.ExceptionInInitializerError
E/Zygote ( 185): at java.util.Locale.<clinit>(Locale.java:214)
E/Zygote ( 185): ... 8 more
E/Zygote ( 185): Caused by: java.lang.ArithmeticException: divide by zero
E/Zygote ( 185): at java.util.PropertyPermission.<clinit>(PropertyPerm iss
ion.java)
E/Zygote ( 185): ... 9 more
E/Zygote ( 185): setreuid() failed. errno: 30
D/AndroidRuntime( 185): Shutting down VM
W/dalvikvm( 185): threadid=1: thread exiting with uncaught exception (group=0x4
0015560)
D/skia ( 185): purging 6K from font cache [1 entries]
I/ServiceManager( 91): service 'media.audio_flinger' died
I/ServiceManager( 91): service 'media.player' died
I/ServiceManager( 91): service 'media.camera' died
I/ServiceManager( 91): service 'media.audio_policy' died
I/Netd ( 187): Netd 1.0 starting
I/ ( 186): ServiceManager: 0xad50
E/AudioHardwareQSD( 186): Cannot open /dev/audience_a1026 -1
I/HTC Acoustic( 186): libhtc_acoustic.so version 2.0.1.5
E/HTC Acoustic( 186): Fail to open /system/etc/AdieHWCodecSetting.csv -1.
E/HTC Acoustic( 186): read ADIE para from file failed -1
E/HTC Acoustic( 186): ioctl ACOUSTIC_UPDATE_ADIE failed -1
I/HTC Acoustic( 186): open /system/etc/AudioBTID.csv success.
I/HTC Acoustic( 186): BT ID table version: PASSION_HTC_20091105
E/HTC Acoustic( 186): Fail to open /system/etc/TPA2018.csv -1.
D/AudioHardwareQSD( 186): speaker amplifier tpa2018 is not supported
D/AudioHardwareInterface( 186): setMode(NORMAL)
I/AudioHardwareQSD( 186): Set master volume to 1.000000
I/CameraService( 186): CameraService started (pid=186)
I/AudioFlinger( 186): AudioFlinger's thread 0xea18 ready to run
D/AudioFlinger( 186): setParameters(): io 1, keyvalue routing=2, tid 191, calli
ng tid 186
I/AudioHardwareQSD( 186): Routing audio to Speakerphone
D/AudioHardwareQSD( 186): Switching audio device to
D/AudioHardwareQSD( 186): Speakerphone
D/AudioHardwareQSD( 186): AudioHardware pcm playback is going to standby.
I/AudioHardwareQSD( 186): voice volume 0.000000 (range is 0 to 0)
D/AudioHardwareQSD( 186): Setting in-call volume to 100
hope to hear from everyone soon, thanks!
Click to expand...
Click to collapse
update: solved the problem had to do an s-off and flash the recovery-clockwork-2.5.0.7-bravo file.. thanks anyway
Hi Guys,
I have an issue with my desire. When I try to run the camera the screen goes black and after a while it force closes.
I have tried the obvious things like restarting the phone, clearing the camera cache in androids app settings and trying a non-stock camera app with no luck.
I have also tried different roms, I was using Oxygen RC6 (gingerbread) as well as Oxygen 1.04 (froyo). I have now gone back to Cyanogen 6.1.1 and the camera has the same behaviour on all 3 roms.
Finally I also tried updating my radio to the latest (32.49.00.32U_5.11.05.27 as of this post) but again.. same behaviour.
I am at my wits end, I use the camera a lot and it is frustrating not being able to solve this. If someone could help or suggest something else I could try I would greatly appreciate it.
Thank you.
I read somewhere that formatting/changing the sd card may help. Tried formatting the card as well as a new one and still having the issue.
Can anyone suggest anything? please??
I also managed to get this, hopefully it is helpful? I don't understand it myself though.. I bolded the part that looks as though it may be the error?
01-11 19:52:43.014 I/ActivityManager( 166): Starting activity: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.android.camera/.CameraEntry bnds=[243,410][357,528] }
01-11 19:52:43.034 D/SurfaceFlinger( 166): Layer::requestBuffer(this=0x60d3c0), index=0, pid=166, w=480, h=800 success
01-11 19:52:43.064 W/HTCCamera( 957): onCreate()
01-11 19:52:43.064 W/dalvikvm( 957): disableGcForExternalAlloc: true
01-11 19:52:43.094 W/IntentManager( 957): from class: com.android.camera.CameraEntry
01-11 19:52:43.094 W/IntentManager( 957): mRequestMode = RequestMode.Main, from Camera
01-11 19:52:43.094 W/IntentManager( 957): request name = null - RequestName.Unknown_General
01-11 19:52:43.094 W/IntentManager( 957): extras == null
01-11 19:52:43.104 W/HTCCamera( 957): onStart() - start
01-11 19:52:43.104 W/HTCCamera( 957): onStart() - end
01-11 19:52:43.104 W/HTCCamera( 957): onResume() - start
01-11 19:52:43.104 W/HTCCamera( 957): !!!! @@@@ broadcastStopVoiceRecording() - start
01-11 19:52:43.104 W/HTCCamera( 957): !!!! @@@@ broadcastStopVoiceRecording() - end
01-11 19:52:43.114 D/Sensors ( 166): open_akm, fd=146
01-11 19:52:43.124 D/AK8973 ( 115): Compass Start
01-11 19:52:43.124 W/HTCCamera( 957): Initial Display Orientation is portrait
01-11 19:52:43.124 W/HTCCamera( 957): mIsInitOrientation = true, mIsWaitOrientation = false
01-11 19:52:43.124 W/HTCCamera( 957): OnResume - reset UI, immediately set mMainLayout invisible
01-11 19:52:43.124 W/########## HtcSettingsReceiver ##########( 957): 2011-01-11 07:52:43 128(ms) onReceive-start
01-11 19:52:43.144 W/HTCCamera( 957): Block Capture UI - onResume(), and unblock after start preview
01-11 19:52:43.144 W/HTCCamera( 957): onResume() - mFocusingState = NO_FOCUSING
01-11 19:52:43.144 W/HTCCamera( 957): keyguard is not shown !!!!!
01-11 19:52:43.144 W/HTCCamera( 957): onResume() - end
01-11 19:52:43.144 D/SurfaceFlinger( 166): Layer::setBuffers(this=0x699288), pid=957, w=1, h=1
01-11 19:52:43.144 D/SurfaceFlinger( 166): Layer::setBuffers(this=0x699288), pid=957, w=1, h=1
01-11 19:52:43.174 D/SurfaceFlinger( 166): Layer::requestBuffer(this=0x699288), index=0, pid=957, w=480, h=800 success
01-11 19:52:43.194 D/PowerManagerService( 166): New lightsensor value:40, lcdValue:81
01-11 19:52:43.214 W/HTCCamera( 957): $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ surfaceCreated [email protected]
01-11 19:52:43.214 W/HTCCamera( 957): $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ surfaceCreated $$$$$$$$$$$$$$$$$$$$$$$$$$$ start preview
01-11 19:52:43.214 W/HTCCamera( 957): $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ surfaceChanged $$$$$$$$$$$$$$$$$$$$$$$$$$$ w=480 h=800
01-11 19:52:43.224 W/CameraThread( 957): CameraHandler Message - START_PREVIEW start mode0
01-11 19:52:43.224 E/CameraThread( 957): open the Camera in start_camera_preview
01-11 19:52:43.224 W/CameraSwitch( 957): open main camera
01-11 19:52:43.224 W/CameraSwitch( 957): no file - can't switch camera
01-11 19:52:43.224 D/CameraService( 110): CameraService::connect E (pid 957, client 0x44f38)
01-11 19:52:43.224 D/CameraService( 110): CameraService::connect X (pid 957, new client 0x44f38) rejected. (old pid 888, old client 0x19d20)
01-11 19:52:43.224 D/CameraService( 110): The old client is dead!
01-11 19:52:43.224 I/ActivityManager( 166): Displayed activity com.android.camera/.CameraEntry: 182 ms (total 182 ms)
01-11 19:52:43.244 E/CameraThread( 957): open camera failed
01-11 19:52:43.244 E/CameraThread( 957): java.lang.RuntimeException: Fail to connect to camera service
01-11 19:52:43.244 E/CameraThread( 957): at android.hardware.Camera.native_setup(Native Method)
01-11 19:52:43.244 E/CameraThread( 957): at android.hardware.Camera.<init>(Camera.java:118)
01-11 19:52:43.244 E/CameraThread( 957): at android.hardware.Camera.open(Camera.java:91)
01-11 19:52:43.244 E/CameraThread( 957): at com.android.camera.CameraThread.start_preview(CameraThread.java:1273)
01-11 19:52:43.244 E/CameraThread( 957): at com.android.camera.CameraThread$MainHandler.handleMessage(CameraThread.java:292)
01-11 19:52:43.244 E/CameraThread( 957): at android.os.Handler.dispatchMessage(Handler.java:99)
01-11 19:52:43.244 E/CameraThread( 957): at android.os.Looper.loop(Looper.java:144)
01-11 19:52:43.244 E/CameraThread( 957): at com.android.camera.CameraThread.run(CameraThread.java:1860)
01-11 19:52:43.244 W/CameraThread( 957): CameraHandler Message - START_PREVIEW end
01-11 19:52:43.244 W/HTCCamera( 957): onPause() - start
01-11 19:52:43.244 W/HTCCamera( 957): onPause() - mIsUIReady = false
01-11 19:52:43.254 W/########## HtcSettingsReceiver ##########( 957): 2011-01-11 07:52:43 256(ms) onReceive-start
01-11 19:52:43.264 W/HTCCamera( 957): AudioManager.STREAM_SYSTEM_ENFORCED, to fix volume ,mOriginalVolume = -1
01-11 19:52:43.264 W/HTCCamera( 957): onPause() - mFocusingState = NO_FOCUSING
01-11 19:52:43.264 W/HTCCamera( 957): OnPause - set mWaitResetSettings to false
01-11 19:52:43.264 W/HTCCamera( 957): releaseFaceDetection()
01-11 19:52:43.264 W/HTCCamera( 957): onPause mIdle is false
01-11 19:52:43.264 W/CameraThread( 957): CameraHandler Message - CLOSE_CAMERA start mMode=0
01-11 19:52:43.264 E/CameraThread( 957): mCameraDevice == null in close_camera
01-11 19:52:43.264 W/CameraThread( 957): CameraHandler Message - CLOSE_CAMERA end
01-11 19:52:43.274 D/Sensors ( 166): close_akm, fd=146
01-11 19:52:43.284 W/HTCCamera( 957): onPause() - end
01-11 19:52:43.324 W/HTCCamera( 957): doOnPause() - start
01-11 19:52:43.324 W/HTCCamera( 957): OnPause - hide UI, set mMainLayout invisible
01-11 19:52:43.324 W/HTCCamera( 957): doOnPause() - end
01-11 19:52:43.324 W/HTCCamera( 957): initScreenMode() - initiate screen mode from capture mode
01-11 19:52:43.324 W/HTCCamera( 957): initScreenMode() - request landscape mode
01-11 19:52:43.354 D/SurfaceFlinger( 166): Layer::setBuffers(this=0x7c658), pid=442, w=480, h=800
01-11 19:52:43.354 D/SurfaceFlinger( 166): Layer::setBuffers(this=0x7c658), pid=442, w=480, h=800
01-11 19:52:43.374 D/PowerManagerService( 166): New lightsensor value:40, lcdValue:81
01-11 19:52:43.404 D/SurfaceFlinger( 166): Layer::requestBuffer(this=0x7c658), index=0, pid=442, w=480, h=800 success
01-11 19:52:43.484 W/HTCCamera( 957): $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ surfaceDestroyed $$$$$$$$$$$$$$$$$$$$$$$$$$$
01-11 19:52:43.654 D/AK8973 ( 115): Compass CLOSE
01-11 19:52:43.694 D/SurfaceFlinger( 166): Layer::requestBuffer(this=0x7c658), index=1, pid=442, w=480, h=800 success
01-11 19:52:43.714 W/HTCCamera( 957): onStop() - start
01-11 19:52:43.714 W/HTCCamera( 957): onStop() - end
01-11 19:52:43.714 W/HTCCamera( 957): onDestroy() - start
01-11 19:52:43.764 W/CameraThread( 957): CameraHandler Message - QUIT_CAMERA_THREAD start
01-11 19:52:43.764 E/CameraThread( 957): mCameraDevice == null in close_camera
01-11 19:52:43.764 W/CameraThread( 957): CameraHandler Message - QUIT_CAMERA_THREAD end
01-11 19:52:43.794 W/HTCCamera( 957): onDestroy() - end
01-11 19:52:44.294 W/HTCCamera( 957): doOnDestroy() - start
01-11 19:52:44.294 W/HTCCamera( 957): doOnDestroy() - end
01-11 19:52:45.965 D/PowerManagerService( 166): New lightsensor value:90, lcdValue:128
01-11 19:52:46.554 E/ClockWidget( 442): handleUiMessage~ in pause. msg:36867
01-11 19:52:46.554 E/ClockWidget( 442): handleUiMessage~ in pause. msg:32790
01-11 19:52:47.294 I/ActivityManager( 166): Starting activity: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.xtralogic.android.logcollector/.SendLogActivity }
Click to expand...
Click to collapse
Go back to a stock Sense ROM and see what happens (assuming the RUU is available for your phone). Take a nandroid first to at least be able to root/restore if OK
If it works on the stock ROM then it's something ROM related. If not, return the handset
If you already tried differents roms and also new radio..I think could be an hardware problem..Did your desire fall down? Does the flash, with some torch app, not work too?
I had a similar experience with that; my desire got fall down..then from that moment my camera didn't work..but some days after, unlucky or luchy me, it fall down again and magically my camera come back fully working
(Anyway don't try to fall down your desire )
Torch app still works as normal.
Going to search for an RUU and try that.
went back to RUU and still same camera issue.. please don't tell me this is a hardware problem!! I have never dropped this phone!!
There's nothing else you can do bar exchange it
andQlimax said:
If you already tried differents roms and also new radio..I think could be an hardware problem..Did your desire fall down? Does the flash, with some torch app, not work too?
I had a similar experience with that; my desire got fall down..then from that moment my camera didn't work..but some days after, unlucky or luchy me, it fall down again and magically my camera come back fully working
(Anyway don't try to fall down your desire )
Click to expand...
Click to collapse
I have the same experience but I try to fall down my desire intentionally (on a carpet) and... Tadaaaaaaaaaaaaaaaa... the problem is solved...
The lens must muve to focus but I noticed that the lens did not move anymore...
if the lens is stuck you might try to hit gently...
but.... I do not assume responsibility
ZanzarastA said:
I have the same experience but I try to fall down my desire intentionally (on a carpet) and... Tadaaaaaaaaaaaaaaaa... the problem is solved...
The lens must muve to focus but I noticed that the lens did not move anymore...
if the lens is stuck you might try to hit gently...
but.... I do not assume responsibility
Click to expand...
Click to collapse
LOL we have to suggest this procedure to the HTC customer care, and they will have to pay us the rights for this solution
Hi,
I recently moved from a rooted stock (with minor tweaks) sense 2.2. rom to CM7. Everything works great except the wifi! It only turns on (or appears to) for a few seconds before turning off (doesn't even scan) and shows "mac address unavailable". GPS also doesn't appear to be working.
I've tried reflashing everything (radio, recovery, rom) and no luck. I've read some people have resolved it by a simple reboot (or installing wefi) but that doesnt work!
Any help would be much appreciated!
Many thanks
Other info:
Radio: 5.17.05.23
Recovery: ClockworkMod 3.2.0.1
S-off
ROM: CM 7.1.0 RC1 (and i've tried the latest nightly builds too).
I commented on an old similar thread, but I hope this is a more suitable place for it!
Hi,
After experimenting with many ROMs, radios and kernals, I am still without wifi!
I read a post around removing the wpa_supplicant.conf file from /data/misc/wifi but that didn't work either.
Wifi only works when I revert back to a rooted stock rom.
Any ideas?
hi,
I'm starting to run out of ideas on this one. Everything else works fine bar this issue, and I really don't want to revert back to a stock ROM! I've attached a logcat extract in the hope that someone can help! Please!
Thanks in advance!
D/WifiStateTracker( 182): Disabling interface
D/SettingsAppWidgetProvider( 535): Widget is from a previous version... Let's update
D/SettingsAppWidgetProvider( 535): No instances yet... Wait for at least one instance to exist before adding global settings
D/dalvikvm( 320): GC_CONCURRENT freed 397K, 50% free 3168K/6215K, external 0K/512K, paused 5ms+3ms
D/dalvikvm( 406): GC_EXPLICIT freed 163K, 51% free 2813K/5703K, external 0K/0K, paused 51ms
D/dalvikvm( 535): GC_EXPLICIT freed 85K, 45% free 3148K/5703K, external 837K/1034K, paused 91ms
I/power ( 182): *** set_screen_state 0
D/SurfaceFlinger( 182): About to give-up screen, flinger = 0x93d20
D/AK8973 ( 138): Compass CLOSE
D/dalvikvm( 182): GC_CONCURRENT freed 851K, 41% free 6069K/10119K, external 35K/547K, paused 8ms+6ms
I/power ( 182): *** set_screen_state 1
D/SurfaceFlinger( 182): Screen about to return, flinger = 0x93d20
D/AK8973 ( 138): Compass Start
D/szipinf ( 297): Initializing inflate state
D/szipinf ( 182): Initializing inflate state
I/ActivityManager( 182): Starting: Intent { act=android.settings.SETTINGS flg=0x10200000 cmp=com.android.settings/.Settings } from pid 297
I/ActivityManager( 182): Starting: Intent { act=android.intent.action.MAIN cmp=com.android.settings/.WirelessSettings } from pid 535
I/ActivityManager( 182): Displayed com.android.settings/.WirelessSettings: +331ms
D/SettingsAppWidgetProvider( 535): Widget is from a previous version... Let's update
D/SettingsAppWidgetProvider( 535): No instances yet... Wait for at least one instance to exist before adding global settings
I/TelephonyRegistry( 182): notifyServiceState: 0 home T-Mobile T-Mobile 23430 GPRS CSS not supported -1 -1RoamInd: -1DefRoamInd: -1EmergOnly: false
I/TelephonyRegistry( 182): notifyDataConnection: state=2 isDataConnectivityPossible=true reason=null interfaceName=rmnet0 networkType=1
D/WifiService( 182): ACTION_BATTERY_CHANGED pluggedType: 2
D/SettingsAppWidgetProvider( 535): Widget is from a previous version... Let's update
D/SettingsAppWidgetProvider( 535): No instances yet... Wait for at least one instance to exist before adding global settings
E/wpa_supplicant( 1240): ioctl[SIOCGIFFLAGS]
E/wpa_supplicant( 1240): ioctl[SIOCSIWPMKSA]
E/wpa_supplicant( 1240): ioctl[SIOCSIWMODE]
E/wpa_supplicant( 1240): ioctl[SIOCGIRANGE]
E/wpa_supplicant( 1240): ioctl[SIOCGIWMODE]
E/wpa_supplicant( 1240): ioctl[SIOCSIWAP]
E/wpa_supplicant( 1240): ioctl[SIOCSIWENCODEEXT]
E/wpa_supplicant( 1240): ioctl[SIOCSIWENCODE]
E/wpa_supplicant( 1240): ioctl[SIOCSIWENCODEEXT]
E/wpa_supplicant( 1240): ioctl[SIOCSIWENCODE]
E/wpa_supplicant( 1240): ioctl[SIOCSIWENCODEEXT]
E/wpa_supplicant( 1240): ioctl[SIOCSIWENCODE]
E/wpa_supplicant( 1240): ioctl[SIOCSIWENCODEEXT]
E/wpa_supplicant( 1240): ioctl[SIOCSIWENCODE]
I/wpa_supplicant( 1240): CTRL-EVENT-STATE-CHANGE id=-1 state=0 BSSID=00:00:00:00:00:00
E/wpa_supplicant( 1240): Failed to disable WPA in the driver.
E/wpa_supplicant( 1240): ioctl[SIOCGIWMODE]
E/wpa_supplicant( 1240): ioctl[SIOCSIWAP]
E/wpa_supplicant( 1240): ioctl[SIOCGIFFLAGS]
I/ActivityManager( 182): Starting: Intent { act=android.intent.action.MAIN cmp=com.android.settings/.wifi.WifiSettings } from pid 535
D/WifiStateTracker( 182): Reset connections and stopping DHCP
D/WifiStateTracker( 182): Disabling interface
I/ActivityManager( 182): Displayed com.android.settings/.wifi.WifiSettings: +6s721ms
E/WifiHW ( 182): Supplicant not running, cannot connect
W/InputManagerService( 182): Window already focused, ignoring focus gain of: [email protected]
E/WifiHW ( 182): Supplicant not running, cannot connect
D/dalvikvm( 297): GC_EXPLICIT freed 762K, 58% free 3414K/8071K, external 6407K/7021K, paused 67ms
E/WifiHW ( 182): Supplicant not running, cannot connect
V/WifiStateTracker( 182): Supplicant died unexpectedly
D/WifiStateTracker( 182): Reset connections and stopping DHCP
D/WifiStateTracker( 182): Disabling interface
D/WifiStateTracker( 182): Reset connections and stopping DHCP
D/SettingsAppWidgetProvider( 535): Widget is from a previous version... Let's update
D/SettingsAppWidgetProvider( 535): No instances yet... Wait for at least one instance to exist before adding global settings
D/WifiStateTracker( 182): Disabling interface
D/SettingsAppWidgetProvider( 535): Widget is from a previous version... Let's update
D/SettingsAppWidgetProvider( 535): No instances yet... Wait for at least one instance to exist before adding global settings
I/WindowManager( 182): Setting rotation to 1, animFlags=0
I/ActivityManager( 182): Config changed: { scale=1.0 imsi=234/30 loc=en_GB touch=3 keys=1/1/2 nav=3/1 orien=2 layout=34 uiMode=17 seq=4 themeResource=null}
I/PowerWidget( 254): Clearing any old widget stuffs
I/PowerWidget( 254): Setting up widget
I/PowerWidget( 254): Default buttons being loaded
I/PowerWidget( 254): Button list: toggleWifi|toggleBluetooth|toggleGPS|toggleSound
I/PowerWidget( 254): Setting up button: toggleWifi
I/PowerWidget( 254): Setting up button: toggleBluetooth
I/PowerWidget( 254): Setting up button: toggleGPS
I/PowerWidget( 254): Setting up button: toggleSound
My Dinc currently has cmlusco's excellent Touch of Blue v2.2 installed(a full wipe install with v6), which includes the latest OTA. I also have the latest radio (2.15.10.12.20) which cmlusco pulled from the OTA installed.
Since the latest OTA files were installed I have seen a lot of people complaining about 2am reboots. I happen to work 3rd shift, so I am awake during this time and instead of the reboots(as I am usually using my phone at this time) I begin to have mounting errors. This never happened before the new OTA files and only occurs between the times of 2am-5am.
Basically, the second it hits 2am if the screen goes to sleep(either by time or by pressing the power button) after 2-3 seconds both the sd card and emmc unmount themselves. As soon as you wake the phone up the "Preparing phone storage" message is displayed and everything is remounted. I noticed this because I listen to music from my sd card through amazon mp3, and when the screen goes dark the music stops.
I began pulling logs with alogcat and this is an example of what I see happening:
--------- beginning of /dev/log/system
D/InputManagerService( 145): Window already focused, ignoring focus gain of: com.android.internal.view.IInputMethodClient$Stub$[email protected]
--------- beginning of /dev/log/main
I/power ( 145): *** set_screen_state 0
D/PowerManagerService( 145): setScreenStateLocked++, on: false, err: 0
D/SensorService( 145): disable: connection.get() = 0x37d8f8
D/SensorService( 145): disable: get sensor name = CM3602 Light sensor
D/SensorService( 145): SensorDevice::activate: handle = 0x4, enabled = 0x0
D/SensorService( 145): noteStopSensor: uid = 0x3e8, handle = 0x4
D/SensorService( 145): pid=145, uid=1000
D/SensorService( 145): Active sensors:
D/SensorService( 145): BMA150 3-axis Accelerometer (handle=0x00000000, connections=1)
D/PowerManagerService( 145): setScreenStateLocked, turn off the button light
D/lights ( 145): set_light_buttons_func: on=0 brightness=0
V/KeyguardViewMediator( 145): password timeout delay 599226ms
D/KeyguardViewManager( 145): show(); mKeyguar[email protected]409e7148
D/HtcLockScreen( 145): createPatternUnlockScreen() ...
D/HtcLockScreen( 145): package name not found - com.htc.lockscreen
D/SensorService( 145): disable: connection.get() = 0x37d8f8
D/SensorService( 145): disable: get sensor name = BMA150 3-axis Accelerometer
D/SensorService( 145): SensorDevice::activate: handle = 0x0, enabled = 0x0
D/Sensors ( 145): Enable akm: en = 0
D/SensorService( 145): noteStopSensor: uid = 0x3e8, handle = 0x0
D/SensorService( 145): pid=145, uid=1000
D/SensorService( 145): Active sensors:
D/AlarmManager( 145): ACTION_SCREEN_OFF
W/InputManagerService( 145): Receive : Intent.ACTION_SCREEN_OFF
D/SurfaceFlinger( 145): About to give-up screen, flinger = 0xb26c0
W/InputManagerService( 145): Disable input method client.
W/IInputConnectionWrapper( 8615): beginBatchEdit on inactive InputConnection
W/IInputConnectionWrapper( 8615): endBatchEdit on inactive InputConnection
D/StatusBarPolicy( 216): onSignalStrengthsChanged
D/StatusBarPolicy( 216): iconIndex=1
V/StatusBarPolicy( 216): cdmaLevel:3;max:4
D/StatusBarPolicy( 216): iconLevel:3
D/StatusBarService( 216): updateIcon slot=phone_signal index=20 viewIndex=14 old=StatusBarIcon(pkg=com.android.systemui id=0x7f020009 level=0 visible=true num=0 ) icon=StatusBarIcon(pkg=com.android.systemui id=0x7f02000a level=0 visible=true num=0 )
I/USERIAL_LINUX( 458): ##### USerial_Ioctl: BT_Wake, 0x8003 ####
D/ContactWidget Matrix( 264): Received intent:android.intent.action.SCREEN_OFF
D/StatusBarManagerService( 145): disable what =1, token = [email protected], pkg = android, mBar = [email protected]
D/MountService( 145): Receive Screen OFF!
D/MountService( 145): persist.erasedirtyfat.done = 0
D/MountService( 145): The current time is 2:40:13
D/AK8973 ( 102): Compass CLOSE
D/AutoSetting( 8786): service - mHandler: cancel location update
D/AutoSetting( 8786): service - changes count: 0
D/InputManagerService( 145): Starting input on non-focused client [email protected] (uid=10108 pid=8615)
V/SyncManager( 145): runstateidle: nonHTCActiveCount++ :1
I/USERIAL_LINUX( 458): ##### USerial_Ioctl: BT_Sleep, 0x8004 ####
D/KeyguardViewMediator( 145): wakeWhenReadyLocked(26)
D/lights ( 145): set_light_buttons_func: on=2960685 brightness=45
I/power ( 145): *** set_screen_state 1
D/PowerManagerService( 145): setScreenStateLocked++, on: true, err: 0
D/SurfaceFlinger( 145): Screen about to return, flinger = 0xb26c0
D/SensorService( 145): enable: connection.get() = 0x37d8f8, (2.3.4)
D/SensorService( 145): enable: get sensor name = CM3602 Light sensor
D/SensorService( 145): SensorDevice::activate: handle = 0x4, enabled = 0x1
D/SensorService( 145): noteStartSensor: uid = 0x3e8, handle = 0x4
D/SensorService( 145): pid=145, uid=1000
D/SensorService( 145): Active sensors:
D/SensorService( 145): CM3602 Light sensor (handle=0x00000004, connections=1)
D/PowerManagerService( 145): New lightsensor value:40, lcdValue:45
D/PowerManagerService( 145): lightSensorChangedLocked, buttonValue >= 0, mPowerState = 3
D/lights ( 145): set_light_buttons_func: on=16777215 brightness=255
D/PowerManagerService( 145): button light setOrientation:-1
V/KeyguardViewMediator( 145): password timeout delay 594138ms
D/AlarmManager( 145): ACTION_SCREEN_ON
W/InputManagerService( 145): Receive : Intent.ACTION_SCREEN_ON
W/InputManagerService( 145): Enable input method client.
D/HtcCdmaPhoneApp( 288): eri_id = 64 home or roaming = VZW_HOME_NETWORK
V/HtcCdmaGloableRoamingUtil( 288): localGetGlobalRoamingOption:0
D/HtcCdmaGloableRoamingUtil( 288): getNeedShowRoamingOption():true
D/HtcCdmaGloableRoamingUtil( 288): getNeedAutoSetDeny():false
D/StatusBarPolicy( 216): onSignalStrengthsChanged
D/ContactWidget Matrix( 264): Received intent:android.intent.action.SCREEN_ON
D/HtcNBPCDUtil( 288): EVENT_NBPCD_INFO
D/StatusBarPolicy( 216): iconIndex=1
V/StatusBarPolicy( 216): cdmaLevel:3;max:4
D/StatusBarPolicy( 216): iconLevel:3
D/StatusBarService( 216): updateIcon slot=phone_signal index=20 viewIndex=14 old=StatusBarIcon(pkg=com.android.systemui id=0x7f02000a level=0 visible=true num=0 ) icon=StatusBarIcon(pkg=com.android.systemui id=0x7f02000a level=0 visible=true num=0 )
D/MountService( 145): Receive Screen ON!
D/VoldCmdListener( 90): erase stop
D/VoldCmdListener( 90): Erase stop...
W/FrameworkListener( 90): Handler 'erase' error (No such file or directory)
D/VoldCmdListener( 90): volume mount /mnt/emmc
I/Vold ( 90): /dev/block/vold/179:3 being considered for volume emmc
D/Vold ( 90): Volume emmc state changing 1 (Idle-Unmounted) -> 3 (Checking)
I/StorageNotification( 216): Media {/mnt/emmc} state changed from {unmounted} -> {checking}
I//system/bin/fsck_msdos( 90): ** /dev/block/vold/179:3
I//system/bin/fsck_msdos( 90): ** Phase 1 - Read and Compare FATs
I//system/bin/fsck_msdos( 90): Attempting to allocate 845 KB for FAT
I//system/bin/fsck_msdos( 90): Attempting to allocate 845 KB for FAT
D/KeyguardViewManager( 145): hide()
D/StatusBarManagerService( 145): disable what =0, token = [email protected], pkg = android, mBar = [email protected]
D/SensorService( 145): enable: connection.get() = 0x37d8f8, (2.3.4)
D/SensorService( 145): enable: get sensor name = BMA150 3-axis Accelerometer
D/SensorService( 145): SensorDevice::activate: handle = 0x0, enabled = 0x1
D/Sensors ( 145): Enable akm: en = 1
D/AK8973 ( 102): Compass Start
D/SensorService( 145): noteStartSensor: uid = 0x3e8, handle = 0x0
D/SensorService( 145): pid=145, uid=1000
D/SensorService( 145): Active sensors:
D/SensorService( 145): BMA150 3-axis Accelerometer (handle=0x00000000, connections=1)
D/SensorService( 145): CM3602 Light sensor (handle=0x00000004, connections=1)
D/InputManagerService( 145): Window already focused, ignoring focus gain of: [email protected]
I//system/bin/fsck_msdos( 90): ** Phase 2 - Check Cluster Chains
I//system/bin/fsck_msdos( 90): ** Phase 3 - Checking Directories
D/dalvikvm( 8615): GC_CONCURRENT freed 477K, 49% free 3323K/6407K, external 36K/548K, paused 3ms+5ms
I//system/bin/fsck_msdos( 90): ** Phase 4 - Checking for Lost Files
I//system/bin/fsck_msdos( 90): 1370 files, 2008096 free (193825 clusters)
I/Vold ( 90): Filesystem check completed OK
I/Vold ( 90): Device /dev/block/vold/179:3, target /mnt/emmc mounted @ /mnt/secure/staging
D/Vold ( 90): Volume emmc state changing 3 (Checking) -> 4 (Mounted)
I/StorageNotification( 216): Media {/mnt/emmc} state changed from {checking} -> {mounted}
D/Ringer ( 288): -- intent.getAction() =android.intent.action.MEDIA_MOUNTED
D/MountService( 145): persist.erasedirtyfat.done = 0
D/MountService( 145): The current time is 2:40:19
D/FacebookReceiver( 8190): Intent.ACTION_USER_PRESENT SyncInterval=86400000,currTime=1341902419199
D/FacebookReceiver( 8190): Intent.ACTION_USER_PRESENT lastStreamSyncTime=1341902419200,lastFriendSyncTime=1341902419200
D/dalvikvm( 987): GC_EXTERNAL_ALLOC freed 191K, 46% free 2985K/5511K, external 1759K/2270K, paused 32ms
D/AppWidgetHostView( 264): updateAppWidget mInfo = AppWidgetProviderInfo(provider=ComponentInfo{mikado.bizcalpro/mikado.bizcalpro.WidgetProvider4x4})
V/CalendarProvider2( 8786): ACTION_EVENT_CHANGED
D/dalvikvm( 987): GC_EXTERNAL_ALLOC freed 176K, 46% free 2986K/5511K, external 1126K/1637K, paused 31ms
D/DrmScannerReceiver( 8918): android.intent.action.MEDIA_MOUNTED
I/EMMC ( 8918): Action mounted + path: /mnt/emmc,/mnt/sdcard,/mnt/ext_sd, /mnt/emmc,android.intent.action.MEDIA_MOUNTED
D/DrmIntentService( 8918): SCAN_STORAGE
D/DrmIntentService( 8918): Scanning /images
E/MediaScannerService( 8918): Failed to delete file /data/data/com.android.providers.media/pause_scan
D/DrmIntentService( 8918): Empty in /images
I/MediaUploader( 8937): No need to wake up
D/DrmIntentService( 8918): Scanning /audio
D/DrmIntentService( 8918): Empty in /audio
D/DrmIntentService( 8918): Scanning /video
D/DrmIntentService( 8918): Empty in /video
D/DrmIntentService( 8918): Scanning /jar
D/DrmIntentService( 8918): Empty in /jar
I/AmazonAppstore.UpdateCommands( 8587): Self-updating enabled: true
W/JustPictures( 8229): External storage mounted
D/AmazonAppstore.UpdateCommands( 8587): Adding self-update command to UpdateService
D/AmazonAppstore.UpdateService( 8587): Received action: com.amazon.mas.client.framework.UpdateService.SD_CARD_MOUNTED from intent: Intent { act=com.amazon.mas.client.framework.UpdateService.SD_CARD_MOUNTED cmp=com.amazon.venezia/com.amazon.mas.client.framework.UpdateService }
D/MediaScannerService( 8918): start scanning volume phoneStorage
D/MediaProvider( 8918): lock thumbnail worker
D/MediaProvider( 8918): thread is un-locked
D/MediaProvider( 8918): lock thumbnail worker
V/MediaPlayerService( 7891): Create new media retriever from pid 8918
D/MediaScannerService( 8918): getDefaultLocale =en_US
D/MediaScannerService( 8918): [MediaScannerService][scan]+external-fc303da9.db volume ID: -63947351,phoneStorage,/mnt/emmc
D/dalvikvm( 8918): GC_CONCURRENT freed 319K, 47% free 3084K/5767K, external 712K/1024K, paused 2ms+2ms
D/MediaScanner( 8918): MediaScanner:scanDirectories.doBulkInsertAll+
D/MediaScanner( 8918): MediaScanner:scanDirectories.doBulkInsertAll-
D/MediaScanner( 8918): prescan time: 34ms
D/MediaScanner( 8918): scan time: 293ms
D/MediaScanner( 8918): postscan time: 0ms
D/MediaScanner( 8918): total time: 327ms
D/MediaScannerService( 8918): [MediaScannerService][scan]-
D/MediaProvider( 8918): un-lock thumbnail worker
D/MediaProvider( 8918): un-lock thumbnail worker
D/MediaScannerService( 8918): done scanning volume phoneStorage
E/MediaScannerService( 8918): Failed to delete file /data/data/com.android.providers.media/pause_scan
D/StatusBarPolicy( 216): onSignalStrengthsChanged
D/StatusBarPolicy( 216): iconIndex=1
V/StatusBarPolicy( 216): cdmaLevel:2;max:4
D/StatusBarPolicy( 216): iconLevel:2
D/StatusBarService( 216): updateIcon slot=phone_signal index=20 viewIndex=14 old=StatusBarIcon(pkg=com.android.systemui id=0x7f02000a level=0 visible=true num=0 ) icon=StatusBarIcon(pkg=com.android.systemui id=0x7f020009 level=0 visible=true num=0 )
I/USERIAL_LINUX( 458): ##### USerial_Ioctl: BT_Wake, 0x8003 ####
I/USERIAL_LINUX( 458): ##### USerial_Ioctl: BT_Sleep, 0x8004 ####
Click to expand...
Click to collapse
I am very new to reading these logs but a few lines stuck out to me...
D/MountService( 145): Receive Screen OFF!
D/MountService( 145): persist.erasedirtyfat.done = 0
D/MountService( 145): The current time is 2:40:13
Click to expand...
Click to collapse
and then:
D/MountService( 145): Receive Screen ON!
D/VoldCmdListener( 90): erase stop
D/VoldCmdListener( 90): Erase stop...
W/FrameworkListener( 90): Handler 'erase' error (No such file or directory)
D/VoldCmdListener( 90): volume mount /mnt/emmc
I/Vold ( 90): /dev/block/vold/179:3 being considered for volume emmc
D/Vold ( 90): Volume emmc state changing 1 (Idle-Unmounted) -> 3 (Checking)
I/StorageNotification( 216): Media {/mnt/emmc} state changed from {unmounted} -> {checking}
Click to expand...
Click to collapse
I don't see anything obvious enough to make me understand what is going on, but I can definitely see that as soon as the screen goes off the phone checks the time and starts doing something with the mounts, and as soon as the command to turn back on again comes the phone begins working on remounting everything.
On another site someone mentioned HTC stating that the reboots were for memory optimization and should only happen once. I'm sure there is some sort of commonality between the reboots and my errors but it has me puzzled. Does anyone more experienced than me see anything in the logs that could lead to a fix, as I don't plan on changing my work schedule anytime soon.
Thanks for any assistance.
Laxnkio said:
My Dinc currently has cmlusco's excellent Touch of Blue v2.2 installed(a full wipe install with v6), which includes the latest OTA. I also have the latest radio (2.15.10.12.20) which cmlusco pulled from the OTA installed.
Since the latest OTA files were installed I have seen a lot of people complaining about 2am reboots. I happen to work 3rd shift, so I am awake during this time and instead of the reboots(as I am usually using my phone at this time) I begin to have mounting errors. This never happened before the new OTA files and only occurs between the times of 2am-5am.
Basically, the second it hits 2am if the screen goes to sleep(either by time or by pressing the power button) after 2-3 seconds both the sd card and emmc unmount themselves. As soon as you wake the phone up the "Preparing phone storage" message is displayed and everything is remounted. I noticed this because I listen to music from my sd card through amazon mp3, and when the screen goes dark the music stops.
I began pulling logs with alogcat and this is an example of what I see happening:
I am very new to reading these logs but a few lines stuck out to me...
and then:
I don't see anything obvious enough to make me understand what is going on, but I can definitely see that as soon as the screen goes off the phone checks the time and starts doing something with the mounts, and as soon as the command to turn back on again comes the phone begins working on remounting everything.
On another site someone mentioned HTC stating that the reboots were for memory optimization and should only happen once. I'm sure there is some sort of commonality between the reboots and my errors but it has me puzzled. Does anyone more experienced than me see anything in the logs that could lead to a fix, as I don't plan on changing my work schedule anytime soon.
Thanks for any assistance.
Click to expand...
Click to collapse
Those logs are interesting as with this newest update a file in /system/bin called erase_dirty_fat. From looking at this file it seems it scans emmc and the sdcard for bad sectors and errors. The mounting problems may be intentional by htc, as the script unmounts and mounts the emnc and sdcard. This could some how cause reboots i suppose just not sure how yet. I need to examine the file more to se exactly what it does.
cmlusco said:
Those logs are interesting as with this newest update a file in /system/bin called erase_dirty_fat. From looking at this file it seems it scans emmc and the sdcard for bad sectors and errors. The mounting problems may be intentional by htc, as the script unmounts and mounts the emnc and sdcard. This could some how cause reboots i suppose just not sure how yet. I need to examine the file more to se exactly what it does.
Click to expand...
Click to collapse
I'm running the odex version and except for the one time after first flashing it I haven't had another 2 am reboot since and never a problem mounting storage,
Bit of an update...after scouring the net i tried the manual setting the clock to 2am idea while I wasn't using the phone and let it sit for over 8 hours. I don't think I got any reboots but last night at the real 2am I didn't get any unmounts. So it has to be some sort of optimization script or something that can only run when you aren't using the phone. Hope tonight is the same result.
Sent from my ADR6300 using Tapatalk 2
For those of you getting the 2am reboots try this as a fix. Go to /system/bin and look for a file called " erase_dirty_fat ". Rename or move the file and reboot the phone. See if you still get the 2am reboots.
cmlusco said:
For those of you getting the 2am reboots try this as a fix. Go to /system/bin and look for a file called " erase_dirty_fat ". Rename or move the file and reboot the phone. See if you still get the 2am reboots.
Click to expand...
Click to collapse
Be interesting to know if this fixes the problem also, may try this Rom if it does.
Spoke too quickly I guess because the problem returned tonight after 5 days in the clear. Will try to erase that file now and see if it works.
Sent from my ADR6300 using Tapatalk 2
Its so weird i feel lucky, but also left out lol. I havent had it happen to me at all.
Same here in a way since I don't have the reboots. I've tried deleting that file to no avail, also tried leaving the phone alone for 2 8 hour blocks to try and let it finish but that doesn't seem to help either.
Wouldn't be a problem if I didn't work mids and listen to podcasts, the perfect storm. Good job htc screwing up a phone 2 years after release.
Sent from my ADR6300 using Tapatalk 2
Laxnkio said:
Spoke too quickly I guess because the problem returned tonight after 5 days in the clear. Will try to erase that file now and see if it works.
Sent from my ADR6300 using Tapatalk 2
Click to expand...
Click to collapse
Same with me, problem returned after a week of not having it. Deleting the mentioned system/bin file had no effect on mine, reboot problem still there.
kzoodroid said:
Same with me, problem returned after a week of not having it. Deleting the mentioned system/bin file had no effect on mine, reboot problem still there.
Click to expand...
Click to collapse
Well my next guess would be its one of the new apps mabey. The pic below shows the new apks added in the update. Try renaming them one at a time and see if the reboots stop.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
I would start with linkify dispatcher. Make sure you have a backup incase it messes something up.
Linkify didn't work for me, going to try the one that starts with q next since it has sd in the name.
Sent from my ADR6300 using Tapatalk 2
Renaming qx didn't work either. So weird.
Sent from my Thrive using Tapatalk 2
Laxnkio said:
Renaming qx didn't work either. So weird.
Sent from my Thrive using Tapatalk 2
Click to expand...
Click to collapse
There were many other files updated and patched that could be the cause. Mabey its a common app like gmail or something, as i dont use the gmail app and i dont get the 2am bug. Hard to tell, im going to install gmail app and see if i get the reboots. I just keep thinking it has to be an app commonly used, but that i dont have installed. If it were in the framework i should be experiencing it too.
Hmmmm... Mine keeps asking me to update but I'm not doing it.
Sent from my ADR6300 using xda premium
I just went back to TOB 1.3 and everything is running fine.
---------- Post added at 11:24 PM ---------- Previous post was at 11:21 PM ----------
Is GingerTiny_v2_2.6.35.14_08/10/2012+ compatibe with TOB 1.3. I had a problem with this combo so I went back to the Feb release.
joeyz400 said:
I just went back to TOB 1.3 and everything is running fine.
---------- Post added at 11:24 PM ---------- Previous post was at 11:21 PM ----------
Is GingerTiny_v2_2.6.35.14_08/10/2012+ compatibe with TOB 1.3. I had a problem with this combo so I went back to the Feb release.
Click to expand...
Click to collapse
Yes, all versions of the Gingertiny kernel are compatible with all versions of TOB. What issues were you having?
cmlusco said:
Yes, all versions of the Gingertiny kernel are compatible with all versions of TOB. What issues were you having?
Click to expand...
Click to collapse
I get a lot of freezes and have to restart. I tried to reinstall it and got bootloops. I just did another recovery.
Replaced new topic is: http://forum.xda-developers.com/captivate-glide/development/dev-cm-11-0-t2802184
Cyanogenmod 11.0
Download:
http://dualhoki.vim.hu/bubor/dev/11.0/
http://rpi.bubor.hu/bubor/dev/11.0/
Changelog:
20131229: enable dynamic fsync, selinux is enforcing (break wifi)
20131230: add camerawrapper back, fix wifi
20131231: 2 phone app again, selinux enforcing
20140104: happy new year! Torch uses camera interface again (it fixes strobe crash), update CM 11, and patches to latest CM 11, selinux is permissive ( you can check settings -> about phone )
20140109: fix OTG storage mount (thanks karthik050782), remove google dialer (thanks tonyp)
20140118: only cm update
20140131: bln light fix.
20140222: cifs and nfs support
20140402: ksm (settings -> performance -> memory -> KSM) saves memory, cm update
20140601: remove gmaps
20140607: android 4.4.3
20140627: android 4.4.4
Install:
* Read this
* To safe start with stock, boot at least once to stock ( you can ignore this step, but you might have issues)
* Use my latest TWRP.
* Factory reset( you may skip this, but dont report bugs)
* Install zip
* Enjoy
Issues:
If you have issue, please repeat installing steps, but start with flash stock with odin, and boot once with stock.
No sound with skype, no bt call sound. (skype fix ) Fix
Capture picture and video has fixed rotation.
Video recording may crash with default (only?) app
Gps works, readthis fix
Gmaps fix or install this
Gmaps will be remove from the rom, you must install from store.
Tell me
addons:
Face unlock support: http://dualhoki.vim.hu/bubor/dev/faceunlock.zip
Swap internal external sd: http://dualhoki.vim.hu/bubor/dev/change-fstab.zip ( it replaces fstab.n1, it should work with all KK)
reserved
Other tegra 2 base phone:
samsung galaxy R : https://github.com/Grarak/android_device_samsung_i9103
moto xoom: https://github.com/Schischu/android_device_moto_wingray
lg p990: https://github.com/p990-slimrom/android_device_lge_p990
Tonyp's gapps: https://github.com/tonyp/android_vendor_google
Other tegra 2 repos:
https://github.com/p990-dev
Credits and thanks:
* Grarak
* Schischu
* Tonyp
* kick buttowski
* Adam77Root
* yohan4ws
* gtmaster303
* The-Covenant team
* dman3285
* thegreatergood
* spyke555
Manifest:
<?xml version="1.0" encoding="UTF-8"?>
<manifest>
<project name="CyanogenMod/android_hardware_samsung" path="hardware/samsung" remote="github" revision="cm-11.0" />
<project name="CyanogenMod/android_packages_apps_SamsungServiceMode" path="packages/apps/SamsungServiceMode" remote="github" revision="cm-11.0" />
<project name="buborh/kernel_samsung_i927" path="kernel/samsung/i927" remote="github" revision="stock" />
<project name="buborh/android_vendor_samsung_i927" path="vendor/samsung/i927" remote="github" revision="omni" />
<project name="buborh/android_device_samsung_i927" path="device/samsung/i927" remote="github" revision="cm11" />
<project name="tonyp/android_vendor_google" path="vendor/google" remote="github" revision="cm-11.0" />
</manifest>
Wow great work. I'm guessing the bug list is similar to cm10?
Sent from my Galaxy S Relay
bubor said:
Cyanogenmod 11.0 alpha
Download:
http://dualhoki.vim.hu/bubor/dev/11.0/
http://rpi.bubor.hu/bubor/dev/11.0/
Changelog:
Just first release
Install:
* Use my latest TWRP.
* Factory reset( you may skip this, but dont report bugs)
* Install zip
* Enjoy
Thanks :good::laugh:
Issues:
No sound with skype, no bt call sound.
Tell me
Click to expand...
Click to collapse
Yes Downloads and Testing.
Thanks :good: :laugh:
Bubor your awesome thanks for all your work! So far all basic functions work perfectly! I knew you could get it going!
Also: if you want an separate wallpaper for lock screen use xposed and gravity box
Working perfect totally like 4.3.1 ROM nice work.
Sent from my SGH-I927 using Tapatalk
I can't believe my eyes...
Good work bubor. Amazing. The fact that this even boots is incredible.
Can we use ART runtime safely?
bubor how come this rom does not have google text too speech or talkback. Can you please include in the next release of the rom
I cant get talkback to come up once I wiped cashe an did factory reset, and then to go past cm screen, so I had to have some one help me.
So can you plese include in your builds of rom the talkback an the google text to speech so I wont hav to grab them from the latest kit kat packages which I had to do with sighted assistance.
If you want other blind programmers to test your roms include the accessibilitiy packages so they can access them independtly.
just wanted to let you know.
So far so good with the rom after I got past the issues with talkback and google text to speech not being there.
everything so far is working for me to with AT&T Glide.
mrk2815 said:
bubor how come this rom does not have google text too speech or talkback. Can you please include in the next release of the rom
I cant get talkback to come up once I wiped cashe an did factory reset, and then to go past cm screen, so I had to have some one help me.
So can you plese include in your builds of rom the talkback an the google text to speech so I wont hav to grab them from the latest kit kat packages which I had to do with sighted assistance.
If you want other blind programmers to test your roms include the accessibilitiy packages so they can access them independtly.
just wanted to let you know.
So far so good with the rom after I got past the issues with talkback and google text to speech not being there.
everything so far is working for me to with AT&T Glide.
Click to expand...
Click to collapse
I wont. You must install from store.
i thik i found the solution ot google now ot working and voice search as well. but need ot test some more and will report. thanks for the build bubor.
---------- Post added at 12:46 AM ---------- Previous post was at 12:44 AM ----------
also would be possible to use the telsa fix from cm 10.2 in cm 11. Just wondering for skype fix . I will try to do some research on the blue tooth matter. i think i have a friend who has more knowledge about android and linix and he will se how he can help you out.
Thanks bubor
Can you create a memory swap for this Rom, please?
I'm using this Rom and checking it, it seems be another great work of you
Update
Camera has problem witch cause to fc camera(in second run) and I should restart.
I don't know it is a cyanogen problem or not.I only reported it
Sent from my SGH-I927 using Tapatalk 4
what do you mean about a memory swap thing. I don't understand. both the internal and external storage drives work on my gldie. Using twrp recovery as bubor recommended, I hadissues with getting up an running but after hat, I am looking for the issues that I was facing on the previous rom and trying ot replicate them a well as get this one as stable as possible like the previous cm roms wer from bubor. Thanks for the great work so far bubor. With great persistence you got he sucker up and running compared to the Omni one that you wer building up on.
he meant swaping the extrnel sd to internal and vice versa
Really its an alpha version? Its very stable!!! Thank you bubor for yor work
Sent from my SGH-I927 using XDA Premium 4 mobile app
Wifi
Dear Bubor
The only problem I have seen in version 20131229, is that the wifi is not activated. The full wipe installation. I have tried multiple ways to make it functional but not active.
I return to the first published version CM-11 is very stable.
Thanks for having the Glide Live :good:
I can confirm WiFi can't be enabled rolled back as well
Sorry if you wanted a logcat :/
No wifi here either, noticed this in the logcat:
I/wpa_supplicant( 2102): rfkill: Cannot open RFKILL control device
I also noticed there's a missing /sys/class/net/wlan0 entry that's present in CM10.
Smells like a kernel issue?
Major GSM call issues
I'm can make GSM call, but can't even hang up this call - UI simply not appears.
Logcat of outgoing call:
Code:
I/ActivityManager( 2117): Timeline: Activity_launch_request id:com.android.phone time:225405
I/ActivityManager( 501): START u0 {act=android.intent.action.CALL_PRIVILEGED dat=tel:xxxx flg=0x10000000 cmp=com.android.phone/.PrivilegedOutgoingCallBroadcaster (has extras)} from pid 2117
E/gralloc ( 114): NvGrAllocScratchSet: NvGrAllocInternal failed
E/gralloc ( 114): NvGrAllocScratchSet: NvGrAllocInternal failed
E/gralloc ( 114): NvGrAllocScratchSet: NvGrAllocInternal failed
W/InputMethodManagerService( 501): Starting input on non-focused client [email protected] (uid=10005 pid=2117)
D/CallGatewayManager( 847): checkAndCopyPhoneProviderExtras: some or all extras are missing.
D/libEGL ( 847): loaded /system/lib/egl/libEGL_tegra.so
D/libEGL ( 847): loaded /system/lib/egl/libGLESv1_CM_tegra.so
D/libEGL ( 847): loaded /system/lib/egl/libGLESv2_tegra.so
D/OpenGLRenderer( 847): Enabling debug mode 0
W/IInputConnectionWrapper( 2117): showStatusIcon on inactive InputConnection
W/SurfaceFlinger( 114): couldn't log to binary event log: overflow.
E/gralloc ( 114): NvGrAllocScratchSet: NvGrAllocInternal failed
D/CallGatewayManager( 847): checkAndCopyPhoneProviderExtras: some or all extras are missing.
I/ActivityManager( 847): Timeline: Activity_launch_request id:com.android.phone time:225916
I/ActivityManager( 501): START u0 {act=com.android.phone.SIP_SELECT_PHONE dat=tel:xxxx flg=0x10000000 cmp=com.android.phone/.SipCallOptionHandler (has extras)} from pid 847
E/gralloc ( 114): NvGrAllocScratchSet: NvGrAllocInternal failed
D/CallController( 847): placeCall()... intent = Intent { act=android.intent.action.CALL dat=tel:xxxx (has extras) }
D/PhoneUtils( 847): placeCall()... number: xxxx, GW: null, emergency? false
I/MediaFocusControl( 501): AudioFocus requestAudioFocus() from AudioFocus_For_Phone_Ring_And_Calls
D/AudioHardwareInterface( 456): setMode(IN_CALL)
D/AudioHardware( 456): AudioHardware pcm playback is going to standby.
D/AudioHardware( 456): closePcmOut_l() mPcmOpenCnt: 1
D/AudioHardware( 456): openPcmOut_l() mPcmOpenCnt: 0
D/AudioHardware( 456): ### setVoiceVolume_l
D/AudioHardware( 456): ### route(2) call volume(0.800000)
D/AudioHardware( 456): ### speaker call volume
D/AudioHardware( 456): AudioHardware pcm playback is exiting standby.
D/AudioHardware( 456): openPcmOut_l() mPcmOpenCnt: 1
D/AudioHardware( 456): AudioStreamOutALSA::setParameters() routing=1
D/AudioHardware( 456): ### incall mode route (1)
D/AudioHardware( 456): ### incall mode earpiece route
D/MobileDataStateTracker( 501): default: Broadcast received: android.intent.action.ANY_DATA_STATE apnType=default
D/MobileDataStateTracker( 501): default: Received state=SUSPENDED, old=CONNECTED, reason=2GVoiceCallStarted
D/MobileDataStateTracker( 501): default: setDetailed state, old =CONNECTED and new state=SUSPENDED
D/ConnectivityService( 501): ConnectivityChange for mobile: SUSPENDED/SUSPENDED
D/ConnectivityService( 501): tryFailover: set mActiveDefaultNetwork=-1, prevNetType=0
D/ConnectivityService( 501): Attempting to switch to wifi
D/ConnectivityService( 501): Attempting to switch to BLUETOOTH_TETHER
D/MobileDataStateTracker( 501): fota: Broadcast received: android.intent.action.ANY_DATA_STATE apnType=fota
D/MobileDataStateTracker( 501): fota: Received state=DISCONNECTED, old=DISCONNECTED, reason=2GVoiceCallStarted
D/NetUtils( 501): android_net_utils_resetConnections in env=0x52769ef8 clazz=0x74000001 iface=rmnet0 mask=0x3
D/ConnectivityService( 501): resetConnections(rmnet0, 3)
D/MobileDataStateTracker( 501): dun: Broadcast received: android.intent.action.ANY_DATA_STATE apnType=dun
D/MobileDataStateTracker( 501): dun: Received state=DISCONNECTED, old=DISCONNECTED, reason=2GVoiceCallStarted
D/MobileDataStateTracker( 501): supl: Broadcast received: android.intent.action.ANY_DATA_STATE apnType=supl
D/MobileDataStateTracker( 501): supl: Received state=DISCONNECTED, old=DISCONNECTED, reason=2GVoiceCallStarted
D/MobileDataStateTracker( 501): hipri: Broadcast received: android.intent.action.ANY_DATA_STATE apnType=hipri
D/MobileDataStateTracker( 501): hipri: Received state=DISCONNECTED, old=DISCONNECTED, reason=2GVoiceCallStarted
D/MobileDataStateTracker( 501): ims: Broadcast received: android.intent.action.ANY_DATA_STATE apnType=ims
D/MobileDataStateTracker( 501): ims: Received state=DISCONNECTED, old=DISCONNECTED, reason=2GVoiceCallStarted
D/MobileDataStateTracker( 501): mms: Broadcast received: android.intent.action.ANY_DATA_STATE apnType=mms
D/MobileDataStateTracker( 501): mms: Received state=DISCONNECTED, old=DISCONNECTED, reason=2GVoiceCallStarted
D/MobileDataStateTracker( 501): cbs: Broadcast received: android.intent.action.ANY_DATA_STATE apnType=cbs
D/MobileDataStateTracker( 501): cbs: Received state=DISCONNECTED, old=DISCONNECTED, reason=2GVoiceCallStarted
D/Nat464Xlat( 501): requiresClat: netType=0, hasIPv4Address=true
D/ConnectivityService( 501): handleInetConditionChange: no active default network - ignore
D/MobileDataStateTracker( 501): default: setPolicyDataEnable(enabled=true)
I/ActivityManager( 501): Timeline: Activity_windows_visible id: ActivityRecord{42d3f8e0 u0 com.android.phone/.PrivilegedOutgoingCallBroadcaster t7} time:226282
E/gralloc ( 114): NvGrAllocScratchSet: NvGrAllocInternal failed
D/MobileDataStateTracker( 501): default: setPolicyDataEnable(enabled=true)
E/gralloc ( 114): NvGrAllocScratchSet: NvGrAllocInternal failed
I/CallModeler( 847): onPhoneStateChanged:
E/gralloc ( 114): NvGrAllocScratchSet: NvGrAllocInternal failed
W/RejectWithTextMessageManager( 847): allowRespondViaSmsForCall: ringingCall not ringing! state = 5
W/CallHandlerServiceProxy( 847): Default call handler service not found.
W/CallHandlerServiceProxy( 847): InCallUI Connection failed. Enqueuing delayed retry for 2000 ms. retries(0)
D/PhoneStatusBar( 673): disable: < expand icons ALERTS* ticker system_info back home recent clock search >
E/gralloc ( 114): NvGrAllocScratchSet: NvGrAllocInternal failed
E/BluetoothPhoneService( 847): Could not get a handle on Connection object for the call
I/CallModeler( 847): onPhoneStateChanged:
W/RejectWithTextMessageManager( 847): allowRespondViaSmsForCall: ringingCall not ringing! state = 5
W/CallHandlerServiceProxy( 847): Default call handler service not found.
W/CallHandlerServiceProxy( 847): InCallUI Connection failed. Enqueuing delayed retry for 2000 ms. retries(0)
E/BluetoothPhoneService( 847): Could not get a handle on Connection object for the call
E/gralloc ( 114): NvGrAllocScratchSet: NvGrAllocInternal failed
I/ActivityManager( 501): Displayed com.android.phone/.SipCallOptionHandler: +623ms (total +1s18ms)
I/ActivityManager( 501): Timeline: Activity_windows_visible id: ActivityRecord{43570c50 u0 com.android.phone/.SipCallOptionHandler t7} time:226547
I/ActivityManager( 847): Timeline: Activity_idle id: [email protected] time:226553
I/ActivityManager( 847): Timeline: Activity_idle id: [email protected] time:226556
E/gralloc ( 114): NvGrAllocScratchSet: NvGrAllocInternal failed
E/gralloc ( 114): NvGrAllocScratchSet: NvGrAllocInternal failed
E/gralloc ( 114): NvGrAllocScratchSet: NvGrAllocInternal failed
E/gralloc ( 114): NvGrAllocScratchSet: NvGrAllocInternal failed
E/gralloc ( 114): NvGrAllocScratchSet: NvGrAllocInternal failed
D/SettingsProvider( 501): User 0 external modification to /data/data/com.android.providers.settings/databases/settings.db; event=2
D/SettingsProvider( 501): User 0 updating our caches for /data/data/com.android.providers.settings/databases/settings.db
D/AudioHardware( 456): AudioHardware pcm playback is going to standby.
D/AudioHardware( 456): closePcmOut_l() mPcmOpenCnt: 2
E/gralloc ( 114): NvGrAllocScratchSet: NvGrAllocInternal failed
E/gralloc ( 114): NvGrAllocScratchSet: NvGrAllocInternal failed
I/CallModeler( 847): onPhoneStateChanged:
W/RejectWithTextMessageManager( 847): allowRespondViaSmsForCall: ringingCall not ringing! state = 5
W/CallHandlerServiceProxy( 847): Default call handler service not found.
W/CallHandlerServiceProxy( 847): InCallUI Connection failed. Enqueuing delayed retry for 2000 ms. retries(0)
E/gralloc ( 114): NvGrAllocScratchSet: NvGrAllocInternal failed
E/BluetoothPhoneService( 847): Could not get a handle on Connection object for the call
E/gralloc ( 114): NvGrAllocScratchSet: NvGrAllocInternal failed
E/gralloc ( 114): NvGrAllocScratchSet: NvGrAllocInternal failed
E/gralloc ( 114): NvGrAllocScratchSet: NvGrAllocInternal failed
E/gralloc ( 114): NvGrAllocScratchSet: NvGrAllocInternal failed
E/gralloc ( 114): NvGrAllocScratchSet: NvGrAllocInternal failed
E/gralloc ( 114): NvGrAllocScratchSet: NvGrAllocInternal failed
E/gralloc ( 114): NvGrAllocScratchSet: NvGrAllocInternal failed
E/gralloc ( 114): NvGrAllocScratchSet: NvGrAllocInternal failed
E/gralloc ( 114): NvGrAllocScratchSet: NvGrAllocInternal failed
E/gralloc ( 114): NvGrAllocScratchSet: NvGrAllocInternal failed
I/ActivityManager( 2117): Timeline: Activity_idle id: [email protected] time:228276
I/CallHandlerServiceProxy( 847): Retrying connection: 1
W/CallHandlerServiceProxy( 847): Default call handler service not found.
W/CallHandlerServiceProxy( 847): InCallUI Connection failed. Enqueuing delayed retry for 2000 ms. retries(1)
I/ActivityManager( 501): Timeline: Activity_windows_visible id: ActivityRecord{4233a7a8 u0 com.google.android.dialer/.extensions.GoogleDialtactsActivity t4} time:229021
E/gralloc ( 114): NvGrAllocScratchSet: NvGrAllocInternal failed
D/Tethering( 501): MasterInitialState.processMessage what=3
D/CaptivePortalTracker( 501): NoActiveNetworkState{ when=-3ms what=1 obj=NetworkInfo: type: mobile[EDGE], state: SUSPENDED/SUSPENDED, reason: 2GVoiceCallStarted, extra: internet, roaming: false, failover: false, isAvailable: false, isConnectedToProvisioningNetwork: false target=com.android.internal.util.StateMachine$SmHandler }
D/CaptivePortalTracker( 501): NoActiveNetworkState not a wifi connectivity change, ignore
I/UpdateCheckReceiver( 1992): Got connectivity change, has connection: false
D/GCM ( 1091): GcmService start Intent { act=android.net.conn.CONNECTIVITY_CHANGE flg=0x4000010 cmp=com.google.android.gms/.gcm.GcmService (has extras) } android.net.conn.CONNECTIVITY_CHANGE
D/MobileConnectivityChangeReceiver( 2015): onReceive Intent { act=android.net.conn.CONNECTIVITY_CHANGE flg=0x4000010 cmp=com.google.android.setupwizard/.MobileConnectivityChangeReceiver (has extras) }
D/MobileConnectivityChangeReceiver( 2015): onReceive CONNECTIVITY_CHANGE networkType=0
D/MobileConnectivityChangeReceiver( 2015): onReceive CONNECTIVITY_CHANGE: not connected|connecting, ignore
D/CallModeler( 847): SS Notification: [email protected]488 mobile originated code: 1 index: 0 ""
I/CallHandlerServiceProxy( 847): Retrying connection: 2
W/CallHandlerServiceProxy( 847): Default call handler service not found.
W/CallHandlerServiceProxy( 847): InCallUI Connection failed. Enqueuing delayed retry for 2000 ms. retries(2)
I/CallModeler( 847): onPhoneStateChanged:
W/RejectWithTextMessageManager( 847): allowRespondViaSmsForCall: ringingCall not ringing! state = 2
W/CallHandlerServiceProxy( 847): Default call handler service not found.
W/CallHandlerServiceProxy( 847): InCallUI Connection failed. Enqueuing delayed retry for 2000 ms. retries(2)
E/BluetoothPhoneService( 847): Could not get a handle on Connection object for the call
I/CallHandlerServiceProxy( 847): Retrying connection: 3
W/CallHandlerServiceProxy( 847): Default call handler service not found.
W/CallHandlerServiceProxy( 847): InCallUI Connection failed. Enqueuing delayed retry for 2000 ms. retries(3)
I/CallHandlerServiceProxy( 847): Retrying connection: 4
W/CallHandlerServiceProxy( 847): Default call handler service not found.
W/CallHandlerServiceProxy( 847): InCallUI Connection failed. Enqueuing delayed retry for 2000 ms. retries(4)
I/CallHandlerServiceProxy( 847): Retrying connection: 5
W/CallHandlerServiceProxy( 847): Default call handler service not found.
W/CallHandlerServiceProxy( 847): InCallUI Connection failed. Enqueuing delayed retry for 2000 ms. retries(5)
D/ConnectivityService( 501): handleInetConditionChange: no active default network - ignore
I/CallHandlerServiceProxy( 847): Retrying connection: 6
W/CallHandlerServiceProxy( 847): Default call handler service not found.
W/CallHandlerServiceProxy( 847): InCallUI Connection failed. Enqueuing delayed retry for 30000 ms. retries(6)
Also it's nothing happened after I'm click "Return to call in progress".
On incoming call phone is ringing, but it's impossible to answer or reject call because no UI on screen, but after caller's hangup instantly appears "missed call" notification.
Here is incoming call logcat:
Code:
I/CheckinTask( 834): Checkin success: https://android.clients.google.com/checkin (1 requests sent)
D/ConnectivityService( 468): [CheckMp] isMobileOk: hostnameVerify retVal=true hostname=173.194.32.135 orgUriHost=clients3.google.com
D/ConnectivityService( 468): [CheckMp] isMobileOk: headers={null=[HTTP/1.1 204 No Content], Connection=[close], Content-Length=[0], Content-Type=[text/html; charset=UTF-8], Date=[Mon, 30 Dec 2013 18:21:10 GMT], Server=[GFE/2.0], X-Android-Received-Millis=[1388427670569], X-Android-Response-Source=[NETWORK 204], X-Android-Selected-Transport=[http/1.1], X-Android-Sent-Millis=[1388427669770]}
D/ConnectivityService( 468): [CheckMp] isMobileOk: X got expected responseCode=204 result=1
D/ConnectivityService( 468): [CheckMp] isMobileOk: F stop hipri
D/MobileDataStateTracker( 468): default: setEnableFailFastMobileData(enabled=0)
D/ConnectivityService( 468): stopUsingNetworkFeature: teardown net 0: enableHIPRI
D/MobileDataStateTracker( 468): hipri: Broadcast received: android.intent.action.ANY_DATA_STATE apnType=hipri
D/MobileDataStateTracker( 468): hipri: Received state=DISCONNECTED, old=CONNECTED, reason=dataDisabled
D/MobileDataStateTracker( 468): hipri: setDetailed state, old =CONNECTED and new state=DISCONNECTED
D/ConnectivityService( 468): ConnectivityChange for mobile_hipri: DISCONNECTED/DISCONNECTED
D/Nat464Xlat( 468): requiresClat: netType=5, hasIPv4Address=true
D/MobileDataStateTracker( 468): default: setPolicyDataEnable(enabled=true)
D/MobileDataStateTracker( 468): default: setPolicyDataEnable(enabled=true)
D/MobileDataStateTracker( 468): default: setPolicyDataEnable(enabled=true)
D/MobileDataStateTracker( 468): default: setPolicyDataEnable(enabled=true)
D/CaptivePortalTracker( 468): NoActiveNetworkState{ when=-1ms what=1 obj=NetworkInfo: type: mobile_hipri[EDGE], state: DISCONNECTED/DISCONNECTED, reason: dataDisabled, extra: internet, roaming: false, failover: false, isAvailable: true, isConnectedToProvisioningNetwork: false target=com.android.internal.util.StateMachine$SmHandler }
D/CaptivePortalTracker( 468): NoActiveNetworkState not a wifi connectivity change, ignore
D/Tethering( 468): MasterInitialState.processMessage what=3
D/CaptivePortalTracker( 468): NoActiveNetworkState{ when=0 what=1 obj=NetworkInfo: type: mobile[EDGE], state: CONNECTED/CONNECTED, reason: dataAttached, extra: internet, roaming: false, failover: false, isAvailable: true, isConnectedToProvisioningNetwork: false target=com.android.internal.util.StateMachine$SmHandler }
D/CaptivePortalTracker( 468): NoActiveNetworkState not a wifi connectivity change, ignore
D/Tethering( 468): MasterInitialState.processMessage what=3
I/UpdateCheckReceiver( 1562): Got connectivity change, has connection: true
I/UpdateCheckReceiver( 1562): Scheduling future, repeating update checks.
D/GCM ( 834): GcmService start Intent { act=android.net.conn.CONNECTIVITY_CHANGE flg=0x4000010 cmp=com.google.android.gms/.gcm.GcmService (has extras) } android.net.conn.CONNECTIVITY_CHANGE
D/CMStats ( 857): Waiting for next sync : 23 hours
D/MobileConnectivityChangeReceiver( 1626): onReceive Intent { act=android.net.conn.CONNECTIVITY_CHANGE flg=0x4000010 cmp=com.google.android.setupwizard/.MobileConnectivityChangeReceiver (has extras) }
D/MobileConnectivityChangeReceiver( 1626): onReceive CONNECTIVITY_CHANGE networkType=5
I/UpdateCheckReceiver( 1562): Got connectivity change, has connection: true
I/UpdateCheckReceiver( 1562): Scheduling future, repeating update checks.
D/GCM ( 834): GcmService start Intent { act=android.net.conn.CONNECTIVITY_CHANGE flg=0x4000010 cmp=com.google.android.gms/.gcm.GcmService (has extras) } android.net.conn.CONNECTIVITY_CHANGE
D/CMStats ( 857): Waiting for next sync : 23 hours
D/MobileConnectivityChangeReceiver( 1626): onReceive Intent { act=android.net.conn.CONNECTIVITY_CHANGE flg=0x4000010 cmp=com.google.android.setupwizard/.MobileConnectivityChangeReceiver (has extras) }
D/MobileConnectivityChangeReceiver( 1626): onReceive CONNECTIVITY_CHANGE networkType=0
D/MobileConnectivityChangeReceiver( 1626): onReceive CONNECTIVITY_CHANGE: checkConnection
D/CheckConnectionTask( 1626): doInBackground: url=http://clients3.google.com/generate_204
I/ActivityManager( 468): Delay finish: com.google.android.gsf/.settings.GoogleLocationSettings$LocationSettingsChangedListener
I/ActivityManager( 468): Resuming delayed broadcast
D/MobileDataStateTracker( 468): default: Broadcast received: android.intent.action.ANY_DATA_STATE apnType=default
D/MobileDataStateTracker( 468): default: Received state=SUSPENDED, old=CONNECTED, reason=2GVoiceCallStarted
D/MobileDataStateTracker( 468): default: setDetailed state, old =CONNECTED and new state=SUSPENDED
D/ConnectivityService( 468): ConnectivityChange for mobile: SUSPENDED/SUSPENDED
D/ConnectivityService( 468): tryFailover: set mActiveDefaultNetwork=-1, prevNetType=0
D/ConnectivityService( 468): Attempting to switch to wifi
D/ConnectivityService( 468): Attempting to switch to BLUETOOTH_TETHER
D/MobileDataStateTracker( 468): fota: Broadcast received: android.intent.action.ANY_DATA_STATE apnType=fota
D/MobileDataStateTracker( 468): fota: Received state=DISCONNECTED, old=DISCONNECTED, reason=2GVoiceCallStarted
D/MobileDataStateTracker( 468): dun: Broadcast received: android.intent.action.ANY_DATA_STATE apnType=dun
D/NetUtils( 468): android_net_utils_resetConnections in env=0x52753f58 clazz=0xe5100001 iface=rmnet0 mask=0x3
D/ConnectivityService( 468): resetConnections(rmnet0, 3)
D/MobileDataStateTracker( 468): dun: Received state=DISCONNECTED, old=DISCONNECTED, reason=2GVoiceCallStarted
D/MobileDataStateTracker( 468): supl: Broadcast received: android.intent.action.ANY_DATA_STATE apnType=supl
D/MobileDataStateTracker( 468): supl: Received state=DISCONNECTED, old=DISCONNECTED, reason=2GVoiceCallStarted
D/MobileDataStateTracker( 468): hipri: Broadcast received: android.intent.action.ANY_DATA_STATE apnType=hipri
D/MobileDataStateTracker( 468): hipri: Received state=DISCONNECTED, old=DISCONNECTED, reason=2GVoiceCallStarted
D/MobileDataStateTracker( 468): ims: Broadcast received: android.intent.action.ANY_DATA_STATE apnType=ims
D/MobileDataStateTracker( 468): ims: Received state=DISCONNECTED, old=DISCONNECTED, reason=2GVoiceCallStarted
D/MobileDataStateTracker( 468): mms: Broadcast received: android.intent.action.ANY_DATA_STATE apnType=mms
D/CallNotifier( 649): RINGING... (new)
D/CallNotifier( 649): onNewRingingConnection(): state = RINGING, conn = { incoming: true state: INCOMING post dial state: NOT_STARTED }
V/BlacklistProvider( 649): Query uri=content://blacklist/bynumber/%2B79806336836, match=2
D/MobileDataStateTracker( 468): mms: Received state=DISCONNECTED, old=DISCONNECTED, reason=2GVoiceCallStarted
D/MobileDataStateTracker( 468): cbs: Broadcast received: android.intent.action.ANY_DATA_STATE apnType=cbs
D/MobileDataStateTracker( 468): cbs: Received state=DISCONNECTED, old=DISCONNECTED, reason=2GVoiceCallStarted
I/CallModeler( 649): onPhoneStateChanged:
D/PhoneStatusBar( 522): disable: < expand icons ALERTS* ticker system_info back home recent clock search >
D/CallNotifier( 649): SignalInfoTonePlayer.run(toneId = 98)...
D/CheckConnectionTask( 1626): doInBackground: IOException retVal=false e=
D/CheckConnectionTask( 1626): onPostExecute connected=false
D/CheckConnectionTask( 1626): onPostExecute set preference connected=false
I/CallModeler( 649): onNewRingingConnection
I/PackageManager( 468): Action: "android.intent.action.SENDTO"
I/PackageManager( 468): Category: "android.intent.category.DEFAULT"
I/PackageManager( 468): Scheme: "sms"
I/PackageManager( 468): Adding preferred activity ComponentInfo{com.android.mms/com.android.mms.ui.ComposeMessageActivity} for user 0 :
D/AwesomePlayer( 438): Before reset_l
D/AwesomePlayer( 438): printFileName fd(21) -> /system/media/audio/ringtones/Orion.ogg
I/PackageManager( 468): Action: "android.intent.action.SENDTO"
I/PackageManager( 468): Category: "android.intent.category.DEFAULT"
I/PackageManager( 468): Scheme: "smsto"
I/PackageManager( 468): Adding preferred activity ComponentInfo{com.android.mms/com.android.mms.ui.ComposeMessageActivity} for user 0 :
I/PackageManager( 468): Action: "android.intent.action.SENDTO"
I/PackageManager( 468): Category: "android.intent.category.DEFAULT"
I/PackageManager( 468): Scheme: "mms"
I/PackageManager( 468): Adding preferred activity ComponentInfo{com.android.mms/com.android.mms.ui.ComposeMessageActivity} for user 0 :
D/Nat464Xlat( 468): requiresClat: netType=0, hasIPv4Address=true
I/PackageManager( 468): Action: "android.intent.action.SENDTO"
I/PackageManager( 468): Category: "android.intent.category.DEFAULT"
I/PackageManager( 468): Scheme: "mmsto"
I/PackageManager( 468): Adding preferred activity ComponentInfo{com.android.mms/com.android.mms.ui.ComposeMessageActivity} for user 0 :
D/MobileDataStateTracker( 468): default: setPolicyDataEnable(enabled=true)
W/CallHandlerServiceProxy( 649): Default call handler service not found.
W/CallHandlerServiceProxy( 649): InCallUI Connection failed. Enqueuing delayed retry for 2000 ms. retries(0)
D/Ringtone( 649): Successfully created local player
I/MediaFocusControl( 468): AudioFocus requestAudioFocus() from AudioFocus_For_Phone_Ring_And_Calls
D/AudioHardwareInterface( 438): setMode(RINGTONE)
I/OMXNodeInstance( 438): OMX_FreeBuffer for buffer header 0x40034a28 successful
I/OMXNodeInstance( 438): OMX_FreeBuffer for buffer header 0x40034c70 successful
I/OMXNodeInstance( 438): OMX_FreeBuffer for buffer header 0x40034db0 successful
I/OMXNodeInstance( 438): OMX_FreeBuffer for buffer header 0x40034ed8 successful
E/MediaPlayer( 649): Should have subtitle controller already set
D/AudioHardware( 438): AudioHardware pcm playback is exiting standby.
D/AudioHardware( 438): openPcmOut_l() mPcmOpenCnt: 0
D/ConnectivityService( 468): [CheckMp] isMobileOk: X result=1
D/ConnectivityService( 468): [CheckMp] onPostExecute: result=1
D/ConnectivityService( 468): CheckMp.onComplete: result=1
D/ConnectivityService( 468): CheckMp.onComplete: ignore, connected or no connection
D/MobileDataStateTracker( 468): default: setPolicyDataEnable(enabled=true)
I/CallHandlerServiceProxy( 649): Retrying connection: 1
W/CallHandlerServiceProxy( 649): Default call handler service not found.
W/CallHandlerServiceProxy( 649): InCallUI Connection failed. Enqueuing delayed retry for 2000 ms. retries(1)
D/CaptivePortalTracker( 468): NoActiveNetworkState{ when=-1ms what=1 obj=NetworkInfo: type: mobile[EDGE], state: SUSPENDED/SUSPENDED, reason: 2GVoiceCallStarted, extra: internet, roaming: false, failover: false, isAvailable: false, isConnectedToProvisioningNetwork: false target=com.android.internal.util.StateMachine$SmHandler }
D/CaptivePortalTracker( 468): NoActiveNetworkState not a wifi connectivity change, ignore
D/Tethering( 468): MasterInitialState.processMessage what=3
I/UpdateCheckReceiver( 1562): Got connectivity change, has connection: false
D/GCM ( 834): GcmService start Intent { act=android.net.conn.CONNECTIVITY_CHANGE flg=0x4000010 cmp=com.google.android.gms/.gcm.GcmService (has extras) } android.net.conn.CONNECTIVITY_CHANGE
D/MobileConnectivityChangeReceiver( 1626): onReceive Intent { act=android.net.conn.CONNECTIVITY_CHANGE flg=0x4000010 cmp=com.google.android.setupwizard/.MobileConnectivityChangeReceiver (has extras) }
D/MobileConnectivityChangeReceiver( 1626): onReceive CONNECTIVITY_CHANGE networkType=0
D/MobileConnectivityChangeReceiver( 1626): onReceive CONNECTIVITY_CHANGE: not connected|connecting, ignore
I/CallHandlerServiceProxy( 649): Retrying connection: 2
W/CallHandlerServiceProxy( 649): Default call handler service not found.
W/CallHandlerServiceProxy( 649): InCallUI Connection failed. Enqueuing delayed retry for 2000 ms. retries(2)
I/CallHandlerServiceProxy( 649): Retrying connection: 3
W/CallHandlerServiceProxy( 649): Default call handler service not found.
W/CallHandlerServiceProxy( 649): InCallUI Connection failed. Enqueuing delayed retry for 2000 ms. retries(3)
It's clean installation of cm-11-20131230-UNOFFICIAL-i927.zip.