Quote:
Originally Posted by vpupkin
If logcat shows something more about camera that just "Camera module not loaded" - just post it in this thread. It will be strarting point.
|
Hi!
Code:
04-21 11:00:18.591 I/CameraService(133): CameraService started (pid=133)
04-21 11:00:18.601 E/HAL (133): load: module=/system/lib/hw/camera.msm7x30.so
04-21 11:00:18.601 E/HAL (133): Cannot load library: link_image[1965]: 133 could not load needed library 'libcamera.so' for 'camera.msm7x30.so' (reloc_library[1314]: 133 cannot locate '_ZN7android7Overlay5setFdEi'...
04-21 11:00:18.601 E/CameraService(133): Could not load camera HAL module
04-21 11:00:48.090 I/talk (911): Refresh the supported camera state
04-21 11:00:48.180 I/talk (911): supported front camera false
04-21 11:00:48.200 I/talk (911): supported front camera false
04-21 11:01:02.494 I/ActivityManager(232): START {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.android.camera/.Camera} from pid 465
04-21 11:01:02.644 I/ActivityManager(232): Start proc com.android.camera for activity com.android.camera/.Camera: pid=1287 uid=10007 gids={1006, 1015}
04-21 11:01:02.824 V/CameraHolder(1287): open camera 0
04-21 11:01:02.824 E/CameraService(133): Camera HAL module not loaded
04-21 11:01:02.824 E/CameraHolder(1287): fail to connect Camera
04-21 11:01:02.824 E/CameraHolder(1287): java.lang.RuntimeException: Fail to connect to camera service
04-21 11:01:02.824 E/CameraHolder(1287): at android.hardware.Camera.native_setup(Native Method)
04-21 11:01:02.824 E/CameraHolder(1287): at android.hardware.Camera.<init>(Camera.java:320)
04-21 11:01:02.824 E/CameraHolder(1287): at android.hardware.Camera.open(Camera.java:280)
04-21 11:01:02.824 E/CameraHolder(1287): at com.android.camera.CameraHolder.open(CameraHolder.java:131)
04-21 11:01:02.824 E/CameraHolder(1287): at com.android.camera.Util.openCamera(Util.java:267)
04-21 11:01:02.824 E/CameraHolder(1287): at com.android.camera.Camera$4.run(Camera.java:1118)
04-21 11:01:02.824 E/CameraHolder(1287): at java.lang.Thread.run(Thread.java:856)
04-21 11:01:03.144 V/camera (1287): surfaceChanged. w=480. h=640
04-21 11:01:03.304 I/ActivityManager(232): Displayed com.android.camera/.Camera: +672ms (total +10s633ms)
Something like this? It's from this kernel.
As you can see, module can't be loaded, because there are missing functions in library 'libcamera.so' (in logcat you can see one, but I bet, there are more).
|