Here I am again, with a guide for compiling your own ROM from source. At the moment, you can compile AOSP using Mac OS Snow Leopard and Ubuntu 64bits.
The following script will allow you to get the proprietary drivers from your phone, download the source itself and compile it. In the end, you'll have recovery.img, system.img, boot.img and userdata.img. I suggest you only flashing the system, boot and userdata, because if you keep the recovery that exists by default, you'll be able to get the official OTA updates.
For Mac OS X Snow Leopard, you'll need to install GIT: http://code.google.com/p/git-osx-installer/
You'll also need to have XCode installed and MacPorts: http://www.macports.org/install.php. XCode you'll find it online at Apple's website or on your Mac's installation DVD. Just make sure you check for updates once you install it, to make sure you are up to date.
After you install MacPorts, you'll need to revert gmake to 3.81, because 3.82 doesn't work for AOSP (for now at least). The problem began when macports updated gmake from 3.81 to 3.82. If you simply did a selfupdate, you can use the simple commands above to reset to gmake 3.81. The more difficult case is seen by anyone who did a fresh install of macports after September 7, 2010 - you'll only have 3.82.
The "InstallingOlderPort" link is fairly generic, but will give you enough clues to resolve this problem. Here are the steps I worked out. Maybe there's a simpler way?
Here's how to downgrade to 3.81:
1. Visit http://trac.macports.org/log/trunk/dports/devel/gmake
2. Click the link that says "@50980" - although it doesn't explicitly say 3.81, this is it
3. Click the link that says "Portfile"
4. Scroll to the bottom and just below "Download in other formats:" click "Original Format"
5. This is subtle but important: If your browser e.g. Chrome renamed it to Portfile.txt, you need to rename it to simply "Portfile"
6. cd to the location of Portfile and $ sudo port install
This should install and configure gmake 3.81, after which:
$ sudo port installed gmake
The following ports are currently installed:
gmake @3.81_0 (active)
gmake @3.82_0
For Ubuntu: sudo apt-get install git
Create a text-only file and place the following content in it. Please edit the SOURCE_FOLDER variable to match to where you want the source code to be stored:
Code:
#!/bin/bash
#Checkout and compile MASTER repositories from source.android.com
SOURCE_FOLDER=/Volumes/AOSP
#Check for Repo
if [ ! -f ~/bin/repo ]
then
cd ~
mkdir bin
curl http://android.git.kernel.org/repo >~/bin/repo
chmod a+x ~/bin/repo
PATH="$HOME/bin:$PATH"
fi
#Create project folder
if [ ! -d $SOURCE_FOLDER ]
then
mkdir $SOURCE_FOLDER
fi
cd $SOURCE_FOLDER
#clean old compiled files, there can be new stuff!
make installclean
make clean
#Get updated source files from AOSP
repo init -u git://android.git.kernel.org/platform/manifest.git -b master
repo sync #update repo's
#extract the proprietary files from Nexus One - connect your phone via USB to the computer
if [ ! -d vendor/htc/passion/proprietary ]
then
cd $SOURCE_FOLDER/device/htc/passion/
./extract-files.sh
fi
#setup compiling environment and build images
cd $SOURCE_FOLDER
. build/envsetup.sh
lunch
make -j4
#get to compiled folder
cd $SOURCE_FOLDER/out/target/product/passion/
echo 'Your files ready for flashing are here:'
ls *.img
In the end, you'll find your files ready to be flashed using fastboot on SOURCE_FOLDER/out/target/product/passion/
If you don't remember where you can get fastboot: http://developer.htc.com/google-io-device.html#s2
To enter fastboot mode on your phone, turn off your phone, press power+trackball until you see a white screen with android skaters on the bottom.
How to use fastboot:
Code:
fastboot flash boot boot.img; fastboot flash system system.img; fastboot flash userdata userdata.img
There are some things that need to be fixed on the source code to have an almost bug free AOSP and I'll add them here later as I don't remember them all from my head.
For those who don't want to go through this trouble, you can flash my own compiled images. There isn't anything else besides the AOSP official code. You can get your contacts, calendar and email using Google's exchange settings:
Where it asks for the domain: google.com\[email protected]
Where it asks for the server: m.google.com
That will bring you push email, contacts and calendar working without any Google Apps required.
[Last update: 6th March 2011]Download it here: http://www.denzilferreira.com/projects/passion-ota-eng.df.zip
----- ADDONS + FIXES FOR LATEST AOSP -----
Facebook Sync + Nexus One build.prop + HD Video Recording: http://forum.xda-developers.com/showpost.php?p=11860795&postcount=93
Fix for Tethering: http://forum.xda-developers.com/showpost.php?p=11808842&postcount=83
Keyboard dictionaries - Thanks to hewitt
I haven't found a better way to add dictionaries to fix predictive typing, but you can pull the dictionaries out of Cyanogenmod and slip them into LatinIME. It's absolutely ridiculous that these files do not already exist in the AOSP.
Code:
git clone https://github.com/CyanogenMod/android_vendor_cyanogen.git
Copy any of the raw language directories from 'android_vendor_cyanogen/overlay/common/packages/inputmethods/LatinIME/java/res/'
(such as raw-en for English or raw-de for German) to your AOSP repo in
'/packages/inputmethods/LatinIME/java/res/'.
Rebuild LatinIME and push it to your phone, then set language with Settings->Language & Keyboard->Android Keyboard->Input Languages. Just select your preferred languages, which should indicate below in small text, "Dictionary available".
vvvvvvvvvvvvv OLD FIXES BELOW, FOR HISTORICAL PURPOSES vvvvvvvvvvvvvvv
{BELOW NOT NEEDED ANYMORE SINCE 2.3.3 OTA DRIVERS}
----- FIXES IN THE SOURCE CODE TO GET IT TO COMPILE AND WORK PROPERLY ------
To fix the RGB_565 problem
Go to frameworks/base/services/surfaceflinger/Android.mk and add:
Code:
ifeq ($(BOARD_NO_RGBX_8888), true)
LOCAL_CFLAGS += -DNO_RGBX_8888
endif
then add BOARD_NO_RGBX_8888 := true to your device vendor board config file
To fix the camera
https://github.com/CyanogenMod/andr...8/services/camera/libcameraservice/Android.mk
and
https://github.com/CyanogenMod/andr...ces/camera/libcameraservice/CameraService.cpp
Then add to the device vendor board config file:
BOARD_USE_FROYO_LIBCAMERA := true
Did you have to make any changes to get the camera working? I pulled the 2.3.1 branch and had to make changes just to get the camera working. How about the camcorder? What ROM/version were you running when you ran the extract_files.sh?
Thanks
clarksonator said:
Did you have to make any changes to get the camera working? I pulled the 2.3.1 branch and had to make changes just to get the camera working. How about the camcorder? What ROM/version were you running when you ran the extract_files.sh?
Thanks
Click to expand...
Click to collapse
I was running the official Froyo 2.2.1, the latest 83D. And yes, I had to make changes to get the camera to work and fix the RGB_565 to RGBA_8888 for the transitions to work properly.
The camcorder doesn't work, it doesn't record a thing, no clue how to fix it yet.
Stupid question, but...will this work on other devices? I'm trying to get into modding and was directed here by overground (from the DInc forums), and see that this is for the N1...which is fine, except that I don't have an N1. If I need to get one, then I'll do that, but I'm just wondering if I just have to make a few modifications here to make this process work for the DInc.
Thanks!
I Get this error
make: *** No rule to make target `installclean'. Stop.
make: *** No rule to make target `clean'. Stop.
./ciao: line 29: repo: command not found
./ciao: line 30: repo: command not found
./ciao: line 35: cd: /Users/luke/Desktop/AOSP/device/htc/passion/: No such file or directory
./ciao: line 36: ./extract-files.sh: No such file or directory
./ciao: line 41: build/envsetup.sh: No such file or directory
./ciao: line 43: lunch: command not found
make: *** No targets specified and no makefile found. Stop.
./ciao: line 47: cd: /Users/luke/Desktop/AOSP/out/target/product/passion/: No such file or directory
Your files ready for flashing are here:
ls: *.img: No such file or directory
Click to expand...
Click to collapse
What dependencies are needed on OSX to compile? (compiler versions and so on), you only mention git here
Thanks for the guide!
Sent from my Nexus One using XDA App
MrNameless said:
I Get this error
Click to expand...
Click to collapse
Hum... apparently it's not finding repo on your system. And also according to the output, it can't find the folder AOSP on your desktop. Change the SOURCE_FOLDER value to ~/Desktop/AOSP if you have that folder there.
Atlas.rouge said:
Stupid question, but...will this work on other devices? I'm trying to get into modding and was directed here by overground (from the DInc forums), and see that this is for the N1...which is fine, except that I don't have an N1. If I need to get one, then I'll do that, but I'm just wondering if I just have to make a few modifications here to make this process work for the DInc.
Thanks!
Click to expand...
Click to collapse
It should work, as long you have the correct vendor files for the Incredible
koudd said:
What dependencies are needed on OSX to compile? (compiler versions and so on), you only mention git here
Click to expand...
Click to collapse
make needs to be 3.81, not 3.82 (the version on MacPorts). I forgot to mention that you'll need macports. I'll update the guide to include it.
dferreira said:
I was running the official Froyo 2.2.1, the latest 83D. And yes, I had to make changes to get the camera to work and fix the RGB_565 to RGBA_8888 for the transitions to work properly.
The camcorder doesn't work, it doesn't record a thing, no clue how to fix it yet.
Click to expand...
Click to collapse
What changes were required to make the camera work and switch to RGBA_8888? I had to enable the CAMERA_STUB to even make it compile.
Also, my OS X 10.6.5 system already has GNU Make 3.81 in /usr/bin/make. Is there something the macports build offers that the built-in doesn't?
dferreira said:
make needs to be 3.81, not 3.82 (the version on MacPorts). I forgot to mention that you'll need macports. I'll update the guide to include it.
Click to expand...
Click to collapse
Yeah, make 3.82 changed enough things that it broke SEVERAL build systems...
But this is an OUTSTANDING Guide! Great Job!
hewitt said:
What changes were required to make the camera work and switch to RGBA_8888? I had to enable the CAMERA_STUB to even make it compile.
Also, my OS X 10.6.5 system already has GNU Make 3.81 in /usr/bin/make. Is there something the macports build offers that the built-in doesn't?
Click to expand...
Click to collapse
To fix the RGB_565 problem
Go to frameworks/base/services/surfaceflinger/Android.mk and add:
Code:
ifeq ($(BOARD_NO_RGBX_8888), true)
LOCAL_CFLAGS += -DNO_RGBX_8888
endif
then add BOARD_NO_RGBX_8888 := true to your device vendor board config file
To fix the camera
https://github.com/CyanogenMod/andr...8/services/camera/libcameraservice/Android.mk
and
https://github.com/CyanogenMod/andr...ces/camera/libcameraservice/CameraService.cpp
Then add to the device vendor board config file:
BOARD_USE_FROYO_LIBCAMERA := true
Excellent. Thank you! Now the compile just gets stuck with qemu.
Code:
host C: emulator <= external/qemu/qemu-char-android.c
external/qemu/qemu-char-android.c: In function ‘qemu_chr_open_pty’:
external/qemu/qemu-char-android.c:1038: warning: implicit declaration of function ‘cfmakeraw’
external/qemu/qemu-char-android.c: In function ‘tty_serial_init’:
external/qemu/qemu-char-android.c:1091: error: ‘B57600’ undeclared (first use in this function)
external/qemu/qemu-char-android.c:1091: error: (Each undeclared identifier is reported only once
external/qemu/qemu-char-android.c:1091: error: for each function it appears in.)
external/qemu/qemu-char-android.c:1092: error: ‘B115200’ undeclared (first use in this function)
external/qemu/qemu-char-android.c:1142: error: ‘CRTSCTS’ undeclared (first use in this function)
external/qemu/qemu-char-android.c: In function ‘unix_process_msgfd’:
external/qemu/qemu-char-android.c:2038: warning: implicit declaration of function ‘CMSG_LEN’
external/qemu/qemu-char-android.c: In function ‘tcp_chr_recv’:
external/qemu/qemu-char-android.c:2060: warning: implicit declaration of function ‘CMSG_SPACE’
make: *** [out/host/darwin-x86/obj/EXECUTABLES/emulator_intermediates/qemu-char-android.o] Error 1
Guess I should just wait a while and sync later? Looks like there are a few qemu commits today.
EDIT: Just renamed qemu's Android.mk file so it would be skipped. AOSP compiles!
After compiling this with your camera fixes, does camera and video recording work or only the camera?
Thanks
clarksonator said:
After compiling this with your camera fixes, does camera and video recording work or only the camera?
Click to expand...
Click to collapse
Only the camera works, not video. The video camera pretends to start working but doesn't actually record anything. If I had to guess, it seems to be a problem with libstagefright, possibly related to the move from opencore.
Code:
V/videocamera( 523): startVideoRecording
V/videocamera( 523): initializeRecorder
V/videocamera( 523): Current camera video filename: /mnt/sdcard/DCIM/Camera/VID_20110106_151902.3gp
I/MediaRecorderJNI( 523): prepare: surface=0x338680 (identity=57)
I/AudioHardwareQSD( 648): Routing audio to Speakerphone
D/AudioHardwareQSD( 648): Switching audio device to
D/AudioHardwareQSD( 648): Speakerphone
D/AudioHardwareQSD( 648): AudioHardware PCM record is going to standby.
E/StagefrightRecorder( 648): Failed to set frame rate to 27 fps. The actual frame rate is 15
F/CameraSource( 648): frameworks/base/media/libstagefright/CameraSource.cpp:152 colorFormatStr != NULL
I/AudioHardwareQSD( 648): Routing audio to Speakerphone
D/AudioHardwareQSD( 648): Switching audio device to
D/AudioHardwareQSD( 648): Speakerphone
D/AudioHardwareQSD( 648): AudioHardware PCM record is going to standby.
I/DEBUG ( 65): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
I/DEBUG ( 65): Build fingerprint: 'unknown'
I/DEBUG ( 65): pid: 648, tid: 689 >>> /system/bin/mediaserver <<<
I/DEBUG ( 65): signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr deadbaad
I/DEBUG ( 65): r0 00000027 r1 deadbaad r2 80000000 r3 00000000
I/DEBUG ( 65): r4 00000001 r5 00000000 r6 40a18c5c r7 000476f0
I/DEBUG ( 65): r8 40a18c5c r9 40a18c7c 10 fffff620 fp 00000000
I/DEBUG ( 65): ip afd465f8 sp 40a18810 lr afd19059 pc afd15b2c cpsr 60000030
I/DEBUG ( 65): d0 203d21207274534e d1 6964656d2f657355
I/DEBUG ( 65): d2 61747362696c2f4c d3 746867697266654c
I/DEBUG ( 65): d4 536172656d61432f d5 70632e656372756f
I/DEBUG ( 65): d6 6f63203235313a70 d7 616d726f46726f6c
I/DEBUG ( 65): d8 0000272a0000020b d9 0000000000000000
I/DEBUG ( 65): d10 0000000000000000 d11 0000000000000000
I/DEBUG ( 65): d12 0000000000000000 d13 0000000000000000
I/DEBUG ( 65): d14 0000000000000000 d15 0000000000000000
I/DEBUG ( 65): d16 0000000000000000 d17 3ff0000000000000
I/DEBUG ( 65): d18 7e37e43c8800759c d19 3fe000000112a880
I/DEBUG ( 65): d20 0000000000000000 d21 0000000000000000
I/DEBUG ( 65): d22 0000000000000000 d23 0000000000000000
I/DEBUG ( 65): d24 0000000000000000 d25 0000000000000000
I/DEBUG ( 65): d26 0000000000000000 d27 0000000000000000
I/DEBUG ( 65): d28 0000000000000000 d29 0000000000000000
I/DEBUG ( 65): d30 0000000000000000 d31 0000000000000000
I/DEBUG ( 65): scr 20000010
I/DEBUG ( 65):
I/DEBUG ( 65): #00 pc 00015b2c /system/lib/libc.so
I/DEBUG ( 65): #01 pc 0000145e /system/lib/liblog.so (__android_log_assert)
I/DEBUG ( 65): #02 pc 0004b52e /system/lib/libstagefright.so (_ZN7android12CameraSourceC1ERKNS_2spINS_6CameraEEE)
I/DEBUG ( 65):
I/DEBUG ( 65): code around pc:
I/DEBUG ( 65): afd15b0c 2c006824 e028d1fb b13368db c064f8df
I/DEBUG ( 65): afd15b1c 44fc2401 4000f8cc 49124798 25002027
I/DEBUG ( 65): afd15b2c f7f57008 2106eb40 ec9cf7f6 460aa901
I/DEBUG ( 65): afd15b3c f04f2006 95015380 95029303 e802f7f6
I/DEBUG ( 65): afd15b4c 462aa905 f7f62002 f7f5e80e 2106eb2c
I/DEBUG ( 65):
I/DEBUG ( 65): code around lr:
I/DEBUG ( 65): afd19038 4a0e4b0d e92d447b 589c41f0 26004680
I/DEBUG ( 65): afd19048 686768a5 f9b5e006 b113300c 47c04628
I/DEBUG ( 65): afd19058 35544306 37fff117 6824d5f5 d1ef2c00
I/DEBUG ( 65): afd19068 e8bd4630 bf0081f0 000284b8 ffffffac
I/DEBUG ( 65): afd19078 b086b570 f602fb01 9004460c a804a901
I/DEBUG ( 65):
I/DEBUG ( 65): stack:
I/DEBUG ( 65): 40a187d0 afd4262c
I/DEBUG ( 65): 40a187d4 00047718
I/DEBUG ( 65): 40a187d8 00000470
I/DEBUG ( 65): 40a187dc afd18129 /system/lib/libc.so
I/DEBUG ( 65): 40a187e0 afd425cc
I/DEBUG ( 65): 40a187e4 afd467bc
I/DEBUG ( 65): 40a187e8 00000000
I/DEBUG ( 65): 40a187ec afd19059 /system/lib/libc.so
I/DEBUG ( 65): 40a187f0 00000001
I/DEBUG ( 65): 40a187f4 40a18824
I/DEBUG ( 65): 40a187f8 40a18c5c
I/DEBUG ( 65): 40a187fc 000476f0
I/DEBUG ( 65): 40a18800 40a18c5c
I/DEBUG ( 65): 40a18804 afd1837b /system/lib/libc.so
I/DEBUG ( 65): 40a18808 df002777
I/DEBUG ( 65): 40a1880c e3a070ad
I/DEBUG ( 65): #00 40a18810 40a1880c
I/DEBUG ( 65): 40a18814 00000001
I/DEBUG ( 65): 40a18818 a3035b03 /system/lib/libstagefright.so
I/DEBUG ( 65): 40a1881c 0000000d
I/DEBUG ( 65): 40a18820 40a1883c
I/DEBUG ( 65): 40a18824 fffffbdf
I/DEBUG ( 65): 40a18828 a3035b03 /system/lib/libstagefright.so
I/DEBUG ( 65): 40a1882c a3035b03 /system/lib/libstagefright.so
I/DEBUG ( 65): 40a18830 40a18840
I/DEBUG ( 65): 40a18834 afa01461 /system/lib/liblog.so
I/DEBUG ( 65): #01 40a18838 40a18c54
I/DEBUG ( 65): 40a1883c 6d617266
I/DEBUG ( 65): 40a18840 726f7765
I/DEBUG ( 65): 40a18844 622f736b
I/DEBUG ( 65): 40a18848 2f657361
I/DEBUG ( 65): 40a1884c 6964656d
I/DEBUG ( 65): 40a18850 696c2f61
I/DEBUG ( 65): 40a18854 61747362
I/DEBUG ( 65): 40a18858 72666567
I/DEBUG ( 65): 40a1885c 74686769
I/DEBUG ( 65): 40a18860 6d61432f
I/DEBUG ( 65): 40a18864 53617265
I/DEBUG ( 65): 40a18868 6372756f
I/DEBUG ( 65): 40a1886c 70632e65
I/DEBUG ( 65): 40a18870 35313a70
I/DEBUG ( 65): 40a18874 6f632032
I/DEBUG ( 65): 40a18878 46726f6c
I/DEBUG ( 65): 40a1887c 616d726f
I/DEBUG ( 65): 40a18880 72745374
I/DEBUG ( 65): 40a18884 203d2120
I/DEBUG ( 65): 40a18888 4c4c554e
I/DEBUG ( 65): 40a1888c afd1a600 /system/lib/libc.so
I/DEBUG ( 65): 40a18890 40a18b9c
I/DEBUG ( 65): 40a18894 afd1b9ed /system/lib/libc.so
I/DEBUG ( 65): 40a18898 00000000
I/DEBUG ( 65): 40a1889c 00000004
I/DEBUG ( 65): 40a188a0 00000000
I/DEBUG ( 65): 40a188a4 00000003
I/DEBUG ( 65): 40a188a8 fffffffd
I/DEBUG ( 65): 40a188ac aba8f47d /system/lib/libcamera_client.so
I/DEBUG ( 65): 40a188b0 00000000
I/DEBUG ( 65): 40a188b4 00000001
I/DEBUG ( 65): 40a188b8 ffffffff
I/DEBUG ( 65): 40a188bc aba8f47d /system/lib/libcamera_client.so
I/DEBUG ( 65): 40a188c0 00000000
I/DEBUG ( 65): 40a188c4 00000000
I/DEBUG ( 65): 40a188c8 00000001
I/DEBUG ( 65): 40a188cc 40a1898f
I/DEBUG ( 65): 40a188d0 aba8f47b /system/lib/libcamera_client.so
I/DEBUG ( 65): 40a188d4 afd414f8
I/DEBUG ( 65): 40a188d8 00000000
I/DEBUG ( 65): 40a188dc 00000000
I/DEBUG ( 65): 40a188e0 afd4156c
I/DEBUG ( 65): 40a188e4 000201d6
I/DEBUG ( 65): 40a188e8 afd4156c
I/DEBUG ( 65): 40a188ec afd4156c
I/DEBUG ( 65): 40a188f0 00000002
I/DEBUG ( 65): 40a188f4 40a18aeb
I/DEBUG ( 65): 40a188f8 00000001
I/DEBUG ( 65): 40a188fc afd1a6eb /system/lib/libc.so
I/DEBUG ( 65): 40a18900 afd414f8
I/DEBUG ( 65): 40a18904 40a18988
I/DEBUG ( 65): 40a18908 0000000b
I/DEBUG ( 65): 40a1890c 00000000
I/DEBUG ( 65): 40a18910 00000000
I/DEBUG ( 65): 40a18914 0000019f
I/DEBUG ( 65): 40a18918 000021b6
I/DEBUG ( 65): 40a1891c 00000001
I/DEBUG ( 65): 40a18920 00000000
I/DEBUG ( 65): 40a18924 00000000
I/DEBUG ( 65): 40a18928 00000103
I/DEBUG ( 65): 40a1892c 00000000
I/DEBUG ( 65): 40a18930 afd4d598
I/DEBUG ( 65): 40a18934 afd248e3 /system/lib/libc.so
I/DEBUG ( 65): 40a18938 afd4d598
I/DEBUG ( 65): 40a1893c afd25fe1 /system/lib/libc.so
I/DEBUG ( 65): 40a18940 00000001
I/DEBUG ( 65): 40a18944 40a18954
I/DEBUG ( 65): 40a18948 afd16dc3 /system/lib/libc.so
I/DEBUG ( 65): 40a1894c 00005401
I/DEBUG ( 65): 40a18950 40a18958
I/DEBUG ( 65): 40a18954 afd414f8
I/DEBUG ( 65): 40a18958 afd414f8
I/DEBUG ( 65): 40a1895c afd1c897 /system/lib/libc.so
I/DEBUG ( 65): 40a18960 afd1836d /system/lib/libc.so
I/DEBUG ( 65): 40a18964 afd46598
I/DEBUG ( 65): 40a18968 00000000
I/DEBUG ( 65): 40a1896c afd4262c
I/DEBUG ( 65): 40a18970 00047b86
I/DEBUG ( 65): 40a18974 afd18f35 /system/lib/libc.so
I/DEBUG ( 65): 40a18978 afd4262c
I/DEBUG ( 65): 40a1897c 40a18a6c
I/DEBUG ( 65): 40a18980 00000470
I/DEBUG ( 65): 40a18984 40a18a6c
I/DEBUG ( 65): 40a18988 00000002
I/DEBUG ( 65): 40a1898c a3035c93 /system/lib/libstagefright.so
I/DEBUG ( 65): 40a18990 40a18a14
I/DEBUG ( 65): 40a18994 afd4262c
I/DEBUG ( 65): 40a18998 00000002
I/DEBUG ( 65): 40a1899c ffffffff
I/DEBUG ( 65): 40a189a0 00000000
I/DEBUG ( 65): 40a189a4 afd1a6eb /system/lib/libc.so
I/DEBUG ( 65): 40a189a8 00000002
I/DEBUG ( 65): 40a189ac afd1ba19 /system/lib/libc.so
I/DEBUG ( 65): 40a189b0 00100000
I/DEBUG ( 65): 40a189b4 40a189b4
I/DEBUG ( 65): 40a189b8 a8213bed /system/lib/libbinder.so
I/DEBUG ( 65): 40a189bc 40a1895c
I/DEBUG ( 65): 40a189c0 00000000
I/DEBUG ( 65): 40a189c4 00000073
I/DEBUG ( 65): 40a189c8 00000000
I/DEBUG ( 65): 40a189cc 00000465
I/DEBUG ( 65): 40a189d0 fffffb9b
I/DEBUG ( 65): 40a189d4 a3035c91 /system/lib/libstagefright.so
I/DEBUG ( 65): 40a189d8 00000000
I/DEBUG ( 65): 40a189dc 00000000
I/DEBUG ( 65): 40a189e0 00000470
I/DEBUG ( 65): 40a189e4 40a18aa7
I/DEBUG ( 65): 40a189e8 a3035c86 /system/lib/libstagefright.so
I/DEBUG ( 65): 40a189ec afd414f8
I/DEBUG ( 65): 40a189f0 00000000
I/DEBUG ( 65): 40a189f4 00000000
I/DEBUG ( 65): 40a189f8 00000000
I/DEBUG ( 65): 40a189fc 000201d6
I/DEBUG ( 65): 40a18a00 afd4156c
I/DEBUG ( 65): 40a18a04 afd4156c
I/DEBUG ( 65): 40a18a08 0000001b
I/DEBUG ( 65): 40a18a0c a3035c91 /system/lib/libstagefright.so
I/DEBUG ( 65): 40a18a10 00000002
I/DEBUG ( 65): 40a18a14 00046f70
I/DEBUG ( 65): 40a18a18 00000465
I/DEBUG ( 65): 40a18a1c 000460a0
I/DEBUG ( 65): 40a18a20 00046094
I/DEBUG ( 65): 40a18a24 000460a0
I/DEBUG ( 65): 40a18a28 00046040
I/DEBUG ( 65): 40a18a2c a8114b77 /system/lib/libutils.so
I/DEBUG ( 65): 40a18a30 00046038
I/DEBUG ( 65): 40a18a34 00046050
I/DEBUG ( 65): 40a18a38 00046038
I/DEBUG ( 65): 40a18a3c 00046050
I/DEBUG ( 65): 40a18a40 00046138
I/DEBUG ( 65): 40a18a44 00046148
I/DEBUG ( 65): 40a18a48 0000ba80
I/DEBUG ( 65): 40a18a4c 40a18a84
I/DEBUG ( 65): 40a18a50 40a18a84
I/DEBUG ( 65): 40a18a54 a8114b9d /system/lib/libutils.so
I/DEBUG ( 65): 40a18a58 0000ba70
I/DEBUG ( 65): 40a18a5c 0000ba80
I/DEBUG ( 65): 40a18a60 40a18a84
I/DEBUG ( 65): 40a18a64 a8114cbb /system/lib/libutils.so
I/DEBUG ( 65): 40a18a68 40a18a84
I/DEBUG ( 65): 40a18a6c 40a18a0c
I/DEBUG ( 65): 40a18a70 00000000
I/DEBUG ( 65): 40a18a74 00000000
I/DEBUG ( 65): 40a18a78 40a18bc8
I/DEBUG ( 65): 40a18a7c a821a831 /system/lib/libbinder.so
I/DEBUG ( 65): 40a18a80 40a18bc8
I/DEBUG ( 65): 40a18a84 0000ba20
I/DEBUG ( 65): 40a18a88 00000000
I/DEBUG ( 65): 40a18a8c 40a18bc8
I/DEBUG ( 65): 40a18a90 40a18c4c
I/DEBUG ( 65): 40a18a94 00000001
I/DEBUG ( 65): 40a18a98 00000000
I/DEBUG ( 65): 40a18a9c a821a855 /system/lib/libbinder.so
I/DEBUG ( 65): 40a18aa0 0000000c
I/DEBUG ( 65): 40a18aa4 00000001
I/DEBUG ( 65): 40a18aa8 0000021c
I/DEBUG ( 65): 40a18aac 00000001
I/DEBUG ( 65): 40a18ab0 0000122c
I/DEBUG ( 65): 40a18ab4 00000001
I/DEBUG ( 65): 40a18ab8 00045038
I/DEBUG ( 65): 40a18abc 0000a000
I/DEBUG ( 65): 40a18ac0 0000122c
I/DEBUG ( 65): 40a18ac4 00000001
I/DEBUG ( 65): 40a18ac8 00045070
I/DEBUG ( 65): 40a18acc 0000a000
I/DEBUG ( 65): 40a18ad0 00014a68
I/DEBUG ( 65): 40a18ad4 00000000
I/DEBUG ( 65): 40a18ad8 0001ba50
I/DEBUG ( 65): 40a18adc a8119edd /system/lib/libutils.so
I/DEBUG ( 65): 40a18ae0 0001ba50
I/DEBUG ( 65): 40a18ae4 00000000
I/DEBUG ( 65): 40a18ae8 0001ba50
I/DEBUG ( 65): 40a18aec a811aeeb /system/lib/libutils.so
I/DEBUG ( 65): 40a18af0 0001ba50
I/DEBUG ( 65): 40a18af4 aba8c63d /system/lib/libcamera_client.so
I/DEBUG ( 65): 40a18af8 0001ba54
I/DEBUG ( 65): 40a18afc 40a18b68
I/DEBUG ( 65): 40a18b00 00000001
I/DEBUG ( 65): 40a18b04 a8119f0f /system/lib/libutils.so
I/DEBUG ( 65): 40a18b08 0001ba54
I/DEBUG ( 65): 40a18b0c a811b397 /system/lib/libutils.so
I/DEBUG ( 65): 40a18b10 0001ba50
I/DEBUG ( 65): 40a18b14 aba8c8cb /system/lib/libcamera_client.so
I/DEBUG ( 65): 40a18b18 40a18b68
I/DEBUG ( 65): 40a18b1c 0001ba50
I/DEBUG ( 65): 40a18b20 afd4650c
I/DEBUG ( 65): 40a18b24 00000648
I/DEBUG ( 65): 40a18b28 00000022
I/DEBUG ( 65): 40a18b2c 00000020
I/DEBUG ( 65): 40a18b30 00047af8
I/DEBUG ( 65): 40a18b34 000017e8
I/DEBUG ( 65): 40a18b38 000492c0
I/DEBUG ( 65): 40a18b3c 0000a000
I/DEBUG ( 65): 40a18b40 00047b88
I/DEBUG ( 65): 40a18b44 000017e8
I/DEBUG ( 65): 40a18b48 000492c0
I/DEBUG ( 65): 40a18b4c 0000a000
I/DEBUG ( 65): 40a18b50 000474a4
I/DEBUG ( 65): 40a18b54 00048c20
I/DEBUG ( 65): 40a18b58 00022a00
I/DEBUG ( 65): 40a18b5c 00000001
I/DEBUG ( 65): 40a18b60 00048b60
I/DEBUG ( 65): 40a18b64 0000a000
I/DEBUG ( 65): 40a18b68 00000001
I/DEBUG ( 65): 40a18b6c 40a18c7c
I/DEBUG ( 65): 40a18b70 fffff620
I/DEBUG ( 65): 40a18b74 afd1333d /system/lib/libc.so
I/DEBUG ( 65): 40a18b78 00000000
I/DEBUG ( 65): 40a18b7c 40a18c5c
I/DEBUG ( 65): 40a18b80 00000001
I/DEBUG ( 65): 40a18b84 000473f0
I/DEBUG ( 65): 40a18b88 0004750c
I/DEBUG ( 65): 40a18b8c 40a18bf8
I/DEBUG ( 65): 40a18b90 00000001
I/DEBUG ( 65): 40a18b94 a8119f0f /system/lib/libutils.so
I/DEBUG ( 65): 40a18b98 0004750c
I/DEBUG ( 65): 40a18b9c a811b397 /system/lib/libutils.so
I/DEBUG ( 65): 40a18ba0 00047508
I/DEBUG ( 65): 40a18ba4 a2f47f63 /system/lib/libstagefright.so
I/DEBUG ( 65): 40a18ba8 40a18bf8
I/DEBUG ( 65): 40a18bac 00047508
I/DEBUG ( 65): 40a18bb0 00000001
I/DEBUG ( 65): 40a18bb4 a2f47ff7 /system/lib/libstagefright.so
I/DEBUG ( 65): 40a18bb8 40a18c5c
I/DEBUG ( 65): 40a18bbc 00000023
I/DEBUG ( 65): 40a18bc0 00049410
I/DEBUG ( 65): 40a18bc4 a2f47f3d /system/lib/libstagefright.so
I/DEBUG ( 65): 40a18bc8 00049410
I/DEBUG ( 65): 40a18bcc a2f47f3d /system/lib/libstagefright.so
I/DEBUG ( 65): 40a18bd0 00000012
I/DEBUG ( 65): 40a18bd4 40a18c5c
I/DEBUG ( 65): 40a18bd8 00049410
I/DEBUG ( 65): 40a18bdc a2f47f3d /system/lib/libstagefright.so
I/DEBUG ( 65): 40a18be0 0000001e
I/DEBUG ( 65): 40a18be4 40a18c5c
I/DEBUG ( 65): 40a18be8 00000000
I/DEBUG ( 65): 40a18bec 00000be0
I/DEBUG ( 65): 40a18bf0 00049420
I/DEBUG ( 65): 40a18bf4 0000a000
I/DEBUG ( 65): 40a18bf8 40a18c5c
I/DEBUG ( 65): 40a18bfc 40a18c7c
I/DEBUG ( 65): 40a18c00 fffff620
I/DEBUG ( 65): 40a18c04 afd1333d /system/lib/libc.so
I/DEBUG ( 65): 40a18c08 00049400
I/DEBUG ( 65): 40a18c0c 00000000
I/DEBUG ( 65): 40a18c10 40a18c5c
I/DEBUG ( 65): 40a18c14 000476f0
I/DEBUG ( 65): 40a18c18 0000a008
I/DEBUG ( 65): 40a18c1c 00000000
I/DEBUG ( 65): 40a18c20 40a18c5c
I/DEBUG ( 65): 40a18c24 a8119edd /system/lib/libutils.so
I/DEBUG ( 65): 40a18c28 40a18c44
I/DEBUG ( 65): 40a18c2c 40a18c44
I/DEBUG ( 65): 40a18c30 40a18c5c
I/DEBUG ( 65): 40a18c34 a811aeeb /system/lib/libutils.so
I/DEBUG ( 65): 40a18c38 00000000
I/DEBUG ( 65): 40a18c3c 5e57e6e4
I/DEBUG ( 65): 40a18c40 00049410
I/DEBUG ( 65): 40a18c44 00047668
I/DEBUG ( 65): 40a18c48 a305c964
I/DEBUG ( 65): 40a18c4c a2f4b531 /system/lib/libstagefright.so
I/DEBUG ( 65): 40a18c50 a3035cb0 /system/lib/libstagefright.so
I/DEBUG ( 65): 40a18c54 0000000a
I/DEBUG ( 65): debuggerd committing suicide to free the zombie!
I/DEBUG ( 750): debuggerd: Jan 6 2011 14:13:13
W/AudioSystem( 523): AudioFlinger server died!
W/MediaMetadataRetriever( 523): MediaMetadataRetriever server died!
W/IMediaDeathNotifier( 523): media server died
W/Camera ( 523): Camera server died!
W/AudioSystem( 523): AudioPolicyService server died!
W/Camera ( 523): ICamera died
W/AudioSystem( 104): AudioFlinger server died!
W/AudioSystem( 104): AudioPolicyService server died!
I/ServiceManager( 62): service 'media.audio_flinger' died
I/ServiceManager( 62): service 'media.player' died
I/ServiceManager( 62): service 'media.camera' died
I/ServiceManager( 62): service 'media.audio_policy' died
E/Camera ( 523): Error 100
V/camera ( 523): media server died
W/MediaMetadataRetriever( 393): MediaMetadataRetriever server died!
I/ ( 752): ServiceManager: 0xaf28
D/AudioHardwareQSD( 752): open /system/etc/vpimg success
D/AudioHardwareQSD( 752): Firmware /system/etc/vpimg size 27612
D/AudioHardwareQSD( 752): Total 27612 bytes put to user space buffer.
E/AudioService( 104): Media server died.
I/ServiceManager( 104): Waiting for service media.audio_flinger...
V/videocamera( 523): stopVideoRecording
V/videocamera( 523): Setting current video filename: /mnt/sdcard/DCIM/Camera/VID_20110106_151902.3gp
V/videocamera( 523): Current video URI: content://media/external/video/media/4
V/videocamera( 523): Releasing media recorder.
Wireless tethering also seems broken. Pretty sure I had compiled a build where it was working before...
Code:
I/ActivityManager( 97): Starting: Intent { act=android.intent.action.MAIN cmp=com.android.settings/.WirelessSettings } from pid 247
V/NFC ( 247): this device does not have NFC support
I/ActivityManager( 97): Displayed com.android.settings/.WirelessSettings: +415ms
I/ActivityManager( 97): Starting: Intent { act=android.intent.action.MAIN cmp=com.android.settings/.TetherSettings } from pid 247
D/AndroidRuntime( 247): Shutting down VM
W/dalvikvm( 247): threadid=1: thread exiting with uncaught exception (group=0x40015560)
D/dalvikvm( 247): GC_CONCURRENT freed 321K, 51% free 2904K/5831K, external 2137K/2137K, paused 3ms+3ms
E/AndroidRuntime( 247): FATAL EXCEPTION: main
E/AndroidRuntime( 247): java.lang.RuntimeException: Unable to resume activity {com.android.settings/com.android.settings.TetherSettings}: java.lang.ClassCastException: [Ljava.lang.Object;
E/AndroidRuntime( 247): at android.app.ActivityThread.performResumeActivity(ActivityThread.java:2095)
E/AndroidRuntime( 247): at android.app.ActivityThread.handleResumeActivity(ActivityThread.java:2110)
E/AndroidRuntime( 247): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1643)
E/AndroidRuntime( 247): at android.app.ActivityThread.access$1500(ActivityThread.java:117)
E/AndroidRuntime( 247): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:928)
E/AndroidRuntime( 247): at android.os.Handler.dispatchMessage(Handler.java:99)
E/AndroidRuntime( 247): at android.os.Looper.loop(Looper.java:123)
E/AndroidRuntime( 247): at android.app.ActivityThread.main(ActivityThread.java:3647)
E/AndroidRuntime( 247): at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime( 247): at java.lang.reflect.Method.invoke(Method.java:507)
E/AndroidRuntime( 247): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:839)
E/AndroidRuntime( 247): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:597)
E/AndroidRuntime( 247): at dalvik.system.NativeStart.main(Native Method)
E/AndroidRuntime( 247): Caused by: java.lang.ClassCastException: [Ljava.lang.Object;
E/AndroidRuntime( 247): at com.android.settings.TetherSettings$TetherChangeReceiver.onReceive(TetherSettings.java:160)
E/AndroidRuntime( 247): at com.android.settings.TetherSettings.onResume(TetherSettings.java:183)
E/AndroidRuntime( 247): at android.app.Instrumentation.callActivityOnResume(Instrumentation.java:1149)
E/AndroidRuntime( 247): at android.app.Activity.performResume(Activity.java:3833)
E/AndroidRuntime( 247): at android.app.ActivityThread.performResumeActivity(ActivityThread.java:2085)
E/AndroidRuntime( 247): ... 12 more
W/ActivityManager( 97): Force finishing activity com.android.settings/.TetherSettings
W/ActivityManager( 97): Force finishing activity com.android.settings/.WirelessSettings
W/ActivityManager( 97): Activity pause timeout for HistoryRecord{4075a010 com.android.settings/.TetherSettings}
I/Process ( 247): Sending signal. PID: 247 SIG: 9
I/ActivityManager( 97): Process com.android.settings (pid 247) has died.
I/WindowManager( 97): WIN DEATH: Window{406a2c00 com.android.settings/com.android.settings.WirelessSettings paused=true}
I/WindowManager( 97): WIN DEATH: Window{40843ec8 com.android.settings/com.android.settings.Settings paused=false}
dferreira said:
It should work, as long you have the correct vendor files for the Incredible
Click to expand...
Click to collapse
When you say "vendor files", you mean market files, right? Sorry, new to this, I'm going to have a lot of questions initially I'm sure... lol.
Sent from my HTC Incredible running Carbonite Red 1.5.
Atlas.rouge said:
When you say "vendor files", you mean market files, right? Sorry, new to this, I'm going to have a lot of questions initially I'm sure... lol.
Sent from my HTC Incredible running Carbonite Red 1.5.
Click to expand...
Click to collapse
No, what I mean is the proprietary files on your phone. I'm pretty sure you get a list of the files from Cyanogen's github try to download his incredible folder inside vendor.
hewitt said:
Only the camera works, not video. The video camera pretends to start working but doesn't actually record anything. If I had to guess, it seems to be a problem with libstagefright, possibly related to the move from opencore.
Code:
V/videocamera( 523): startVideoRecording
V/videocamera( 523): initializeRecorder
V/videocamera( 523): Current camera video filename: /mnt/sdcard/DCIM/Camera/VID_20110106_151902.3gp
I/MediaRecorderJNI( 523): prepare: surface=0x338680 (identity=57)
I/AudioHardwareQSD( 648): Routing audio to Speakerphone
D/AudioHardwareQSD( 648): Switching audio device to
D/AudioHardwareQSD( 648): Speakerphone
D/AudioHardwareQSD( 648): AudioHardware PCM record is going to standby.
E/StagefrightRecorder( 648): Failed to set frame rate to 27 fps. The actual frame rate is 15
F/CameraSource( 648): frameworks/base/media/libstagefright/CameraSource.cpp:152 colorFormatStr != NULL
I/AudioHardwareQSD( 648): Routing audio to Speakerphone
D/AudioHardwareQSD( 648): Switching audio device to
D/AudioHardwareQSD( 648): Speakerphone
D/AudioHardwareQSD( 648): AudioHardware PCM record is going to standby.
I/DEBUG ( 65): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
I/DEBUG ( 65): Build fingerprint: 'unknown'
I/DEBUG ( 65): pid: 648, tid: 689 >>> /system/bin/mediaserver <<<
I/DEBUG ( 65): signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr deadbaad
I/DEBUG ( 65): r0 00000027 r1 deadbaad r2 80000000 r3 00000000
I/DEBUG ( 65): r4 00000001 r5 00000000 r6 40a18c5c r7 000476f0
I/DEBUG ( 65): r8 40a18c5c r9 40a18c7c 10 fffff620 fp 00000000
I/DEBUG ( 65): ip afd465f8 sp 40a18810 lr afd19059 pc afd15b2c cpsr 60000030
I/DEBUG ( 65): d0 203d21207274534e d1 6964656d2f657355
I/DEBUG ( 65): d2 61747362696c2f4c d3 746867697266654c
I/DEBUG ( 65): d4 536172656d61432f d5 70632e656372756f
I/DEBUG ( 65): d6 6f63203235313a70 d7 616d726f46726f6c
I/DEBUG ( 65): d8 0000272a0000020b d9 0000000000000000
I/DEBUG ( 65): d10 0000000000000000 d11 0000000000000000
I/DEBUG ( 65): d12 0000000000000000 d13 0000000000000000
I/DEBUG ( 65): d14 0000000000000000 d15 0000000000000000
I/DEBUG ( 65): d16 0000000000000000 d17 3ff0000000000000
I/DEBUG ( 65): d18 7e37e43c8800759c d19 3fe000000112a880
I/DEBUG ( 65): d20 0000000000000000 d21 0000000000000000
I/DEBUG ( 65): d22 0000000000000000 d23 0000000000000000
I/DEBUG ( 65): d24 0000000000000000 d25 0000000000000000
I/DEBUG ( 65): d26 0000000000000000 d27 0000000000000000
I/DEBUG ( 65): d28 0000000000000000 d29 0000000000000000
I/DEBUG ( 65): d30 0000000000000000 d31 0000000000000000
I/DEBUG ( 65): scr 20000010
I/DEBUG ( 65):
I/DEBUG ( 65): #00 pc 00015b2c /system/lib/libc.so
I/DEBUG ( 65): #01 pc 0000145e /system/lib/liblog.so (__android_log_assert)
I/DEBUG ( 65): #02 pc 0004b52e /system/lib/libstagefright.so (_ZN7android12CameraSourceC1ERKNS_2spINS_6CameraEEE)
I/DEBUG ( 65):
I/DEBUG ( 65): code around pc:
I/DEBUG ( 65): afd15b0c 2c006824 e028d1fb b13368db c064f8df
I/DEBUG ( 65): afd15b1c 44fc2401 4000f8cc 49124798 25002027
I/DEBUG ( 65): afd15b2c f7f57008 2106eb40 ec9cf7f6 460aa901
I/DEBUG ( 65): afd15b3c f04f2006 95015380 95029303 e802f7f6
I/DEBUG ( 65): afd15b4c 462aa905 f7f62002 f7f5e80e 2106eb2c
I/DEBUG ( 65):
I/DEBUG ( 65): code around lr:
I/DEBUG ( 65): afd19038 4a0e4b0d e92d447b 589c41f0 26004680
I/DEBUG ( 65): afd19048 686768a5 f9b5e006 b113300c 47c04628
I/DEBUG ( 65): afd19058 35544306 37fff117 6824d5f5 d1ef2c00
I/DEBUG ( 65): afd19068 e8bd4630 bf0081f0 000284b8 ffffffac
I/DEBUG ( 65): afd19078 b086b570 f602fb01 9004460c a804a901
I/DEBUG ( 65):
I/DEBUG ( 65): stack:
I/DEBUG ( 65): 40a187d0 afd4262c
I/DEBUG ( 65): 40a187d4 00047718
I/DEBUG ( 65): 40a187d8 00000470
I/DEBUG ( 65): 40a187dc afd18129 /system/lib/libc.so
I/DEBUG ( 65): 40a187e0 afd425cc
I/DEBUG ( 65): 40a187e4 afd467bc
I/DEBUG ( 65): 40a187e8 00000000
I/DEBUG ( 65): 40a187ec afd19059 /system/lib/libc.so
I/DEBUG ( 65): 40a187f0 00000001
I/DEBUG ( 65): 40a187f4 40a18824
I/DEBUG ( 65): 40a187f8 40a18c5c
I/DEBUG ( 65): 40a187fc 000476f0
I/DEBUG ( 65): 40a18800 40a18c5c
I/DEBUG ( 65): 40a18804 afd1837b /system/lib/libc.so
I/DEBUG ( 65): 40a18808 df002777
I/DEBUG ( 65): 40a1880c e3a070ad
I/DEBUG ( 65): #00 40a18810 40a1880c
I/DEBUG ( 65): 40a18814 00000001
I/DEBUG ( 65): 40a18818 a3035b03 /system/lib/libstagefright.so
I/DEBUG ( 65): 40a1881c 0000000d
I/DEBUG ( 65): 40a18820 40a1883c
I/DEBUG ( 65): 40a18824 fffffbdf
I/DEBUG ( 65): 40a18828 a3035b03 /system/lib/libstagefright.so
I/DEBUG ( 65): 40a1882c a3035b03 /system/lib/libstagefright.so
I/DEBUG ( 65): 40a18830 40a18840
I/DEBUG ( 65): 40a18834 afa01461 /system/lib/liblog.so
I/DEBUG ( 65): #01 40a18838 40a18c54
I/DEBUG ( 65): 40a1883c 6d617266
I/DEBUG ( 65): 40a18840 726f7765
I/DEBUG ( 65): 40a18844 622f736b
I/DEBUG ( 65): 40a18848 2f657361
I/DEBUG ( 65): 40a1884c 6964656d
I/DEBUG ( 65): 40a18850 696c2f61
I/DEBUG ( 65): 40a18854 61747362
I/DEBUG ( 65): 40a18858 72666567
I/DEBUG ( 65): 40a1885c 74686769
I/DEBUG ( 65): 40a18860 6d61432f
I/DEBUG ( 65): 40a18864 53617265
I/DEBUG ( 65): 40a18868 6372756f
I/DEBUG ( 65): 40a1886c 70632e65
I/DEBUG ( 65): 40a18870 35313a70
I/DEBUG ( 65): 40a18874 6f632032
I/DEBUG ( 65): 40a18878 46726f6c
I/DEBUG ( 65): 40a1887c 616d726f
I/DEBUG ( 65): 40a18880 72745374
I/DEBUG ( 65): 40a18884 203d2120
I/DEBUG ( 65): 40a18888 4c4c554e
I/DEBUG ( 65): 40a1888c afd1a600 /system/lib/libc.so
I/DEBUG ( 65): 40a18890 40a18b9c
I/DEBUG ( 65): 40a18894 afd1b9ed /system/lib/libc.so
I/DEBUG ( 65): 40a18898 00000000
I/DEBUG ( 65): 40a1889c 00000004
I/DEBUG ( 65): 40a188a0 00000000
I/DEBUG ( 65): 40a188a4 00000003
I/DEBUG ( 65): 40a188a8 fffffffd
I/DEBUG ( 65): 40a188ac aba8f47d /system/lib/libcamera_client.so
I/DEBUG ( 65): 40a188b0 00000000
I/DEBUG ( 65): 40a188b4 00000001
I/DEBUG ( 65): 40a188b8 ffffffff
I/DEBUG ( 65): 40a188bc aba8f47d /system/lib/libcamera_client.so
I/DEBUG ( 65): 40a188c0 00000000
I/DEBUG ( 65): 40a188c4 00000000
I/DEBUG ( 65): 40a188c8 00000001
I/DEBUG ( 65): 40a188cc 40a1898f
I/DEBUG ( 65): 40a188d0 aba8f47b /system/lib/libcamera_client.so
I/DEBUG ( 65): 40a188d4 afd414f8
I/DEBUG ( 65): 40a188d8 00000000
I/DEBUG ( 65): 40a188dc 00000000
I/DEBUG ( 65): 40a188e0 afd4156c
I/DEBUG ( 65): 40a188e4 000201d6
I/DEBUG ( 65): 40a188e8 afd4156c
I/DEBUG ( 65): 40a188ec afd4156c
I/DEBUG ( 65): 40a188f0 00000002
I/DEBUG ( 65): 40a188f4 40a18aeb
I/DEBUG ( 65): 40a188f8 00000001
I/DEBUG ( 65): 40a188fc afd1a6eb /system/lib/libc.so
I/DEBUG ( 65): 40a18900 afd414f8
I/DEBUG ( 65): 40a18904 40a18988
I/DEBUG ( 65): 40a18908 0000000b
I/DEBUG ( 65): 40a1890c 00000000
I/DEBUG ( 65): 40a18910 00000000
I/DEBUG ( 65): 40a18914 0000019f
I/DEBUG ( 65): 40a18918 000021b6
I/DEBUG ( 65): 40a1891c 00000001
I/DEBUG ( 65): 40a18920 00000000
I/DEBUG ( 65): 40a18924 00000000
I/DEBUG ( 65): 40a18928 00000103
I/DEBUG ( 65): 40a1892c 00000000
I/DEBUG ( 65): 40a18930 afd4d598
I/DEBUG ( 65): 40a18934 afd248e3 /system/lib/libc.so
I/DEBUG ( 65): 40a18938 afd4d598
I/DEBUG ( 65): 40a1893c afd25fe1 /system/lib/libc.so
I/DEBUG ( 65): 40a18940 00000001
I/DEBUG ( 65): 40a18944 40a18954
I/DEBUG ( 65): 40a18948 afd16dc3 /system/lib/libc.so
I/DEBUG ( 65): 40a1894c 00005401
I/DEBUG ( 65): 40a18950 40a18958
I/DEBUG ( 65): 40a18954 afd414f8
I/DEBUG ( 65): 40a18958 afd414f8
I/DEBUG ( 65): 40a1895c afd1c897 /system/lib/libc.so
I/DEBUG ( 65): 40a18960 afd1836d /system/lib/libc.so
I/DEBUG ( 65): 40a18964 afd46598
I/DEBUG ( 65): 40a18968 00000000
I/DEBUG ( 65): 40a1896c afd4262c
I/DEBUG ( 65): 40a18970 00047b86
I/DEBUG ( 65): 40a18974 afd18f35 /system/lib/libc.so
I/DEBUG ( 65): 40a18978 afd4262c
I/DEBUG ( 65): 40a1897c 40a18a6c
I/DEBUG ( 65): 40a18980 00000470
I/DEBUG ( 65): 40a18984 40a18a6c
I/DEBUG ( 65): 40a18988 00000002
I/DEBUG ( 65): 40a1898c a3035c93 /system/lib/libstagefright.so
I/DEBUG ( 65): 40a18990 40a18a14
I/DEBUG ( 65): 40a18994 afd4262c
I/DEBUG ( 65): 40a18998 00000002
I/DEBUG ( 65): 40a1899c ffffffff
I/DEBUG ( 65): 40a189a0 00000000
I/DEBUG ( 65): 40a189a4 afd1a6eb /system/lib/libc.so
I/DEBUG ( 65): 40a189a8 00000002
I/DEBUG ( 65): 40a189ac afd1ba19 /system/lib/libc.so
I/DEBUG ( 65): 40a189b0 00100000
I/DEBUG ( 65): 40a189b4 40a189b4
I/DEBUG ( 65): 40a189b8 a8213bed /system/lib/libbinder.so
I/DEBUG ( 65): 40a189bc 40a1895c
I/DEBUG ( 65): 40a189c0 00000000
I/DEBUG ( 65): 40a189c4 00000073
I/DEBUG ( 65): 40a189c8 00000000
I/DEBUG ( 65): 40a189cc 00000465
I/DEBUG ( 65): 40a189d0 fffffb9b
I/DEBUG ( 65): 40a189d4 a3035c91 /system/lib/libstagefright.so
I/DEBUG ( 65): 40a189d8 00000000
I/DEBUG ( 65): 40a189dc 00000000
I/DEBUG ( 65): 40a189e0 00000470
I/DEBUG ( 65): 40a189e4 40a18aa7
I/DEBUG ( 65): 40a189e8 a3035c86 /system/lib/libstagefright.so
I/DEBUG ( 65): 40a189ec afd414f8
I/DEBUG ( 65): 40a189f0 00000000
I/DEBUG ( 65): 40a189f4 00000000
I/DEBUG ( 65): 40a189f8 00000000
I/DEBUG ( 65): 40a189fc 000201d6
I/DEBUG ( 65): 40a18a00 afd4156c
I/DEBUG ( 65): 40a18a04 afd4156c
I/DEBUG ( 65): 40a18a08 0000001b
I/DEBUG ( 65): 40a18a0c a3035c91 /system/lib/libstagefright.so
I/DEBUG ( 65): 40a18a10 00000002
I/DEBUG ( 65): 40a18a14 00046f70
I/DEBUG ( 65): 40a18a18 00000465
I/DEBUG ( 65): 40a18a1c 000460a0
I/DEBUG ( 65): 40a18a20 00046094
I/DEBUG ( 65): 40a18a24 000460a0
I/DEBUG ( 65): 40a18a28 00046040
I/DEBUG ( 65): 40a18a2c a8114b77 /system/lib/libutils.so
I/DEBUG ( 65): 40a18a30 00046038
I/DEBUG ( 65): 40a18a34 00046050
I/DEBUG ( 65): 40a18a38 00046038
I/DEBUG ( 65): 40a18a3c 00046050
I/DEBUG ( 65): 40a18a40 00046138
I/DEBUG ( 65): 40a18a44 00046148
I/DEBUG ( 65): 40a18a48 0000ba80
I/DEBUG ( 65): 40a18a4c 40a18a84
I/DEBUG ( 65): 40a18a50 40a18a84
I/DEBUG ( 65): 40a18a54 a8114b9d /system/lib/libutils.so
I/DEBUG ( 65): 40a18a58 0000ba70
I/DEBUG ( 65): 40a18a5c 0000ba80
I/DEBUG ( 65): 40a18a60 40a18a84
I/DEBUG ( 65): 40a18a64 a8114cbb /system/lib/libutils.so
I/DEBUG ( 65): 40a18a68 40a18a84
I/DEBUG ( 65): 40a18a6c 40a18a0c
I/DEBUG ( 65): 40a18a70 00000000
I/DEBUG ( 65): 40a18a74 00000000
I/DEBUG ( 65): 40a18a78 40a18bc8
I/DEBUG ( 65): 40a18a7c a821a831 /system/lib/libbinder.so
I/DEBUG ( 65): 40a18a80 40a18bc8
I/DEBUG ( 65): 40a18a84 0000ba20
I/DEBUG ( 65): 40a18a88 00000000
I/DEBUG ( 65): 40a18a8c 40a18bc8
I/DEBUG ( 65): 40a18a90 40a18c4c
I/DEBUG ( 65): 40a18a94 00000001
I/DEBUG ( 65): 40a18a98 00000000
I/DEBUG ( 65): 40a18a9c a821a855 /system/lib/libbinder.so
I/DEBUG ( 65): 40a18aa0 0000000c
I/DEBUG ( 65): 40a18aa4 00000001
I/DEBUG ( 65): 40a18aa8 0000021c
I/DEBUG ( 65): 40a18aac 00000001
I/DEBUG ( 65): 40a18ab0 0000122c
I/DEBUG ( 65): 40a18ab4 00000001
I/DEBUG ( 65): 40a18ab8 00045038
I/DEBUG ( 65): 40a18abc 0000a000
I/DEBUG ( 65): 40a18ac0 0000122c
I/DEBUG ( 65): 40a18ac4 00000001
I/DEBUG ( 65): 40a18ac8 00045070
I/DEBUG ( 65): 40a18acc 0000a000
I/DEBUG ( 65): 40a18ad0 00014a68
I/DEBUG ( 65): 40a18ad4 00000000
I/DEBUG ( 65): 40a18ad8 0001ba50
I/DEBUG ( 65): 40a18adc a8119edd /system/lib/libutils.so
I/DEBUG ( 65): 40a18ae0 0001ba50
I/DEBUG ( 65): 40a18ae4 00000000
I/DEBUG ( 65): 40a18ae8 0001ba50
I/DEBUG ( 65): 40a18aec a811aeeb /system/lib/libutils.so
I/DEBUG ( 65): 40a18af0 0001ba50
I/DEBUG ( 65): 40a18af4 aba8c63d /system/lib/libcamera_client.so
I/DEBUG ( 65): 40a18af8 0001ba54
I/DEBUG ( 65): 40a18afc 40a18b68
I/DEBUG ( 65): 40a18b00 00000001
I/DEBUG ( 65): 40a18b04 a8119f0f /system/lib/libutils.so
I/DEBUG ( 65): 40a18b08 0001ba54
I/DEBUG ( 65): 40a18b0c a811b397 /system/lib/libutils.so
I/DEBUG ( 65): 40a18b10 0001ba50
I/DEBUG ( 65): 40a18b14 aba8c8cb /system/lib/libcamera_client.so
I/DEBUG ( 65): 40a18b18 40a18b68
I/DEBUG ( 65): 40a18b1c 0001ba50
I/DEBUG ( 65): 40a18b20 afd4650c
I/DEBUG ( 65): 40a18b24 00000648
I/DEBUG ( 65): 40a18b28 00000022
I/DEBUG ( 65): 40a18b2c 00000020
I/DEBUG ( 65): 40a18b30 00047af8
I/DEBUG ( 65): 40a18b34 000017e8
I/DEBUG ( 65): 40a18b38 000492c0
I/DEBUG ( 65): 40a18b3c 0000a000
I/DEBUG ( 65): 40a18b40 00047b88
I/DEBUG ( 65): 40a18b44 000017e8
I/DEBUG ( 65): 40a18b48 000492c0
I/DEBUG ( 65): 40a18b4c 0000a000
I/DEBUG ( 65): 40a18b50 000474a4
I/DEBUG ( 65): 40a18b54 00048c20
I/DEBUG ( 65): 40a18b58 00022a00
I/DEBUG ( 65): 40a18b5c 00000001
I/DEBUG ( 65): 40a18b60 00048b60
I/DEBUG ( 65): 40a18b64 0000a000
I/DEBUG ( 65): 40a18b68 00000001
I/DEBUG ( 65): 40a18b6c 40a18c7c
I/DEBUG ( 65): 40a18b70 fffff620
I/DEBUG ( 65): 40a18b74 afd1333d /system/lib/libc.so
I/DEBUG ( 65): 40a18b78 00000000
I/DEBUG ( 65): 40a18b7c 40a18c5c
I/DEBUG ( 65): 40a18b80 00000001
I/DEBUG ( 65): 40a18b84 000473f0
I/DEBUG ( 65): 40a18b88 0004750c
I/DEBUG ( 65): 40a18b8c 40a18bf8
I/DEBUG ( 65): 40a18b90 00000001
I/DEBUG ( 65): 40a18b94 a8119f0f /system/lib/libutils.so
I/DEBUG ( 65): 40a18b98 0004750c
I/DEBUG ( 65): 40a18b9c a811b397 /system/lib/libutils.so
I/DEBUG ( 65): 40a18ba0 00047508
I/DEBUG ( 65): 40a18ba4 a2f47f63 /system/lib/libstagefright.so
I/DEBUG ( 65): 40a18ba8 40a18bf8
I/DEBUG ( 65): 40a18bac 00047508
I/DEBUG ( 65): 40a18bb0 00000001
I/DEBUG ( 65): 40a18bb4 a2f47ff7 /system/lib/libstagefright.so
I/DEBUG ( 65): 40a18bb8 40a18c5c
I/DEBUG ( 65): 40a18bbc 00000023
I/DEBUG ( 65): 40a18bc0 00049410
I/DEBUG ( 65): 40a18bc4 a2f47f3d /system/lib/libstagefright.so
I/DEBUG ( 65): 40a18bc8 00049410
I/DEBUG ( 65): 40a18bcc a2f47f3d /system/lib/libstagefright.so
I/DEBUG ( 65): 40a18bd0 00000012
I/DEBUG ( 65): 40a18bd4 40a18c5c
I/DEBUG ( 65): 40a18bd8 00049410
I/DEBUG ( 65): 40a18bdc a2f47f3d /system/lib/libstagefright.so
I/DEBUG ( 65): 40a18be0 0000001e
I/DEBUG ( 65): 40a18be4 40a18c5c
I/DEBUG ( 65): 40a18be8 00000000
I/DEBUG ( 65): 40a18bec 00000be0
I/DEBUG ( 65): 40a18bf0 00049420
I/DEBUG ( 65): 40a18bf4 0000a000
I/DEBUG ( 65): 40a18bf8 40a18c5c
I/DEBUG ( 65): 40a18bfc 40a18c7c
I/DEBUG ( 65): 40a18c00 fffff620
I/DEBUG ( 65): 40a18c04 afd1333d /system/lib/libc.so
I/DEBUG ( 65): 40a18c08 00049400
I/DEBUG ( 65): 40a18c0c 00000000
I/DEBUG ( 65): 40a18c10 40a18c5c
I/DEBUG ( 65): 40a18c14 000476f0
I/DEBUG ( 65): 40a18c18 0000a008
I/DEBUG ( 65): 40a18c1c 00000000
I/DEBUG ( 65): 40a18c20 40a18c5c
I/DEBUG ( 65): 40a18c24 a8119edd /system/lib/libutils.so
I/DEBUG ( 65): 40a18c28 40a18c44
I/DEBUG ( 65): 40a18c2c 40a18c44
I/DEBUG ( 65): 40a18c30 40a18c5c
I/DEBUG ( 65): 40a18c34 a811aeeb /system/lib/libutils.so
I/DEBUG ( 65): 40a18c38 00000000
I/DEBUG ( 65): 40a18c3c 5e57e6e4
I/DEBUG ( 65): 40a18c40 00049410
I/DEBUG ( 65): 40a18c44 00047668
I/DEBUG ( 65): 40a18c48 a305c964
I/DEBUG ( 65): 40a18c4c a2f4b531 /system/lib/libstagefright.so
I/DEBUG ( 65): 40a18c50 a3035cb0 /system/lib/libstagefright.so
I/DEBUG ( 65): 40a18c54 0000000a
I/DEBUG ( 65): debuggerd committing suicide to free the zombie!
I/DEBUG ( 750): debuggerd: Jan 6 2011 14:13:13
W/AudioSystem( 523): AudioFlinger server died!
W/MediaMetadataRetriever( 523): MediaMetadataRetriever server died!
W/IMediaDeathNotifier( 523): media server died
W/Camera ( 523): Camera server died!
W/AudioSystem( 523): AudioPolicyService server died!
W/Camera ( 523): ICamera died
W/AudioSystem( 104): AudioFlinger server died!
W/AudioSystem( 104): AudioPolicyService server died!
I/ServiceManager( 62): service 'media.audio_flinger' died
I/ServiceManager( 62): service 'media.player' died
I/ServiceManager( 62): service 'media.camera' died
I/ServiceManager( 62): service 'media.audio_policy' died
E/Camera ( 523): Error 100
V/camera ( 523): media server died
W/MediaMetadataRetriever( 393): MediaMetadataRetriever server died!
I/ ( 752): ServiceManager: 0xaf28
D/AudioHardwareQSD( 752): open /system/etc/vpimg success
D/AudioHardwareQSD( 752): Firmware /system/etc/vpimg size 27612
D/AudioHardwareQSD( 752): Total 27612 bytes put to user space buffer.
E/AudioService( 104): Media server died.
I/ServiceManager( 104): Waiting for service media.audio_flinger...
V/videocamera( 523): stopVideoRecording
V/videocamera( 523): Setting current video filename: /mnt/sdcard/DCIM/Camera/VID_20110106_151902.3gp
V/videocamera( 523): Current video URI: content://media/external/video/media/4
V/videocamera( 523): Releasing media recorder.
Wireless tethering also seems broken. Pretty sure I had compiled a build where it was working before...
Code:
I/ActivityManager( 97): Starting: Intent { act=android.intent.action.MAIN cmp=com.android.settings/.WirelessSettings } from pid 247
V/NFC ( 247): this device does not have NFC support
I/ActivityManager( 97): Displayed com.android.settings/.WirelessSettings: +415ms
I/ActivityManager( 97): Starting: Intent { act=android.intent.action.MAIN cmp=com.android.settings/.TetherSettings } from pid 247
D/AndroidRuntime( 247): Shutting down VM
W/dalvikvm( 247): threadid=1: thread exiting with uncaught exception (group=0x40015560)
D/dalvikvm( 247): GC_CONCURRENT freed 321K, 51% free 2904K/5831K, external 2137K/2137K, paused 3ms+3ms
E/AndroidRuntime( 247): FATAL EXCEPTION: main
E/AndroidRuntime( 247): java.lang.RuntimeException: Unable to resume activity {com.android.settings/com.android.settings.TetherSettings}: java.lang.ClassCastException: [Ljava.lang.Object;
E/AndroidRuntime( 247): at android.app.ActivityThread.performResumeActivity(ActivityThread.java:2095)
E/AndroidRuntime( 247): at android.app.ActivityThread.handleResumeActivity(ActivityThread.java:2110)
E/AndroidRuntime( 247): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1643)
E/AndroidRuntime( 247): at android.app.ActivityThread.access$1500(ActivityThread.java:117)
E/AndroidRuntime( 247): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:928)
E/AndroidRuntime( 247): at android.os.Handler.dispatchMessage(Handler.java:99)
E/AndroidRuntime( 247): at android.os.Looper.loop(Looper.java:123)
E/AndroidRuntime( 247): at android.app.ActivityThread.main(ActivityThread.java:3647)
E/AndroidRuntime( 247): at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime( 247): at java.lang.reflect.Method.invoke(Method.java:507)
E/AndroidRuntime( 247): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:839)
E/AndroidRuntime( 247): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:597)
E/AndroidRuntime( 247): at dalvik.system.NativeStart.main(Native Method)
E/AndroidRuntime( 247): Caused by: java.lang.ClassCastException: [Ljava.lang.Object;
E/AndroidRuntime( 247): at com.android.settings.TetherSettings$TetherChangeReceiver.onReceive(TetherSettings.java:160)
E/AndroidRuntime( 247): at com.android.settings.TetherSettings.onResume(TetherSettings.java:183)
E/AndroidRuntime( 247): at android.app.Instrumentation.callActivityOnResume(Instrumentation.java:1149)
E/AndroidRuntime( 247): at android.app.Activity.performResume(Activity.java:3833)
E/AndroidRuntime( 247): at android.app.ActivityThread.performResumeActivity(ActivityThread.java:2085)
E/AndroidRuntime( 247): ... 12 more
W/ActivityManager( 97): Force finishing activity com.android.settings/.TetherSettings
W/ActivityManager( 97): Force finishing activity com.android.settings/.WirelessSettings
W/ActivityManager( 97): Activity pause timeout for HistoryRecord{4075a010 com.android.settings/.TetherSettings}
I/Process ( 247): Sending signal. PID: 247 SIG: 9
I/ActivityManager( 97): Process com.android.settings (pid 247) has died.
I/WindowManager( 97): WIN DEATH: Window{406a2c00 com.android.settings/com.android.settings.WirelessSettings paused=true}
I/WindowManager( 97): WIN DEATH: Window{40843ec8 com.android.settings/com.android.settings.Settings paused=false}
Click to expand...
Click to collapse
Hum... something appears to be broken on tethering on the master branch. The branch 2.3.1 works just fine. Changing the manifest on git to get that branch for settings project should do it. I'll take a look at libstagefright on that line and see what makes it break. It would be great if those developers who have it working on their ROM's would share how to fix it
I haven't found a better way to add dictionaries to fix predictive typing, but you can pull the dictionaries out of Cyanogenmod and slip them into LatinIME. It's absolutely ridiculous that these files do not already exist in the AOSP.
Code:
git clone https://github.com/CyanogenMod/android_vendor_cyanogen.git
Copy any of the raw language directories from 'android_vendor_cyanogen/overlay/common/packages/inputmethods/LatinIME/java/res/'
(such as raw-en for English or raw-de for German) to your AOSP repo in
'/packages/inputmethods/LatinIME/java/res/'.
Rebuild LatinIME and push it to your phone, then set language with Settings->Language & Keyboard->Android Keyboard->Input Languages. Just select your preferred languages, which should indicate below in small text, "Dictionary available".
Related
Heya,
I just found out I had posted this thread in the wrong forum to start with, and I am remaking it here(wrote in the other thread that a mod should delete it if possible). Sorry
I compiled a version of AOSP 2.3.4 for HTC Desire HD; i used the vendor files for Ace from CyanogenMod, plus edited the different android.mk files needed for it to compile (LOCAL_MODULE_TAGS), plus integrated ChainsDD superuser.apk. And, i used common.py from CyanogenMod, otherwise it stops the build while making the ota package or update package with a reference to recovery.fstab being malformed.
But...no matter what i do, it crashes on boot. I have tried building it on Ubuntu 10.04, and then installed openSuse 11.4 x64 and started from scratch. Still no dice.
I built a CyanogenMod from source without any problems, compiled and ran without a problem, but i want to make a pure AOSP, plus whatever alteration i decide when it's working.
Also, I tried flashing another kernel incase that should be the problem, no luck, no change in the logcat either.
Here is the output from logcat:
Code:
./adb logcat
- waiting for device -
--------- beginning of /dev/log/system
I/Vold ( 1179): Vold 2.1 (the revenge) firing up
D/Vold ( 1179): Volume sdcard state changing -1 (Initializing) -> 0 (No-Media)
D/Vold ( 1179): Volume sdcard state changing 0 (No-Media) -> 2 (Pending)
D/Vold ( 1179): Volume sdcard state changing 2 (Pending) -> 1 (Idle-Unmounted)
D/Vold ( 1179): USB connected
D/Vold ( 1179): Share method ums now available
--------- beginning of /dev/log/main
I/DEBUG ( 1181): debuggerd: Jun 14 2011 12:36:01
I/Netd ( 1180): Netd 1.0 starting
I/rmt_storage( 1190): rmt_storage user app start
I/rmt_storage( 1190): rmt_storage open success
I/rmt_storage( 1190): rmt_storage shared memory ioctl success
I/rmt_storage( 1190): rmt_storage mmap addr = 40009000
E/HtcEbdLog( 1255): /system/bin/logcat2
E/HtcEbdLog( 1255): -v
E/HtcEbdLog( 1255): time
E/HtcEbdLog( 1255): -f
E/HtcEbdLog( 1255): /devlog/system_log
E/HtcEbdLog( 1255): -r
E/HtcEbdLog( 1255): 1024
E/HtcEbdLog( 1255): -n
E/HtcEbdLog( 1255): 50
E/HtcEbdLog( 1255): *:w
E/HtcEbdLog( 1255):
E/HtcEbdLog( 1192): [htc_edblog_kmsg_main] g_outByteCount = 598016
D/AK8975 ( 1189): AK8975 daemon 1.0.8 Start
D/AK8975 ( 1189): (Library version : 1.2.1.1125)
I/recovery( 1257): Recovery image already installed
D/AndroidRuntime( 1183):
D/AndroidRuntime( 1183): >>>>>> AndroidRuntime START com.android.internal.os.ZygoteInit <<<<<<
D/AndroidRuntime( 1183): CheckJNI is OFF
D/dalvikvm( 1183): creating instr width table
I/SamplingProfilerIntegration( 1183): Profiler is disabled.
I/Zygote ( 1183): Preloading classes...
E/Zygote ( 1183): setreuid() failed. errno: 2
D/dalvikvm( 1183): GC_EXPLICIT freed 47K, 78% free 235K/1024K, external 0K/0K, paused 2ms
D/dalvikvm( 1183): GC_EXPLICIT freed 1K, 73% free 285K/1024K, external 0K/0K, paused 2ms
D/dalvikvm( 1183): GC_EXPLICIT freed 20K, 69% free 318K/1024K, external 0K/0K, paused 2ms
I/bluetooth_ScoSocket.cpp( 1183): Entry name = MY-CAR ScoTypes = 0x7f
I/bluetooth_ScoSocket.cpp( 1183): Entry name = Motorola HF850 ScoTypes = 0x7
D/dalvikvm( 1183): GC_EXPLICIT freed 17K, 66% free 356K/1024K, external 0K/0K, paused 3ms
D/dalvikvm( 1183): GC_EXPLICIT freed 26K, 63% free 384K/1024K, external 0K/0K, paused 3ms
D/dalvikvm( 1183): GC_EXPLICIT freed 22K, 57% free 443K/1024K, external 0K/0K, paused 2ms
F/MediaProfiles( 1183): frameworks/base/media/libmedia/MediaProfiles.cpp:283 quality != -1
I/DEBUG ( 1181): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
I/DEBUG ( 1181): Build fingerprint: 'generic/htc_ace/ace:2.3.4/GINGERBREAD/eng.jespersp.20110614.122525:userdebug/test-keys'
I/DEBUG ( 1181): pid: 1183, tid: 1183 >>> zygote <<<
I/DEBUG ( 1181): signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr deadbaad
I/DEBUG ( 1181): r0 00000027 r1 deadbaad r2 40000000 r3 00000000
I/DEBUG ( 1181): r4 00000001 r5 00000000 r6 00000000 r7 ffffffff
I/DEBUG ( 1181): r8 00000000 r9 000a69b8 10 000a87e3 fp 000a6ad8
I/DEBUG ( 1181): ip afd46668 sp be9ffe88 lr afd191d9 pc afd15ca4 cpsr 60000030
I/DEBUG ( 1181): d0 3338323a70706320 d1 7974696c61757121
I/DEBUG ( 1181): d2 616964654d2f613d d3 73656c69666f7220
I/DEBUG ( 1181): d4 2020202020202020 d5 6c656e6e61686320
I/DEBUG ( 1181): d6 3e2f202231223d73 d7 202020202020200a
I/DEBUG ( 1181): d8 0000000000000000 d9 0000000000000000
I/DEBUG ( 1181): d10 0000000000000000 d11 0000000000000000
I/DEBUG ( 1181): d12 0000000000000000 d13 0000000000000000
I/DEBUG ( 1181): d14 0000000000000000 d15 0000000000000000
I/DEBUG ( 1181): d16 4214cec44005add8 d17 3fe999999999999a
I/DEBUG ( 1181): d18 0000000000000000 d19 0000000000000000
I/DEBUG ( 1181): d20 0000000000000000 d21 0000000000000000
I/DEBUG ( 1181): d22 0000000000000000 d23 0000000000000000
I/DEBUG ( 1181): d24 0000000000000000 d25 0000000000000000
I/DEBUG ( 1181): d26 0000000000000000 d27 0000000000000000
I/DEBUG ( 1181): d28 0000000000000000 d29 0000000000000000
I/DEBUG ( 1181): d30 0000000000000000 d31 0000000000000000
I/DEBUG ( 1181): scr 20000010
I/DEBUG ( 1181):
I/DEBUG ( 1181): #00 pc 00015ca4 /system/lib/libc.so
I/DEBUG ( 1181): #01 pc 0000143a /system/lib/liblog.so
I/DEBUG ( 1181): #02 pc 00042bd2 /system/lib/libmedia.so
I/DEBUG ( 1181): #03 pc 00043256 /system/lib/libmedia.so
I/DEBUG ( 1181): #04 pc 000059da /system/lib/libexpat.so
I/DEBUG ( 1181): #05 pc 00005f7c /system/lib/libexpat.so
I/DEBUG ( 1181): #06 pc 000020f0 /system/lib/libexpat.so
I/DEBUG ( 1181): #07 pc 0004292a /system/lib/libmedia.so
I/DEBUG ( 1181): #08 pc 00042a36 /system/lib/libmedia.so
I/DEBUG ( 1181): #09 pc 00009b34 /system/lib/libmedia_jni.so
I/DEBUG ( 1181): #10 pc 00011e34 /system/lib/libdvm.so
I/DEBUG ( 1181): #11 pc 00043646 /system/lib/libdvm.so
I/DEBUG ( 1181): #12 pc 00017034 /system/lib/libdvm.so
I/DEBUG ( 1181): #13 pc 0001c0e4 /system/lib/libdvm.so
I/DEBUG ( 1181): #14 pc 0001afdc /system/lib/libdvm.so
I/DEBUG ( 1181): #15 pc 00059c40 /system/lib/libdvm.so
I/DEBUG ( 1181): #16 pc 00059e54 /system/lib/libdvm.so
I/DEBUG ( 1181): #17 pc 00065446 /system/lib/libdvm.so
I/DEBUG ( 1181): #18 pc 00065958 /system/lib/libdvm.so
I/DEBUG ( 1181): #19 pc 0005ef12 /system/lib/libdvm.so
I/DEBUG ( 1181): #20 pc 00060c1e /system/lib/libdvm.so
I/DEBUG ( 1181): #21 pc 00017034 /system/lib/libdvm.so
I/DEBUG ( 1181): #22 pc 0001c0e4 /system/lib/libdvm.so
I/DEBUG ( 1181): #23 pc 0001afdc /system/lib/libdvm.so
I/DEBUG ( 1181): #24 pc 00059c40 /system/lib/libdvm.so
I/DEBUG ( 1181): #25 pc 00046126 /system/lib/libdvm.so
I/DEBUG ( 1181): #26 pc 00032556 /system/lib/libandroid_runtime.so
I/DEBUG ( 1181): #27 pc 00033402 /system/lib/libandroid_runtime.so
I/DEBUG ( 1181): #28 pc 00008cca /system/bin/app_process
I/DEBUG ( 1181): #29 pc 00014b52 /system/lib/libc.so
I/DEBUG ( 1181):
I/DEBUG ( 1181): code around pc:
I/DEBUG ( 1181): afd15c84 2c006824 e028d1fb b13368db c064f8df
I/DEBUG ( 1181): afd15c94 44fc2401 4000f8cc 49124798 25002027
I/DEBUG ( 1181): afd15ca4 f7f57008 2106ec7c edd8f7f6 460aa901
I/DEBUG ( 1181): afd15cb4 f04f2006 95015380 95029303 e93ef7f6
I/DEBUG ( 1181): afd15cc4 462aa905 f7f62002 f7f5e94a 2106ec68
I/DEBUG ( 1181):
I/DEBUG ( 1181): code around lr:
I/DEBUG ( 1181): afd191b8 4a0e4b0d e92d447b 589c41f0 26004680
I/DEBUG ( 1181): afd191c8 686768a5 f9b5e006 b113300c 47c04628
I/DEBUG ( 1181): afd191d8 35544306 37fff117 6824d5f5 d1ef2c00
I/DEBUG ( 1181): afd191e8 e8bd4630 bf0081f0 00028344 ffffff88
I/DEBUG ( 1181): afd191f8 b086b570 f602fb01 9004460c a804a901
I/DEBUG ( 1181):
I/DEBUG ( 1181): stack:
I/DEBUG ( 1181): be9ffe48 00000000
I/DEBUG ( 1181): be9ffe4c 000003bd
I/DEBUG ( 1181): be9ffe50 ffff0208
I/DEBUG ( 1181): be9ffe54 be9ffeb4
I/DEBUG ( 1181): be9ffe58 afd42604
I/DEBUG ( 1181): be9ffe5c afd46784
I/DEBUG ( 1181): be9ffe60 00000000
I/DEBUG ( 1181): be9ffe64 afd191d9 /system/lib/libc.so
I/DEBUG ( 1181): be9ffe68 00000001
I/DEBUG ( 1181): be9ffe6c be9ffe9c
I/DEBUG ( 1181): be9ffe70 00000000
I/DEBUG ( 1181): be9ffe74 ffffffff
I/DEBUG ( 1181): be9ffe78 00000000
I/DEBUG ( 1181): be9ffe7c afd184fb /system/lib/libc.so
I/DEBUG ( 1181): be9ffe80 df002777
I/DEBUG ( 1181): be9ffe84 e3a070ad
I/DEBUG ( 1181): #00 be9ffe88 be9ffe84
I/DEBUG ( 1181): be9ffe8c 00000001
I/DEBUG ( 1181): be9ffe90 a904e13c /system/lib/libmedia.so
I/DEBUG ( 1181): be9ffe94 0000000e
I/DEBUG ( 1181): be9ffe98 be9ffeb4
I/DEBUG ( 1181): be9ffe9c fffffbdf
I/DEBUG ( 1181): be9ffea0 be9ffeb4
I/DEBUG ( 1181): be9ffea4 be9ffeb4
I/DEBUG ( 1181): be9ffea8 a904e13c /system/lib/libmedia.so
I/DEBUG ( 1181): be9ffeac afa0143d /system/lib/liblog.so
I/DEBUG ( 1181): #01 be9ffeb0 bea002cc
I/DEBUG ( 1181): be9ffeb4 6d617266
I/DEBUG ( 1181): be9ffeb8 726f7765
I/DEBUG ( 1181): be9ffebc 622f736b
I/DEBUG ( 1181): be9ffec0 2f657361
I/DEBUG ( 1181): be9ffec4 6964656d
I/DEBUG ( 1181): be9ffec8 696c2f61
I/DEBUG ( 1181): be9ffecc 64656d62
I/DEBUG ( 1181): be9ffed0 4d2f6169
I/DEBUG ( 1181): be9ffed4 61696465
I/DEBUG ( 1181): be9ffed8 666f7250
I/DEBUG ( 1181): be9ffedc 73656c69
I/DEBUG ( 1181): be9ffee0 7070632e
I/DEBUG ( 1181): be9ffee4 3338323a
I/DEBUG ( 1181): be9ffee8 61757120
I/DEBUG ( 1181): be9ffeec 7974696c
I/DEBUG ( 1181): be9ffef0 203d2120
I/DEBUG ( 1181): be9ffef4 0000312d
I/DEBUG ( 1181): be9ffef8 00000001
I/DEBUG ( 1181): be9ffefc 00010000
I/DEBUG ( 1181): be9fff00 00000000
I/DEBUG ( 1181): be9fff04 0000000b
I/DEBUG ( 1181): be9fff08 00089cc0
I/DEBUG ( 1181): be9fff0c 00089140
I/DEBUG ( 1181): be9fff10 00000000
I/DEBUG ( 1181): be9fff14 00000001
I/DEBUG ( 1181): be9fff18 00089cc0
I/DEBUG ( 1181): be9fff1c 00095c50
I/DEBUG ( 1181): be9fff20 00089cc0
I/DEBUG ( 1181): be9fff24 be9fff90
I/DEBUG ( 1181): be9fff28 000898c8
I/DEBUG ( 1181): be9fff2c ab1c1348 /system/lib/libskia.so
I/DEBUG ( 1181): be9fff30 000000c7
I/DEBUG ( 1181): be9fff34 00000000
I/DEBUG ( 1181): be9fff38 000000db
I/DEBUG ( 1181): be9fff3c 000a64c0
I/DEBUG ( 1181): be9fff40 be9fff9c
I/DEBUG ( 1181): be9fff44 00004200
I/DEBUG ( 1181): be9fff48 000000cb
I/DEBUG ( 1181): be9fff4c 000a6698
I/DEBUG ( 1181): be9fff50 be9fffac
I/DEBUG ( 1181): be9fff54 00004200
I/DEBUG ( 1181): be9fff58 00000004
I/DEBUG ( 1181): be9fff5c 00000000
I/DEBUG ( 1181): be9fff60 000005b6
I/DEBUG ( 1181): be9fff64 afd13ec7 /system/lib/libc.so
I/DEBUG ( 1181): be9fff68 be9fff94
I/DEBUG ( 1181): be9fff6c 00000000
I/DEBUG ( 1181): be9fff70 be9fffac
I/DEBUG ( 1181): be9fff74 00000030
I/DEBUG ( 1181): be9fff78 000a6698
I/DEBUG ( 1181): be9fff7c 000000c0
I/DEBUG ( 1181): be9fff80 000a6698
I/DEBUG ( 1181): be9fff84 be9fffac
I/DEBUG ( 1181): be9fff88 00000030
I/DEBUG ( 1181): be9fff8c ab1a25a8 /system/lib/libskia.so
I/DEBUG ( 1181): be9fff90 000a64c0
I/DEBUG ( 1181): be9fff94 00000000
I/DEBUG ( 1181): be9fff98 00000000
I/DEBUG ( 1181): be9fff9c 0000a000
I/DEBUG ( 1181): be9fffa0 0000a000
I/DEBUG ( 1181): be9fffa4 afd0fc68 /system/lib/libc.so
I/DEBUG ( 1181): be9fffa8 0000000a
I/DEBUG ( 1181): be9fffac 00000000
I/DEBUG ( 1181): be9fffb0 0000000a
I/DEBUG ( 1181): be9fffb4 0000000a
I/DEBUG ( 1181): be9fffb8 00000000
I/DEBUG ( 1181): be9fffbc 0000000a
I/DEBUG ( 1181): be9fffc0 bea00340
I/DEBUG ( 1181): be9fffc4 afd1904f /system/lib/libc.so
I/DEBUG ( 1181): be9fffc8 bea0028c
I/DEBUG ( 1181): be9fffcc bea000bc
I/DEBUG ( 1181): be9fffd0 00000046
I/DEBUG ( 1181): be9fffd4 bea000bc
I/DEBUG ( 1181): be9fffd8 0000000a
I/DEBUG ( 1181): be9fffdc aca9821d /system/lib/libdvm.so
I/DEBUG ( 1181): be9fffe0 bea00064
I/DEBUG ( 1181): be9fffe4 bea0028c
I/DEBUG ( 1181): be9fffe8 00000002
I/DEBUG ( 1181): be9fffec ffffffff
I/DEBUG ( 1181): be9ffff0 ffffffff
I/DEBUG ( 1181): be9ffff4 afd1a86b /system/lib/libc.so
I/DEBUG ( 1181): be9ffff8 00000002
I/DEBUG ( 1181): be9ffffc afd1bb99 /system/lib/libc.so
I/DEBUG ( 1181): bea00000 000a65f8
I/DEBUG ( 1181): bea00004 00097148
I/DEBUG ( 1181): bea00008 00000001
I/DEBUG ( 1181): bea0000c 00000000
I/DEBUG ( 1181): bea00010 000970f0
I/DEBUG ( 1181): bea00014 00000073
I/DEBUG ( 1181): bea00018 bea00108
I/DEBUG ( 1181): bea0001c b0005147 /system/bin/linker
I/DEBUG ( 1181): bea00020 00000005
I/DEBUG ( 1181): bea00024 b0006d44 /system/bin/linker
I/DEBUG ( 1181): bea00028 00000004
I/DEBUG ( 1181): bea0002c bea000bc
I/DEBUG ( 1181): bea00030 a2f3bbba /system/lib/libstagefright.so
I/DEBUG ( 1181): bea00034 b000552f /system/bin/linker
I/DEBUG ( 1181): bea00038 0000000f
I/DEBUG ( 1181): bea0003c bea00124
I/DEBUG ( 1181): bea00040 00000002
I/DEBUG ( 1181): bea00044 b0009468
I/DEBUG ( 1181): bea00048 ffffffff
I/DEBUG ( 1181): bea0004c 00000000
I/DEBUG ( 1181): bea00050 bea003a0
I/DEBUG ( 1181): bea00054 afd1904f /system/lib/libc.so
I/DEBUG ( 1181): bea00058 bea00318
I/DEBUG ( 1181): bea0005c bea0014c
I/DEBUG ( 1181): bea00060 0000000f
I/DEBUG ( 1181): bea00064 bea0014c
I/DEBUG ( 1181): bea00068 00000002
I/DEBUG ( 1181): bea0006c aca87b03 /system/lib/libdvm.so
I/DEBUG ( 1181): bea00070 bea000f4
I/DEBUG ( 1181): bea00074 bea00318
I/DEBUG ( 1181): bea00078 00000003
I/DEBUG ( 1181): bea0007c ffffffff
I/DEBUG ( 1181): bea00080 00000000
I/DEBUG ( 1181): bea00084 afd1a86b /system/lib/libc.so
I/DEBUG ( 1181): bea00088 00000003
I/DEBUG ( 1181): bea0008c afd1bb99 /system/lib/libc.so
I/DEBUG ( 1181): bea00090 000081a4 /system/bin/app_process
I/DEBUG ( 1181): bea00094 00000001
I/DEBUG ( 1181): bea00098 00000000
I/DEBUG ( 1181): bea0009c 00000000
I/DEBUG ( 1181): bea000a0 00000000
I/DEBUG ( 1181): bea000a4 00000073
I/DEBUG ( 1181): bea000a8 00000000
I/DEBUG ( 1181): bea000ac 00000009
I/DEBUG ( 1181): bea000b0 fffffff7
I/DEBUG ( 1181): bea000b4 aca87b00 /system/lib/libdvm.so
I/DEBUG ( 1181): bea000b8 00000000
I/DEBUG ( 1181): bea000bc 00000000
I/DEBUG ( 1181): bea000c0 0000000f
I/DEBUG ( 1181): bea000c4 bea00187
I/DEBUG ( 1181): bea000c8 aca87afb /system/lib/libdvm.so
I/DEBUG ( 1181): bea000cc afd41504
I/DEBUG ( 1181): bea000d0 00000000
I/DEBUG ( 1181): bea000d4 00000000
I/DEBUG ( 1181): bea000d8 4df7cf3e
I/DEBUG ( 1181): bea000dc 0002031e
I/DEBUG ( 1181): bea000e0 afd41588
I/DEBUG ( 1181): bea000e4 afd41588
I/DEBUG ( 1181): bea000e8 a2f3bbba /system/lib/libstagefright.so
I/DEBUG ( 1181): bea000ec aca87b00 /system/lib/libdvm.so
I/DEBUG ( 1181): bea000f0 00000003
I/DEBUG ( 1181): bea000f4 00097c10
I/DEBUG ( 1181): bea000f8 00000009
I/DEBUG ( 1181): bea000fc 7379732f
I/DEBUG ( 1181): bea00100 2f6d6574
I/DEBUG ( 1181): bea00104 2f62696c
I/DEBUG ( 1181): bea00108 7362696c
I/DEBUG ( 1181): bea0010c 65676174
I/DEBUG ( 1181): bea00110 67697266
I/DEBUG ( 1181): bea00114 635f7468
I/DEBUG ( 1181): bea00118 726f6c6f
I/DEBUG ( 1181): bea0011c 6e6f635f
I/DEBUG ( 1181): bea00120 73726576
I/DEBUG ( 1181): bea00124 2e6e6f69
I/DEBUG ( 1181): bea00128 00006f73
I/DEBUG ( 1181): bea0012c 00000000
I/DEBUG ( 1181): bea00130 4892fac0
I/DEBUG ( 1181): bea00134 00000000
I/DEBUG ( 1181): bea00138 4892fac0
I/DEBUG ( 1181): bea0013c 00000000
I/DEBUG ( 1181): bea00140 4df7cf3e
I/DEBUG ( 1181): bea00144 068e7781
I/DEBUG ( 1181): bea00148 00001c83
I/DEBUG ( 1181): bea0014c bea000ec
I/DEBUG ( 1181): bea00150 00000000
I/DEBUG ( 1181): bea00154 00000000
I/DEBUG ( 1181): bea00158 a930428f /system/lib/libmedia_jni.so
I/DEBUG ( 1181): bea0015c 00001c68
I/DEBUG ( 1181): bea00160 000081a4 /system/bin/app_process
I/DEBUG ( 1181): bea00164 7379732f
I/DEBUG ( 1181): bea00168 2f6d6574
I/DEBUG ( 1181): bea0016c 2f62696c
I/DEBUG ( 1181): bea00170 bea0038c
I/DEBUG ( 1181): bea00174 65676174
I/DEBUG ( 1181): bea00178 00000023
I/DEBUG ( 1181): bea0017c 000aa620
I/DEBUG ( 1181): bea00180 000a6760
I/DEBUG ( 1181): bea00184 00000000
I/DEBUG ( 1181): bea00188 00000040
I/DEBUG ( 1181): bea0018c 000a6760
I/DEBUG ( 1181): bea00190 0000000f
I/DEBUG ( 1181): bea00194 afd13ec7 /system/lib/libc.so
I/DEBUG ( 1181): bea00198 000a74ec
I/DEBUG ( 1181): bea0019c 00000023
I/DEBUG ( 1181): bea001a0 000aa620
I/DEBUG ( 1181): bea001a4 000a74ec
I/DEBUG ( 1181): bea001a8 00000023
I/DEBUG ( 1181): bea001ac 000a6760
I/DEBUG ( 1181): bea001b0 aecdfde3
I/DEBUG ( 1181): bea001b4 a8a03bf5 /system/lib/libexpat.so
I/DEBUG ( 1181): bea001b8 bea00038
I/DEBUG ( 1181): bea001bc afd12a9f /system/lib/libc.so
I/DEBUG ( 1181): bea001c0 000a9ba0
I/DEBUG ( 1181): bea001c4 00000018
I/DEBUG ( 1181): bea001c8 ffffffc4
I/DEBUG ( 1181): bea001cc 00000004
I/DEBUG ( 1181): bea001d0 bea00208
I/DEBUG ( 1181): bea001d4 000a69b8
I/DEBUG ( 1181): bea001d8 a8a0a661 /system/lib/libexpat.so
I/DEBUG ( 1181): bea001dc 000a8792
I/DEBUG ( 1181): bea001e0 a8a12290
I/DEBUG ( 1181): bea001e4 00000000
I/DEBUG ( 1181): bea001e8 000a69b8
I/DEBUG ( 1181): bea001ec 000aa620
I/DEBUG ( 1181): bea001f0 000a6ad8
I/DEBUG ( 1181): bea001f4 a8a04c83 /system/lib/libexpat.so
I/DEBUG ( 1181): bea001f8 bea0021c
I/DEBUG ( 1181): bea001fc a8a0aae5 /system/lib/libexpat.so
I/DEBUG ( 1181): bea00200 000a81e4
I/DEBUG ( 1181): bea00204 a8a0f697 /system/lib/libexpat.so
I/DEBUG ( 1181): bea00208 00000413
I/DEBUG ( 1181): bea0020c 000aa720
I/DEBUG ( 1181): bea00210 00000400
I/DEBUG ( 1181): bea00214 a8a12290
I/DEBUG ( 1181): bea00218 000a6bb0
I/DEBUG ( 1181): bea0021c 000a6bb0
I/DEBUG ( 1181): bea00220 00000001
I/DEBUG ( 1181): bea00224 afd13ec7 /system/lib/libc.so
I/DEBUG ( 1181): bea00228 000a7528
I/DEBUG ( 1181): bea0022c a8a12290
I/DEBUG ( 1181): bea00230 000a866c
I/DEBUG ( 1181): bea00234 a8a02fb9 /system/lib/libexpat.so
I/DEBUG ( 1181): bea00238 000a9bc1
I/DEBUG ( 1181): bea0023c 0000000c
I/DEBUG ( 1181): bea00240 000a6b58
I/DEBUG ( 1181): bea00244 000a866c
I/DEBUG ( 1181): bea00248 000a6b58
I/DEBUG ( 1181): bea0024c a8a12290
I/DEBUG ( 1181): bea00250 000a8670
I/DEBUG ( 1181): bea00254 a8a02fb9 /system/lib/libexpat.so
I/DEBUG ( 1181): bea00258 000aab28
I/DEBUG ( 1181): bea0025c 000a9bc1
I/DEBUG ( 1181): bea00260 a8a12290
I/DEBUG ( 1181): bea00264 000a8670
I/DEBUG ( 1181): bea00268 000a6cb8
I/DEBUG ( 1181): bea0026c 000a6b58
I/DEBUG ( 1181): bea00270 00000004
I/DEBUG ( 1181): bea00274 000a7598
I/DEBUG ( 1181): bea00278 a8a12290
I/DEBUG ( 1181): bea0027c 000a6bb0
I/DEBUG ( 1181): bea00280 000a6bd0
I/DEBUG ( 1181): bea00284 a8a02fe1 /system/lib/libexpat.so
I/DEBUG ( 1181): bea00288 000a69b8
I/DEBUG ( 1181): bea0028c a8a04d9b /system/lib/libexpat.so
I/DEBUG ( 1181): bea00290 00000001
I/DEBUG ( 1181): bea00294 000a74d8
I/DEBUG ( 1181): bea00298 000a6adc
I/DEBUG ( 1181): bea0029c bea002dc
I/DEBUG ( 1181): bea002a0 bea002e0
I/DEBUG ( 1181): bea002a4 bea002c4
I/DEBUG ( 1181): bea002a8 000a87a0
I/DEBUG ( 1181): bea002ac bea002e4
I/DEBUG ( 1181): bea002b0 00000002
I/DEBUG ( 1181): bea002b4 b0c941d6
I/DEBUG ( 1181): bea002b8 000a6bb0
I/DEBUG ( 1181): bea002bc 000a6bb0
I/DEBUG ( 1181): bea002c0 a905ffe0
I/DEBUG ( 1181): bea002c4 a9042bd5 /system/lib/libmedia.so
I/DEBUG ( 1181): bea002c8 a904ea87 /system/lib/libmedia.so
I/DEBUG ( 1181): bea002cc 0000006c
and then it starts over from
I/Netd ( 1259): Netd 1.0 starting
Incase it's a stupid newbie mistake, i apologize profusely...please don't kill me.
And, if you need more information, please let me know, and I'll post it as quickly as I can.
Thanks!
jespersp
Anyone have any bright ideas?
I also have a dumpstate available, couldn't see anything that would help me there either, but I can post it if it would help.
Thanks in advance!
jespersp
you said you used the vendor files from CM, you used 2.3.4, right?
Not sure if it matters though.
Psionfenix said:
you said you used the vendor files from CM, you used 2.3.4, right?
Not sure if it matters though.
Click to expand...
Click to collapse
Ye, first attempt was with the 2.3.3 from my phone(running CM 7.0.3 currently), but when that didn't work, i grabbed the new ones. Unfortunately no difference.
Thanks for trying
jespersp
pzycojsp: I've got absolutely same problem... Any ideas/solutions ... ?
Havent found any solution unfortunately
Sent from my Desire HD using XDA App
Trying to port Evo Shift 2.3 stock rooted to the incredible, and on boot, I get this with the logcat:
I/dalvikvm( 175): Zip is good, but no classes.dex inside, and no valid .odex file in the same directory
I/DMAgent ( 87): SMD Port open success.[v1.1.2.12231200]
I/DEBUG ( 76): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
I/DEBUG ( 76): Build fingerprint: 'verizon_wwe/htc_inc/inc:2.3.3/GRI40/65464:userdebug/test-keys'
I/DEBUG ( 76): pid: 175, tid: 175 >>> zygote <<<
I/DEBUG ( 76): signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr deadbaad
I/DEBUG ( 76): r0 00000027 r1 deadbaad r2 00000000 r3 00000000
I/DEBUG ( 76): r4 00000000 r5 00000000 r6 0004dfc8 r7 0000a000
I/DEBUG ( 76): r8 8008ef2c r9 00000000 10 00000000 fp 00016fb8
I/DEBUG ( 76): ip ffffffff sp bec3a330 lr afd15de5 pc afd15e10 cpsr 60000030
I/DEBUG ( 76): d0 726f746365726964 d1 66207865646f2e20
I/DEBUG ( 76): d2 74206e6920656c69 d3 20656d6173206568
I/DEBUG ( 76): d4 752e6f64616c6163 d5 6c6163532e6c6974
I/DEBUG ( 76): d6 2e6c6974556f6461 d7 7379732f3a72616a
I/DEBUG ( 76): d8 0000000000000000 d9 0000000000000000
I/DEBUG ( 76): d10 0000000000000000 d11 0000000000000000
I/DEBUG ( 76): d12 0000000000000000 d13 0000000000000000
I/DEBUG ( 76): d14 0000000000000000 d15 0000000000000000
I/DEBUG ( 76): d16 0000000000000000 d17 0000000000000000
I/DEBUG ( 76): d18 0000000000000000 d19 0000000000000000
I/DEBUG ( 76): d20 0000000000000000 d21 0000000000000000
I/DEBUG ( 76): d22 0000000000000000 d23 0000000000000000
I/DEBUG ( 76): d24 0000000000000000 d25 0000000000000000
I/DEBUG ( 76): d26 0000000000000000 d27 0000000000000000
I/DEBUG ( 76): d28 0000000000000000 d29 0000000000000000
I/DEBUG ( 76): d30 0000000000000000 d31 0000000000000000
I/DEBUG ( 76): scr 00000000
I/DEBUG ( 76):
I/DEBUG ( 76): #00 pc 00015e10 /data/syslib/libc.so
I/DEBUG ( 76): #01 pc 0001377c /data/syslib/libc.so
I/DEBUG ( 76): #02 pc 00014642 /data/syslib/libc.so
I/DEBUG ( 76): #03 pc 0004e932 /data/syslib/libdvm.so
I/DEBUG ( 76):
I/DEBUG ( 76): code around pc:
I/DEBUG ( 76): afd15df0 2c006824 e028d1fb b13368db c064f8df
I/DEBUG ( 76): afd15e00 44fc2401 4000f8cc 49124798 25002027
I/DEBUG ( 76): afd15e10 f7f57008 2106ec5e edbaf7f6 460aa901
I/DEBUG ( 76): afd15e20 f04f2006 95015380 95029303 e920f7f6
I/DEBUG ( 76): afd15e30 462aa905 f7f62002 f7f5e92c 2106ec4a
I/DEBUG ( 76):
I/DEBUG ( 76): code around lr:
I/DEBUG ( 76): afd15dc4 ad052204 4628680c 31fff04f e8c2f7f7
I/DEBUG ( 76): afd15dd4 6084f46f 90054629 20022200 e956f7f6
I/DEBUG ( 76): afd15de4 447b4b1e b973681b 4623b16c 2c006824
I/DEBUG ( 76): afd15df4 e028d1fb b13368db c064f8df 44fc2401
I/DEBUG ( 76): afd15e04 4000f8cc 49124798 25002027 f7f57008
I/DEBUG ( 76):
I/DEBUG ( 76): stack:
I/DEBUG ( 76): bec3a2f0 0004dff8
I/DEBUG ( 76): bec3a2f4 afd14645 /data/syslib/libc.so
I/DEBUG ( 76): bec3a2f8 0004dff8
I/DEBUG ( 76): bec3a2fc 8005c885 /data/syslib/libdvm.so
I/DEBUG ( 76): bec3a300 00000000
I/DEBUG ( 76): bec3a304 bec3a3a4
I/DEBUG ( 76): bec3a308 0000007d
I/DEBUG ( 76): bec3a30c afd14665 /data/syslib/libc.so
I/DEBUG ( 76): bec3a310 00000000
I/DEBUG ( 76): bec3a314 0004e078
I/DEBUG ( 76): bec3a318 bec3a344
I/DEBUG ( 76): bec3a31c 40010000
I/DEBUG ( 76): bec3a320 bec3a344
I/DEBUG ( 76): bec3a324 0004dfc8
I/DEBUG ( 76): bec3a328 df002777
I/DEBUG ( 76): bec3a32c e3a070ad
I/DEBUG ( 76): #00 bec3a330 00000000
I/DEBUG ( 76): bec3a334 00001040
I/DEBUG ( 76): bec3a338 00000000
I/DEBUG ( 76): bec3a33c ffffffff
I/DEBUG ( 76): bec3a340 0004dfc8
I/DEBUG ( 76): bec3a344 fffffbdf
I/DEBUG ( 76): bec3a348 8008ef2c /data/syslib/libdvm.so
I/DEBUG ( 76): bec3a34c afd46568
I/DEBUG ( 76): bec3a350 ffffffff
I/DEBUG ( 76): bec3a354 afd13781 /data/syslib/libc.so
I/DEBUG ( 76): #01 bec3a358 00000000
I/DEBUG ( 76): bec3a35c ffffffff
I/DEBUG ( 76): bec3a360 ffffffff
I/DEBUG ( 76): bec3a364 00000000
I/DEBUG ( 76): bec3a368 8008ef2c /data/syslib/libdvm.so
I/DEBUG ( 76): bec3a36c afd14645 /data/syslib/libc.so
I/ServiceManager( 73): service 'media.audio_flinger' died
I/ServiceManager( 73): service 'media.player' died
I/ServiceManager( 73): service 'media.camera' died
I/ServiceManager( 73): service 'media.audio_policy' died
I/Netd ( 177): Netd 1.0 starting
I//system/bin/iptables( 177): Flushing chain `INPUT'
I//system/bin/iptables( 177): Flushing chain `OUTPUT'
I//system/bin/iptables( 177): Flushing chain `FORWARD'
I//system/bin/iptables( 177): Flushing chain `PREROUTING'
I//system/bin/iptables( 177): Flushing chain `OUTPUT'
I//system/bin/iptables( 177): Flushing chain `POSTROUTING'
Can't fix it. Any suggestions?
You have to deodex the base Rom (evoshift) before porting. If the CPU arch is different of both phones you will have to use lib from your rom and all Java part from the other rom.
Sent from my LG-P500 using XDA Premium App
Got it to work, flashed it, and everything works except for 1 thing: Landscape mode. Is there any way to get it to work? It doesn't work for any application.
Swap out the akmd bin file with a factory one from your device.
Sent from my PG86100 using XDA Premium App
dmeadows013 said:
Got it to work, flashed it, and everything works except for 1 thing: Landscape mode. Is there any way to get it to work? It doesn't work for any application.
Click to expand...
Click to collapse
sir i saw the lines of this in my stock its same in lsm manger but i dont know why this is giving me error can you help me sir
E/art ( 2919): No implementation found for int android.os.storage.sensitive.SecureStorageLSM.lsmInitialize() (tried Java_android_os_storage_sensitive_SecureStorageLSM_lsmInitialize and Java_android_os_storage_sensitive_SecureStorageLSM_lsmInitialize__)
E/System ( 2919): ******************************************
E/System ( 2919): ************ Failure starting system services
E/System ( 2919): java.lang.UnsatisfiedLinkError: No implementation found for int android.os.storage.sensitive.SecureStorageLSM.lsmInitialize() (tried Java_android_os_storage_sensitive_SecureStorageLSM_lsmInitialize and Java_android_os_storage_sensitive_SecureStorageLSM_lsmInitialize__)
E/System ( 2919): at android.os.storage.sensitive.SecureStorageLSM.lsmInitialize(Native Method)
E/System ( 2919): at android.os.storage.sensitive.SecureStorageLSM.initialize(SecureStorageLSM.java:49)
E/System ( 2919): at com.android.server.LSManager.<init>(LSManager.java:95)
E/System ( 2919): at com.android.server.SystemServer.startOtherServices(SystemServer.java:765)
E/System ( 2919): at com.android.server.SystemServer.run(SystemServer.java:459)
E/System ( 2919): at com.android.server.SystemServer.main(SystemServer.java:358)
E/System ( 2919): at java.lang.reflect.Method.invoke(Native Method)
E/System ( 2919): at java.lang.reflect.Method.invoke(Method.java:372)
E/System ( 2919): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1404)
E/System ( 2919): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1199)
Okay, so, there were a number of games that prior to .21 either wouldn't start (e.g., Dead Space, Swords and Soldiers, Avadon) or wouldn't run without crashing (Defense Zone HD, Jelly Defense, Myth Defenders). I'm very happy to report that after .21, each and every game now seems to run perfectly.
That alone makes .21 a great update. Anybody else experiencing better game stability (or maybe apps in general)?
Update: Changed the thread name because there are some real problems with games and .21 did NOT fix them.
Defense Zone HD & Dead Space were running fine defore update for me.
Haven't tried the others you mentioned
ill make sure to check. hope this is true for the most part. I hated that freezing up and screen jumping after a while when playing specific games. maybe now ill reinstall that six guns game again
flub said:
Defense Zone HD & Dead Space were running fine defore update for me.
Haven't tried the others you mentioned
Click to expand...
Click to collapse
Hmmm... Dead Space crashed for me every time I tried to load it, and Defense Zone HD wouldn't finish a level without dropping to the home screen.
Maybe there was some corrupted data in my system that the update flushed out...
Draw Something worked before update but now no longer does.
Try clearing the app data and cache, note this will erase any saved games or other settings but should get the app working.
my shadowgun THD still freezes up after playing for a while. I hate it and its annoying. we need to figure out what's causing this issue. only seems to go away for a while after a fresh reboot.
words with friends stopped working
for me
Edit: just updated and now its working
flub said:
Defense Zone HD & Dead Space were running fine defore update for me.
Haven't tried the others you mentioned
Click to expand...
Click to collapse
Dead space runs, however since ICS it always switches to portrait mode and thus was unplayable for me.
Waiting for the Update to hit Germany...
Does anyone know what Glowball is suppose to be?
It's pre-installed and I figured it's a game, but it just closes itself after a few minutes, just tried again after the .21 update and same thing.
Well deadspace ran fine for me before this update. Now it crashes and closes itself. Hope they fix it.
Sent from my Transformer Prime TF201 using Tapatalk
I have been getting segfaults related to OpenGL since the update notably with Dream Zoo. Was fine before on .15.
For those getting crashes in games, can you please run logcat while it crashes?
Log for Dream Zoo
Code:
D/NvOsDebugPrintf(18406): NvRmChannelSubmit failed (err = 196623, SyncPointValue = 53868005)
D/NvOsDebugPrintf(18406): NvRmChannelSubmit failed (err = 196623, SyncPointValue = 53868005)
F/libc (18406): Fatal signal 11 (SIGSEGV) at 0x00000000 (code=1)
D/dalvikvm(18406): GC_CONCURRENT freed 1748K, 25% free 18509K/24583K, paused 6ms+21ms
I/DEBUG ( 4292): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
I/DEBUG ( 4292): Build fingerprint: 'asus/WW_epad/TF201:4.0.3/IML74K/WW_epad-9.4.2.21-20120323:user/release-keys'
I/DEBUG ( 4292): pid: 18406, tid: 18433 >>> com.zynga.dreamzoo <<<
I/DEBUG ( 4292): signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 00000000
I/DEBUG ( 4292): r0 5c028a0c r1 00000000 r2 00000150 r3 00000014
I/DEBUG ( 4292): r4 00000004 r5 00000004 r6 00000000 r7 5c028a0c
I/DEBUG ( 4292): r8 014317a8 r9 0000ba0c 10 017a8f84 fp 00000004
I/DEBUG ( 4292): ip 40000000 sp 5c48fb00 lr 5b4c54b0 pc 4007fb6c cpsr 20000010
I/DEBUG ( 4292): d0 be41f4ef00000000 d1 401746eabffeee07
I/DEBUG ( 4292): d2 3faba1ba1bea9b02 d3 3fd3333333333333
I/DEBUG ( 4292): d4 c02a24043f800000 d5 3f1227d880000000
I/DEBUG ( 4292): d6 80000000bf3838dc d7 3f8000003f800000
I/DEBUG ( 4292): d8 4040000040400000 d9 4040000000000000
I/DEBUG ( 4292): d10 0000000000000000 d11 bf7de68b00000000
I/DEBUG ( 4292): d12 494a8b7480000000 d13 3f80000000000000
I/DEBUG ( 4292): d14 0000000000000000 d15 c02a2404402f238d
I/DEBUG ( 4292): d16 bf7de6adcefd287a d17 bf7de68b00000000
I/DEBUG ( 4292): d18 be81677e943d0919 d19 3fd5555555555563
I/DEBUG ( 4292): d20 0000000000000000 d21 bd8850128fb3dd95
I/DEBUG ( 4292): d22 3f9664f48433b301 d23 3f8226e3e992e451
I/DEBUG ( 4292): d24 3f57dbc8ff11c32b d25 3f6d6d22c990c419
I/DEBUG ( 4292): d26 3f3026f71ac62410 d27 3f4344d8f311a3b6
I/DEBUG ( 4292): d28 3f12b80f33437cf7 d29 3f147e889ffc3c75
I/DEBUG ( 4292): d30 3efb2a7074bf7ad4 d31 3ff0000000000000
I/DEBUG ( 4292): scr 80000012
I/DEBUG ( 4292):
I/DEBUG ( 4292): #00 pc 0000db6c /system/lib/libc.so (memcpy)
I/DEBUG ( 4292): #01 pc 000314ac /system/lib/egl/libGLESv2_tegra.so
I/DEBUG ( 4292): #02 pc 00031d5c /system/lib/egl/libGLESv2_tegra.so
I/DEBUG ( 4292): #03 pc 0000c62c /system/lib/egl/libGLESv2_tegra.so (glDrawArrays)
I/DEBUG ( 4292): #04 pc 0004ec5e /system/lib/libandroid_runtime.so
I/DEBUG ( 4292): #05 pc 0001ec30 /system/lib/libdvm.so (dvmPlatformInvoke)
I/DEBUG ( 4292): #06 pc 00058f6c /system/lib/libdvm.so (_Z16dvmCallJNIMethodPKjP6JValuePK6MethodP6Thread)
I/DEBUG ( 4292):
I/DEBUG ( 4292): code around pc:
I/DEBUG ( 4292): 4007fb4c 1a00002b e88d0fe0 e2603000 e213301c +........0`..0..
I/DEBUG ( 4292): 4007fb5c 0a00000a e1530002 8202301c e1b0ce03 ......S..0......
I/DEBUG ( 4292): 4007fb6c 28b100f0 48b10300 28a000f0 48a00300 ...(...H...(...H
I/DEBUG ( 4292): 4007fb7c e3130004 1491a004 1480a004 e0422003 ............. B.
I/DEBUG ( 4292): 4007fb8c e2522020 3a000008 e3c1c01f e28cc040 R....:[email protected]
I/DEBUG ( 4292):
I/DEBUG ( 4292): code around lr:
I/DEBUG ( 4292): 5b4c5490 1affff39 e3a0c003 eaffff7b e59de05c 9.......{...\...
I/DEBUG ( 4292): 5b4c54a0 e1a00007 e1a01006 e0020e95 ebff514c ............LQ..
I/DEBUG ( 4292): 5b4c54b0 eaffff3e e0883284 e1a01009 e2832070 >....2......p ..
I/DEBUG ( 4292): 5b4c54c0 e59e0048 e3a03010 e2899010 ebff50de H....0.......P..
I/DEBUG ( 4292): 5b4c54d0 eaffff57 e3a0c002 eaffff6b e2422b05 W.......k....+B.
I/DEBUG ( 4292):
I/DEBUG ( 4292): stack:
I/DEBUG ( 4292): 5c48fac0 00000009
I/DEBUG ( 4292): 5c48fac4 014468a4 [heap]
I/DEBUG ( 4292): 5c48fac8 00000000
I/DEBUG ( 4292): 5c48facc 57c0ed4d /system/lib/libardrv_dynamic.so
I/DEBUG ( 4292): 5c48fad0 00000000
I/DEBUG ( 4292): 5c48fad4 00000000
I/DEBUG ( 4292): 5c48fad8 014317a8 [heap]
I/DEBUG ( 4292): 5c48fadc 017a9428 [heap]
I/DEBUG ( 4292): 5c48fae0 014468a0 [heap]
I/DEBUG ( 4292): 5c48fae4 017a9428 [heap]
I/DEBUG ( 4292): 5c48fae8 00000001
I/DEBUG ( 4292): 5c48faec 5b4ce0e8 /system/lib/egl/libGLESv2_tegra.so
I/DEBUG ( 4292): 5c48faf0 014468a4 [heap]
I/DEBUG ( 4292): 5c48faf4 00000002
I/DEBUG ( 4292): 5c48faf8 df0027ad
I/DEBUG ( 4292): 5c48fafc 00000000
I/DEBUG ( 4292): #00 5c48fb00 00000004
I/DEBUG ( 4292): 5c48fb04 00000000
I/DEBUG ( 4292): 5c48fb08 5c028a0c /dev/nvmap
I/DEBUG ( 4292): 5c48fb0c 014317a8 [heap]
I/DEBUG ( 4292): 5c48fb10 0000ba0c
I/DEBUG ( 4292): 5c48fb14 017a8f84 [heap]
I/DEBUG ( 4292): 5c48fb18 00000004
I/DEBUG ( 4292): 5c48fb1c 5c028a0c /dev/nvmap
I/DEBUG ( 4292): 5c48fb20 00000004
I/DEBUG ( 4292): 5c48fb24 5b4c54b0 /system/lib/egl/libGLESv2_tegra.so
I/DEBUG ( 4292): #01 5c48fb28 00000004
I/DEBUG ( 4292): 5c48fb2c 00000002
I/DEBUG ( 4292): 5c48fb30 00000005
I/DEBUG ( 4292): 5c48fb34 5c48fb74
I/DEBUG ( 4292): 5c48fb38 00000000
I/DEBUG ( 4292): 5c48fb3c 014465d8 [heap]
I/DEBUG ( 4292): 5c48fb40 00000078
I/DEBUG ( 4292): 5c48fb44 00000000
I/DEBUG ( 4292): 5c48fb48 5b4f783c /system/lib/egl/libGLESv2_tegra.so
I/DEBUG ( 4292): 5c48fb4c 5b4f08c0 /system/lib/egl/libGLESv2_tegra.so
I/DEBUG ( 4292): 5c48fb50 ffffffe8
I/DEBUG ( 4292): 5c48fb54 00000000
I/DEBUG ( 4292): 5c48fb58 00000000
I/DEBUG ( 4292): 5c48fb5c 014317a8 [heap]
I/DEBUG ( 4292): 5c48fb60 00000054
I/DEBUG ( 4292): 5c48fb64 00000054
I/DEBUG ( 4292): 5c48fb68 00000000
I/DEBUG ( 4292): 5c48fb6c 00000054
I/DEBUG ( 4292): 5c48fb70 0000000c
I/DEBUG ( 4292): 5c48fb74 5b4f08a4 /system/lib/egl/libGLESv2_tegra.so
I/DEBUG ( 4292): 5c48fb78 00000004
I/DEBUG ( 4292): 5c48fb7c 5b4c5d60 /system/lib/egl/libGLESv2_tegra.so
I/BootReceiver( 194): Copying /data/tombstones/tombstone_09 to DropBox (SYSTEM_TOMBSTONE)
I/ActivityManager( 194): Process com.zynga.dreamzoo (pid 18406) has died.
I/WindowManager( 194): WIN DEATH: Window{4175cf88 com.zynga.dreamzoo/com.zynga.zooville.activities.ZooVilleGameActivity paused=false}
Log for Deadspace
Code:
D/NvOsDebugPrintf(19702): NvRmChannelSubmit failed (err = 196623, SyncPointValue = 53925972)
D/NvOsDebugPrintf(19702): NvRmChannelSubmit failed (err = 196623, SyncPointValue = 53925972)
F/libc (19702): Fatal signal 11 (SIGSEGV) at 0x00000000 (code=1)
I/DEBUG ( 4292): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
I/DEBUG ( 4292): Build fingerprint: 'asus/WW_epad/TF201:4.0.3/IML74K/WW_epad-9.4.2.21-20120323:user/release-keys'
I/DEBUG ( 4292): pid: 19702, tid: 19714 >>> com.ea.deadspace_row <<<
I/DEBUG ( 4292): signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 00000000
I/DEBUG ( 4292): r0 0240f1b8 r1 0240f200 r2 00000000 r3 00000001
I/DEBUG ( 4292): r4 0240f200 r5 00000505 r6 00000000 r7 00006028
I/DEBUG ( 4292): r8 0240f1b8 r9 00000018 10 00000000 fp 0240f484
I/DEBUG ( 4292): ip 57a5d874 sp 5cc7b290 lr 57a29cc8 pc 00000000 cpsr 20000010
I/DEBUG ( 4292): d0 0000000000000000 d1 0000000000000000
I/DEBUG ( 4292): d2 00000000bf800000 d3 3f7fffff3f7fffff
I/DEBUG ( 4292): d4 0000000000000000 d5 0000000000000000
I/DEBUG ( 4292): d6 3f80000000000000 d7 3f8000003f800000
I/DEBUG ( 4292): d8 0000000000000000 d9 0000000000000000
I/DEBUG ( 4292): d10 0000000000000000 d11 0000000000000000
I/DEBUG ( 4292): d12 0000000000000000 d13 0000000000000000
I/DEBUG ( 4292): d14 0000000000000000 d15 0000000000000000
I/DEBUG ( 4292): d16 000000000000237e d17 3f1d9e60b98a5767
I/DEBUG ( 4292): d18 3f1d9feba79e311f d19 3fd5555566f6d160
I/DEBUG ( 4292): d20 bfc99999b505e5f2 d21 3fc24924a870f026
I/DEBUG ( 4292): d22 bfbc71c7241be56d d23 3fb745cde62e3b24
I/DEBUG ( 4292): d24 bfb3b0f2cc40edd5 d25 3fb10d66b961e5ee
I/DEBUG ( 4292): d26 bfadde2d76f088e8 d27 3fa97b4b348a6136
I/DEBUG ( 4292): d28 bfa2b4442c6a6c2f d29 0000000000000000
I/DEBUG ( 4292): d30 0000000000000000 d31 0000000000000000
I/DEBUG ( 4292): scr 60000012
I/DEBUG ( 4292):
I/DEBUG ( 4292): #00 pc 00000000
I/DEBUG ( 4292): #01 pc 0002fcc4 /system/lib/egl/libGLESv2_tegra.so
I/DEBUG ( 4292): #02 pc 0002fd88 /system/lib/egl/libGLESv2_tegra.so
I/DEBUG ( 4292): #03 pc 0000c1b8 /system/lib/egl/libGLESv2_tegra.so
I/DEBUG ( 4292): #04 pc 00002044 /system/lib/libnvrm_graphics.so
I/DEBUG ( 4292): #05 pc 00001c24 /system/lib/libnvrm_graphics.so
I/DEBUG ( 4292): #06 pc 00001c88 /system/lib/libnvrm_graphics.so (NvRmStreamFlush)
I/DEBUG ( 4292): #07 pc 00004ab8 /system/lib/libardrv_dynamic.so (NvArdFlush)
I/DEBUG ( 4292): #08 pc 0002fa84 /system/lib/egl/libGLESv2_tegra.so
I/DEBUG ( 4292): #09 pc 000274ac /system/lib/egl/libGLESv2_tegra.so
I/DEBUG ( 4292): #10 pc 00027a90 /system/lib/egl/libGLESv2_tegra.so
I/DEBUG ( 4292): #11 pc 0000c1e4 /system/lib/egl/libGLESv2_tegra.so
I/DEBUG ( 4292): #12 pc 00002044 /system/lib/libnvrm_graphics.so
I/DEBUG ( 4292): #13 pc 00001c24 /system/lib/libnvrm_graphics.so
I/DEBUG ( 4292): #14 pc 00001c88 /system/lib/libnvrm_graphics.so (NvRmStreamFlush)
I/DEBUG ( 4292): #15 pc 00004ab8 /system/lib/libardrv_dynamic.so (NvArdFlush)
I/DEBUG ( 4292): #16 pc 0002fa84 /system/lib/egl/libGLESv2_tegra.so
I/DEBUG ( 4292): #17 pc 000274ac /system/lib/egl/libGLESv2_tegra.so
I/DEBUG ( 4292): #18 pc 00027a90 /system/lib/egl/libGLESv2_tegra.so
I/DEBUG ( 4292): #19 pc 0000c1e4 /system/lib/egl/libGLESv2_tegra.so
I/DEBUG ( 4292): #20 pc 00002044 /system/lib/libnvrm_graphics.so
I/DEBUG ( 4292): #21 pc 00001c24 /system/lib/libnvrm_graphics.so
I/DEBUG ( 4292): #22 pc 00001c88 /system/lib/libnvrm_graphics.so (NvRmStreamFlush)
I/DEBUG ( 4292): #23 pc 00004ab8 /system/lib/libardrv_dynamic.so (NvArdFlush)
I/DEBUG ( 4292): #24 pc 0002fa84 /system/lib/egl/libGLESv2_tegra.so
I/DEBUG ( 4292): #25 pc 000274ac /system/lib/egl/libGLESv2_tegra.so
I/DEBUG ( 4292): #26 pc 00027a90 /system/lib/egl/libGLESv2_tegra.so
I/DEBUG ( 4292): #27 pc 0000c1e4 /system/lib/egl/libGLESv2_tegra.so
I/DEBUG ( 4292): #28 pc 00002044 /system/lib/libnvrm_graphics.so
I/DEBUG ( 4292): #29 pc 00001c24 /system/lib/libnvrm_graphics.so
I/DEBUG ( 4292): #30 pc 00001c88 /system/lib/libnvrm_graphics.so (NvRmStreamFlush)
I/DEBUG ( 4292): #31 pc 00004ab8 /system/lib/libardrv_dynamic.so (NvArdFlush)
I/DEBUG ( 4292):
I/DEBUG ( 4292): code around pc:
I/DEBUG ( 4292): 00000000 ffffffff ffffffff ffffffff ffffffff ................
I/DEBUG ( 4292): 00000010 ffffffff ffffffff ffffffff ffffffff ................
I/DEBUG ( 4292): 00000020 ffffffff ffffffff ffffffff ffffffff ................
I/DEBUG ( 4292): 00000030 ffffffff ffffffff ffffffff ffffffff ................
I/DEBUG ( 4292): 00000040 ffffffff ffffffff ffffffff ffffffff ................
I/DEBUG ( 4292):
I/DEBUG ( 4292): code around lr:
I/DEBUG ( 4292): 57a29ca8 2a000002 e1a06086 e3560703 9a000004 ...*.`....V.....
I/DEBUG ( 4292): 57a29cb8 e28dd010 e8bd81f0 e1a0e00f e591f138 ............8...
I/DEBUG ( 4292): 57a29cc8 eaffffef e2880fb2 e3a07002 ebff5811 .........p...X..
I/DEBUG ( 4292): 57a29cd8 e5981000 e59802c8 e3a03004 e1a02006 .........0... ..
I/DEBUG ( 4292): 57a29ce8 e58d7000 e3a0cc3d e58dc004 eb0053f6 .p..=........S..
I/DEBUG ( 4292):
I/DEBUG ( 4292): stack:
I/DEBUG ( 4292): 5cc7b250 00000000
I/DEBUG ( 4292): 5cc7b254 4008c47f /system/lib/libc.so
I/DEBUG ( 4292): 5cc7b258 01214408 [heap]
I/DEBUG ( 4292): 5cc7b25c 4008c4a7 /system/lib/libc.so
I/DEBUG ( 4292): 5cc7b260 400b555c /system/lib/libc.so
I/DEBUG ( 4292): 5cc7b264 400b56b0 /system/lib/libc.so
I/DEBUG ( 4292): 5cc7b268 00000000
I/DEBUG ( 4292): 5cc7b26c 4008bfa1 /system/lib/libc.so
I/DEBUG ( 4292): 5cc7b270 5745d1a0 /system/lib/libnvos.so
I/DEBUG ( 4292): 5cc7b274 400b56b0 /system/lib/libc.so
I/DEBUG ( 4292): 5cc7b278 5745d338 /system/lib/libnvos.so
I/DEBUG ( 4292): 5cc7b27c 5745970c /system/lib/libnvos.so
I/DEBUG ( 4292): 5cc7b280 5cc7b3f4
I/DEBUG ( 4292): 5cc7b284 6d52764e
I/DEBUG ( 4292): 5cc7b288 df0027ad
I/DEBUG ( 4292): 5cc7b28c 00000000
I/DEBUG ( 4292): #01 5cc7b290 696d6275
I/DEBUG ( 4292): 5cc7b294 61662074
I/DEBUG ( 4292): 5cc7b298 01205fb8 [heap]
I/DEBUG ( 4292): 5cc7b29c 57a21a34 /system/lib/egl/libGLESv2_tegra.so
I/DEBUG ( 4292): 5cc7b2a0 0240f1b8 [heap]
I/DEBUG ( 4292): 5cc7b2a4 00000505
I/DEBUG ( 4292): 5cc7b2a8 00000000
I/DEBUG ( 4292): 5cc7b2ac 0003000f
I/DEBUG ( 4292): 5cc7b2b0 00000018
I/DEBUG ( 4292): 5cc7b2b4 57a29d8c /system/lib/egl/libGLESv2_tegra.so
I/BootReceiver( 194): Copying /data/tombstones/tombstone_00 to DropBox (SYSTEM_TOMBSTONE)
V/Sensors ( 194): setDelay - sensor Accelerometer (handle 4), rate 66 ms (15.00 Hz)
V/Sensors ( 194): set fifo rate - divider : 13, delay : 66 ms (15.00 Hz)
I/MPL-fifo( 194): Actual ODR: 25000 mHz
I/WindowManager( 194): WIN DEATH: Window{417cd8c0 SurfaceView paused=false}
I/ActivityManager( 194): Process com.ea.deadspace_row (pid 19702) has died.
W/ActivityManager( 194): Force removing ActivityRecord{410c8ad8 com.ea.deadspace_row/.DeadSpaceActivity}: app died, no saved state
I/WindowManager( 194): WIN DEATH: Window{41352070 com.ea.deadspace_row/com.ea.deadspace_row.DeadSpaceActivity paused=false}
Log for Glowball
Code:
D/NvOsDebugPrintf(21458): NvRmChannelSubmit failed (err = 196623, SyncPointValue = 61642774)
D/NvOsDebugPrintf(21458): NvRmChannelSubmit failed (err = 196623, SyncPointValue = 61642774)
F/libc (21458): Fatal signal 11 (SIGSEGV) at 0x00000000 (code=1)
I/DEBUG ( 4292): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
I/DEBUG ( 4292): Build fingerprint: 'asus/WW_epad/TF201:4.0.3/IML74K/WW_epad-9.4.2.21-20120323:user/release-keys'
I/DEBUG ( 4292): pid: 21458, tid: 21470 >>> com.nvidia.demo.glowball <<<
I/DEBUG ( 4292): signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 00000000
I/DEBUG ( 4292): r0 014060f8 r1 01408118 r2 00000120 r3 00000000
I/DEBUG ( 4292): r4 014060f8 r5 00000000 r6 00000004 r7 014080d0
I/DEBUG ( 4292): r8 00000001 r9 00000120 10 00000000 fp 00000000
I/DEBUG ( 4292): ip fffffc48 sp 5b7a79b0 lr 57a080a4 pc 57a2b9e0 cpsr 60000010
I/DEBUG ( 4292): d0 3f80000000000000 d1 00003e80ffffc180
I/DEBUG ( 4292): d2 41800000c67a0000 d3 000000003f0fb065
I/DEBUG ( 4292): d4 40e568d900000000 d5 419e666600000000
I/DEBUG ( 4292): d6 467a0000bf60a940 d7 3f8000003f800000
I/DEBUG ( 4292): d8 bcb9ce643c0111ca d9 00000000bf783f5d
I/DEBUG ( 4292): d10 0000000000000000 d11 0000000000000000
I/DEBUG ( 4292): d12 0000000000000000 d13 0000000000000000
I/DEBUG ( 4292): d14 0000000000000000 d15 0000000000000000
I/DEBUG ( 4292): d16 3fd892edcc5e954a d17 3fd7768820000000
I/DEBUG ( 4292): d18 3f91c65ac5e954a8 d19 3fd5555555555563
I/DEBUG ( 4292): d20 0000000000000000 d21 3f4e9941fd95f7d5
I/DEBUG ( 4292): d22 3f967603f3b85b3a d23 3f8234b95e1536f4
I/DEBUG ( 4292): d24 3f57ee8e9c77b687 d25 3f6d837749a17a0f
I/DEBUG ( 4292): d26 3f303cbf82ec106d d27 3f4350a4b3ce7364
I/DEBUG ( 4292): d28 3f12d777398a38e4 d29 3f1468092c141983
I/DEBUG ( 4292): d30 3efb2a7074bf7ad4 d31 be7374e0e4800000
I/DEBUG ( 4292): scr 20000013
I/DEBUG ( 4292):
I/DEBUG ( 4292): #00 pc 000319e0 /system/lib/egl/libGLESv2_tegra.so
I/DEBUG ( 4292): #01 pc 0000e0a0 /system/lib/egl/libGLESv2_tegra.so (glDrawElements)
I/DEBUG ( 4292): #02 pc 00382e58 /data/data/com.nvidia.demo.glowball/lib/libnvdemo.so (_ZN16NRVertexBufferGL4DrawER7NRenderijP14NRVertexBuffer)
I/DEBUG ( 4292): #03 pc 0046854c /data/data/com.nvidia.demo.glowball/lib/libnvdemo.so (_ZN6NVMesh4DrawEP8NVViewerP16NVRenderSettingsiP14NRVertexBufferP18NVVertexIndexGroup)
I/DEBUG ( 4292): #04 pc 00445190 /data/data/com.nvidia.demo.glowball/lib/libnvdemo.so (_ZN18NVVertexIndexGroup4DrawEP8NVViewerP16NVRenderSettingsiP14NRVertexBuffer)
I/DEBUG ( 4292): #05 pc 004bc52c /data/data/com.nvidia.demo.glowball/lib/libnvdemo.so (_ZN8NVViewer16DrawSortedShapesEP12NVRenderPass)
I/DEBUG ( 4292): #06 pc 004bcb98 /data/data/com.nvidia.demo.glowball/lib/libnvdemo.so (_ZN8NVViewer6RenderEP12NVRenderPass)
I/DEBUG ( 4292): #07 pc 0047fa28 /data/data/com.nvidia.demo.glowball/lib/libnvdemo.so (_ZN12NVRenderPass6RenderEP8NVViewer)
I/DEBUG ( 4292): #08 pc 004bc0b0 /data/data/com.nvidia.demo.glowball/lib/libnvdemo.so (_ZN8NVViewer11Update_DrawEv)
I/DEBUG ( 4292): #09 pc 004bf1b8 /data/data/com.nvidia.demo.glowball/lib/libnvdemo.so (_ZN8NVViewer6OnDrawERK11NRDrawEvent)
I/DEBUG ( 4292): #10 pc 00384c04 /data/data/com.nvidia.demo.glowball/lib/libnvdemo.so (_ZN10NRWindowGL14PropagateEventERK11NRDrawEvent)
I/DEBUG ( 4292): #11 pc 00386944 /data/data/com.nvidia.demo.glowball/lib/libnvdemo.so (_ZN10NRWindowGL8MainLoopEPv)
I/DEBUG ( 4292):
I/DEBUG ( 4292): code around pc:
I/DEBUG ( 4292): 57a2b9c0 e79a3107 e59d2044 e0635005 e59dc040 .1..D [email protected]
I/DEBUG ( 4292): 57a2b9d0 e0659009 e0866815 e59d502c eaffffd8 ..e..h..,P......
I/DEBUG ( 4292): 57a2b9e0 e1d520b0 e58d2028 eafffefb e249b001 . ..( ........I.
I/DEBUG ( 4292): 57a2b9f0 e58d902c e35b0000 e595a000 e1a0300b ,.....[......0..
I/DEBUG ( 4292): 57a2ba00 0a000058 e1a00005 e1a0100a e5b0e004 X...............
I/DEBUG ( 4292):
I/DEBUG ( 4292): code around lr:
I/DEBUG ( 4292): 57a08084 e584e03c e1a00004 e58d9000 e1a01007 <...............
I/DEBUG ( 4292): 57a08094 e1a02006 e1a03008 e1a0e00f e595f0ec . ...0..........
I/DEBUG ( 4292): 57a080a4 e1a00004 e28dd008 e8bd47f0 eafff850 .........G..P...
I/DEBUG ( 4292): 57a080b4 e3000505 e28dd008 e8bd47f0 eafff820 .........G.. ...
I/DEBUG ( 4292): 57a080c4 e28dd008 e8bd87f0 e92d47f0 e24dd008 .........G-...M.
I/DEBUG ( 4292):
I/DEBUG ( 4292): stack:
I/DEBUG ( 4292): 5b7a7970 5b7a79ac
I/DEBUG ( 4292): 5b7a7974 00000000
I/DEBUG ( 4292): 5b7a7978 01408398 [heap]
I/DEBUG ( 4292): 5b7a797c 5789b0bf /system/lib/libardrv_dynamic.so
I/DEBUG ( 4292): 5b7a7980 01408398 [heap]
I/DEBUG ( 4292): 5b7a7984 00000000
I/DEBUG ( 4292): 5b7a7988 e3a13740
I/DEBUG ( 4292): 5b7a798c 0271b050 [heap]
I/DEBUG ( 4292): 5b7a7990 00000000
I/DEBUG ( 4292): 5b7a7994 78001910
I/DEBUG ( 4292): 5b7a7998 014060f8 [heap]
I/DEBUG ( 4292): 5b7a799c 57a39228 /system/lib/egl/libGLESv2_tegra.so
I/DEBUG ( 4292): 5b7a79a0 5b7a79bc
I/DEBUG ( 4292): 5b7a79a4 5b7a79bc
I/DEBUG ( 4292): 5b7a79a8 df0027ad
I/DEBUG ( 4292): 5b7a79ac 00000000
I/DEBUG ( 4292): #00 5b7a79b0 03531fc0 [heap]
I/DEBUG ( 4292): 5b7a79b4 57a2fbb0 /system/lib/egl/libGLESv2_tegra.so
I/DEBUG ( 4292): 5b7a79b8 01408398 [heap]
I/DEBUG ( 4292): 5b7a79bc b202091b
I/DEBUG ( 4292): 5b7a79c0 00010408
I/DEBUG ( 4292): 5b7a79c4 00010408
I/DEBUG ( 4292): 5b7a79c8 014060f8 [heap]
I/DEBUG ( 4292): 5b7a79cc 01408118 [heap]
I/DEBUG ( 4292): 5b7a79d0 00000004
I/DEBUG ( 4292): 5b7a79d4 00000120
I/DEBUG ( 4292): 5b7a79d8 00000000
I/DEBUG ( 4292): 5b7a79dc 00000000
I/DEBUG ( 4292): 5b7a79e0 0258a378 [heap]
I/DEBUG ( 4292): 5b7a79e4 57a0155c /system/lib/egl/libGLESv2_tegra.so
I/DEBUG ( 4292): 5b7a79e8 014060f8 [heap]
I/DEBUG ( 4292): 5b7a79ec 00000004
I/DEBUG ( 4292): 5b7a79f0 00000001
I/DEBUG ( 4292): 5b7a79f4 014060f8 [heap]
I/DEBUG ( 4292): 5b7a79f8 00000001
I/DEBUG ( 4292): 5b7a79fc 014060f8 [heap]
I/DEBUG ( 4292): 5b7a7a00 01407d80 [heap]
I/DEBUG ( 4292): 5b7a7a04 00000120
I/DEBUG ( 4292): 5b7a7a08 00000004
I/DEBUG ( 4292): 5b7a7a0c 00001403
I/DEBUG ( 4292): 5b7a7a10 00000000
I/DEBUG ( 4292): 5b7a7a14 00000000
I/DEBUG ( 4292): 5b7a7a18 0258a378 [heap]
I/DEBUG ( 4292): 5b7a7a1c 57a080a4 /system/lib/egl/libGLESv2_tegra.so
I/DEBUG ( 4292): #01 5b7a7a20 00000000
I/DEBUG ( 4292): 5b7a7a24 01407d80 [heap]
I/DEBUG ( 4292): 5b7a7a28 013e4010 [heap]
I/DEBUG ( 4292): 5b7a7a2c 02561ea8 [heap]
I/DEBUG ( 4292): 5b7a7a30 00000000
I/DEBUG ( 4292): 5b7a7a34 00000001
I/DEBUG ( 4292): 5b7a7a38 5c1560a0 /data/data/com.nvidia.demo.glowball/lib/libnvdemo.so
I/DEBUG ( 4292): 5b7a7a3c 000017c0
I/DEBUG ( 4292): 5b7a7a40 5c0d8d40 /data/data/com.nvidia.demo.glowball/lib/libnvdemo.so
I/DEBUG ( 4292): 5b7a7a44 5bc9ae5c /data/data/com.nvidia.demo.glowball/lib/libnvdemo.so
I/Sensors ( 194): **** No Motion ****
I/BootReceiver( 194): Copying /data/tombstones/tombstone_02 to DropBox (SYSTEM_TOMBSTONE)
V/Sensors ( 194): enable - sensor RotationVector (handle 0) en -> dis
I/WindowManager( 194): WIN DEATH: Window{41243c38 com.nvidia.demo.glowball/android.app.NativeActivity paused=false}
I/ActivityManager( 194): Process com.nvidia.demo.glowball (pid 21458) has died.
Log for Zen Pinball THD
Code:
D/NvOsDebugPrintf(22128): NvRmChannelSubmit failed (err = 196623, SyncPointValue = 62650232)
D/NvOsDebugPrintf(22128): NvRmChannelSubmit failed (err = 196623, SyncPointValue = 62650232)
F/libc (22128): Fatal signal 11 (SIGSEGV) at 0x00000004 (code=1)
I/DEBUG ( 4292): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
I/DEBUG ( 4292): Build fingerprint: 'asus/WW_epad/TF201:4.0.3/IML74K/WW_epad-9.4.2.21-20120323:user/release-keys'
I/DEBUG ( 4292): pid: 22128, tid: 22146 >>> com.zenstudios.ZenPinball <<<
I/DEBUG ( 4292): signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 00000004
I/DEBUG ( 4292): r0 5c1fb8a8 r1 5c1fb8a8 r2 3d43df1a r3 5c1fb8ac
I/DEBUG ( 4292): r4 00000000 r5 0203aa50 r6 0000004c r7 5c1fb8a8
I/DEBUG ( 4292): r8 00000001 r9 5c6aa6d0 10 5c1fb8ac fp 5c6aa700
I/DEBUG ( 4292): ip 0203acb0 sp 5c6aa550 lr 400d6714 pc 5c16cbe8 cpsr 20000010
I/DEBUG ( 4292): d0 3fef189926e43ddf d1 3f000000af9d09a6
I/DEBUG ( 4292): d2 b923a9ae360c6f93 d3 b9018800beccac60
I/DEBUG ( 4292): d4 3ef8c0f74016c93d d5 0000000000000000
I/DEBUG ( 4292): d6 40179fb23c2c839e d7 3e01a6f73e068e5b
I/DEBUG ( 4292): d8 3f8000003f800000 d9 3f2fc5683f800000
I/DEBUG ( 4292): d10 3cb18a1c3cb18a1c d11 0000000000000000
I/DEBUG ( 4292): d12 0000000000000000 d13 0000000000000000
I/DEBUG ( 4292): d14 0000000000000000 d15 0000000000000000
I/DEBUG ( 4292): d16 3fef189926e43ddf d17 3f219026bf61f162
I/DEBUG ( 4292): d18 3fef1780247847c0 d19 3f9d0ffb70f70800
I/DEBUG ( 4292): d20 0000000000000000 d21 3f63569ce7f09d89
I/DEBUG ( 4292): d22 3e21ed33bfd90970 d23 bda8fae9be8838d4
I/DEBUG ( 4292): d24 3e66376972bea4d0 d25 c014000000000000
I/DEBUG ( 4292): d26 3ff4000000000000 d27 3ef99342e0ee5069
I/DEBUG ( 4292): d28 c002ce59abdf385c d29 bfd545af5e1193f9
I/DEBUG ( 4292): d30 bc403b01b2c0cb66 d31 be74bea0fe400000
I/DEBUG ( 4292): scr 2000001a
I/DEBUG ( 4292):
I/DEBUG ( 4292): #00 pc 005d1be8 /data/data/com.zenstudios.ZenPinball/lib/libjnilib.so (_ZNK2Px2Fp15ParticleEmitter22fillSpriteVertexBufferEPvRKNS_12Matrix_floatES5_NS_18DisplayOrientationE)
I/DEBUG ( 4292): #01 lr 400d6714 /system/lib/libm.so
I/DEBUG ( 4292):
I/DEBUG ( 4292): code around pc:
I/DEBUG ( 4292): 5c16cbc8 e28aa001 ee777ac6 ed9d6a66 e0873103 .....zw.fj...1..
I/DEBUG ( 4292): 5c16cbd8 e087a10a e2888001 ee344a46 e286604c ........FJ4.L`..
I/DEBUG ( 4292): 5c16cbe8 edc47a01 eddd7a62 ed9d6a65 eddd4a68 .z..bz..ej..hJ..
I/DEBUG ( 4292): 5c16cbf8 ed845a04 ed844a00 ee376a86 edc45a03 .Z...J...j7..Z..
I/DEBUG ( 4292): 5c16cc08 ed848a05 edc48a06 ed849a07 edc49a08 ................
I/DEBUG ( 4292):
I/DEBUG ( 4292): code around lr:
I/DEBUG ( 4292): 400d66f4 03001000 03a00000 03431ff0 0a00000a ..........C.....
I/DEBUG ( 4292): 400d6704 ec510b30 e3a02000 e3a03000 ebfff946 0.Q.. ...0..F...
I/DEBUG ( 4292): 400d6714 ea000005 e30fcfff e347cfef e152000c ..........G...R.
I/DEBUG ( 4292): 400d6724 da000003 ee701be0 ec510b31 e28dd01c ......p.1.Q.....
I/DEBUG ( 4292): 400d6734 e8bd8030 e28d2008 ebfff591 e200c003 0.... ..........
I/DEBUG ( 4292):
I/DEBUG ( 4292): stack:
I/DEBUG ( 4292): 5c6aa510 3ee6f42c
I/DEBUG ( 4292): 5c6aa514 bf507c3a
I/DEBUG ( 4292): 5c6aa518 3ebaec10
I/DEBUG ( 4292): 5c6aa51c 3f800000
I/DEBUG ( 4292): 5c6aa520 3f800000
I/DEBUG ( 4292): 5c6aa524 3f800000
I/DEBUG ( 4292): 5c6aa528 3f2fc568
I/DEBUG ( 4292): 5c6aa52c 3cb18a1c
I/DEBUG ( 4292): 5c6aa530 3cb18a1c
I/DEBUG ( 4292): 5c6aa534 00000000
I/DEBUG ( 4292): 5c6aa538 0203aa50 [heap]
I/DEBUG ( 4292): 5c6aa53c 00000000
I/DEBUG ( 4292): 5c6aa540 5c1fb8a8 /data/data/com.zenstudios.ZenPinball/lib/libjnilib.so
I/DEBUG ( 4292): 5c6aa544 00000000
I/DEBUG ( 4292): 5c6aa548 df0027ad
I/DEBUG ( 4292): 5c6aa54c 00000000
I/DEBUG ( 4292): #00 5c6aa550 b9018800
I/DEBUG ( 4292): 5c6aa554 be99c4cc
I/DEBUG ( 4292): 5c6aa558 beccac60
I/DEBUG ( 4292): 5c6aa55c 39481eae
I/DEBUG ( 4292): 5c6aa560 bf4cac61
I/DEBUG ( 4292): 5c6aa564 3f19c4cb
I/DEBUG ( 4292): 5c6aa568 00000000
I/DEBUG ( 4292): 5c6aa56c 5c6aa6e8
I/DEBUG ( 4292): 5c6aa570 5c6aa6dc
I/DEBUG ( 4292): 5c6aa574 3cb18a1c
I/DEBUG ( 4292): 5c6aa578 3cb18a1c
I/DEBUG ( 4292): 5c6aa57c 3d66f010
I/DEBUG ( 4292): 5c6aa580 3f773f34
I/DEBUG ( 4292): 5c6aa584 5c6aa70c
I/DEBUG ( 4292): 5c6aa588 3d684c78
I/DEBUG ( 4292): 5c6aa58c 5c6aa6f4
I/DEBUG ( 4292): 5c6aa590 5c6aa55c
I/DEBUG ( 4292): 5c6aa594 5c6aa6d0
I/BootReceiver( 194): Copying /data/tombstones/tombstone_04 to DropBox (SYSTEM_TOMBSTONE)
V/Sensors ( 194): setDelay - sensor Accelerometer (handle 4), rate 66 ms (15.00 Hz)
I/WindowManager( 194): WIN DEATH: Window{415b4388 com.zenstudios.ZenPinball/com.zenstudios.ZenPinball.MainActivity paused=false}
W/WindowManager( 194): Force-removing child win Window{417504a8 SurfaceView paused=false} from container Window{415b4388 com.zenstudios.ZenPinball/com.zenstudios.ZenPinball.MainActivity paused=false}
I/ActivityManager( 194): Process com.zenstudios.ZenPinball (pid 22128) has died.
flyrocket said:
Does anyone know what Glowball is suppose to be?
It's pre-installed and I figured it's a game, but it just closes itself after a few minutes, just tried again after the .21 update and same thing.
Click to expand...
Click to collapse
Glowball is the original game that nvidia used to demo tegra3. It's actually pretty sweet. I haven't tried it since the update but I know that it was running just fine for me prior.
newellj79 said:
Glowball is the original game that nvidia used to demo tegra3. It's actually pretty sweet. I haven't tried it since the update but I know that it was running just fine for me prior.
Click to expand...
Click to collapse
Yes, all the games mentioned by me (4 of them), ran fine on .15.
Dead space after .21 works perfect in landscape mode. Before it works only in portrait mode.
Dead space, jelly defence and shadowgun did, and continue to work perfectly before and after the latest update
Sent from my Galaxy Nexus using XDA
lukcinek said:
Dead space after .21 works perfect in landscape mode. Before it works only in portrait mode.
Click to expand...
Click to collapse
dead space worked fine in landscape mode on .15. maybe you had an outdated version of the game. possibly From somewhere else other than the marketplace...lol
go2mo2 said:
Dead space, jelly defence and shadowgun did, and continue to work perfectly before and after the latest update
Sent from my Galaxy Nexus using XDA
Click to expand...
Click to collapse
Same with me. All those games worked perfect, and continuely to do so. One game I noticed that doesn't work anymore is Freeplay. Loads up to the EA logo, then just crashes. Cleared data and cache, and its still a no go
Has anyone managed to get stratagus to work??
I think l got it to work with .13 and not since.
Stratagus is a Warcraft and starcraft emulator.
Fifa 12 now works!!!
I'm trying to build AOSP gingerbread for the Samsung Galaxy ace.
The good news is that it boots and a lot of things work...
But there are some strange issues...
For example,
1. When i call some one, the call connects, But i cant end it... When i press end button, it shows Hanging up, but never hangs up...
2. The 3g icon shows up, but data doesn't work...
Some more things don't work properly as well... The details are in this THREAD
So if You have any idea regarding the issues that I'm facing, Please feel free to post/pm your suggestions...
Here is the logcat:
Code:
E/AudioService( 138): Media server started.
D/AudioHardwareInterface( 1057): setMode(NORMAL)
W/AudioPolicyManagerBase( 1057): setPhoneState() setting same state 0
D/AudioHardwareMSM72XX( 1057): setVoiceVolume(0.800000)
I/AudioHardwareMSM72XX( 1057): Setting in-call volume to 4 (available range is 0 to 5)
I/ShutdownThread( 138): Waiting for Bluetooth and Radio...
I/BootReceiver( 138): Copying /data/tombstones/tombstone_06 to DropBox (SYSTEM_TOMBSTONE)
W/AudioSystem( 138): AudioFlinger server died!
W/AudioSystem( 138): AudioPolicyService server died!
I/ServiceManager( 91): service 'media.audio_flinger' died
I/ServiceManager( 91): service 'media.camera' died
I/ServiceManager( 91): service 'media.audio_policy' died
I/ServiceManager( 91): service 'media.player' died
W/MediaMetadataRetriever( 371): MediaMetadataRetriever server died!
E/MediaMetadataRetrieverJNI( 371): getFrameAtTime: videoFrame is a NULL pointer
W/MediaThumbRequest( 371): Can't create mini thumbnail for /mnt/sdcard/Video/Thug Le - Ladies vs Ricky Bahl.mp4
I/ServiceManager( 371): Waiting for service media.player...
D/dalvikvm( 138): GC_CONCURRENT freed 704K, 45% free 4603K/8327K, external 1513K/2000K, paused 14ms+9ms
I/ServiceManager( 371): Waiting for service media.player...
E/AudioService( 138): Media server died.
I/ServiceManager( 138): Waiting for service media.audio_flinger...
I/ServiceManager( 371): Waiting for service media.player...
I/ServiceManager( 138): Waiting for service media.audio_flinger...
I/ServiceManager( 371): Waiting for service media.player...
I/ServiceManager( 138): Waiting for service media.audio_flinger...
I/ ( 1064): ServiceManager: 0xad50
E/AudioHardwareMSM72XX( 1064): Could not open libhtc_acoustic.so
D/AudioHardwareInterface( 1064): setMode(NORMAL)
I/AudioHardwareMSM72XX( 1064): Set master volume to 5.
I/CameraService( 1064): CameraService started (pid=1064)
I/AudioFlinger( 1064): AudioFlinger's thread 0xc6f0 ready to run
D/AudioHardwareMSM72XX( 1064): setVoiceVolume(1.000000)
I/AudioHardwareMSM72XX( 1064): Setting in-call volume to 5 (available range is 0 to 5)
F/OMXMaster( 1064): frameworks/base/media/libstagefright/omx/OMXMaster.cpp:90 err != OMX_ErrorNoMore
I/DEBUG ( 925): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
I/DEBUG ( 925): Build fingerprint: 'generic/cooper/cooper:2.3.7/GWK74/eng.infinityy.20120820.194237:eng/test-keys'
I/DEBUG ( 925): pid: 1064, tid: 1068 >>> /system/bin/mediaserver <<<
I/DEBUG ( 925): signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr deadbaad
I/DEBUG ( 925): r0 deadbaad r1 0000000c r2 00000027 r3 00000000
I/DEBUG ( 925): r4 00000080 r5 afd47668 r6 a340c767 r7 a340e4c0
I/DEBUG ( 925): r8 4030a000 r9 a811ca7d 10 00100000 fp 00000001
I/DEBUG ( 925): ip ffffffff sp 40409770 lr afd197f1 pc afd16398 cpsr 00000030
I/DEBUG ( 925): d0 0000000000000000 d1 0000000000000000
I/DEBUG ( 925): d2 7e37e43c8800759c d3 0000000000000000
I/DEBUG ( 925): d4 0000000000000000 d5 7e37e43c8800759c
I/DEBUG ( 925): d6 3ff0000000000000 d7 3ff0000000000000
I/DEBUG ( 925): d8 0000000000000000 d9 0000000000000000
I/DEBUG ( 925): d10 0000000000000000 d11 0000000000000000
I/DEBUG ( 925): d12 0000000000000000 d13 0000000000000000
I/DEBUG ( 925): d14 0000000000000000 d15 0000000000000000
I/DEBUG ( 925): scr 20000000
I/DEBUG ( 925):
I/DEBUG ( 925): #00 pc 00016398 /system/lib/libc.so
I/DEBUG ( 925): #01 pc 00001440 /system/lib/liblog.so
I/DEBUG ( 925): #02 pc 000010fa /system/lib/libstagefrighthw.so
I/DEBUG ( 925):
I/DEBUG ( 925): code around pc:
I/DEBUG ( 925): afd16378 68241c23 d1fb2c00 68dae027 d0042a00
I/DEBUG ( 925): afd16388 20014d18 6028447d 48174790 24802227
I/DEBUG ( 925): afd16398 f7f57002 2106ea22 eb9ef7f6 0563aa01
I/DEBUG ( 925): afd163a8 60932100 91016051 1c112006 eef4f7f5
I/DEBUG ( 925): afd163b8 2200a905 f7f52002 f7f5ef00 2106ea0e
I/DEBUG ( 925):
I/DEBUG ( 925): code around lr:
I/DEBUG ( 925): afd197d0 447b4a0d 589cb083 90012600 686768a5
I/DEBUG ( 925): afd197e0 220ce008 2b005eab 1c28d003 47889901
I/DEBUG ( 925): afd197f0 35544306 d5f43f01 2c006824 b003d1ee
I/DEBUG ( 925): afd19800 bdf01c30 00028d2e ffffff88 1c0fb5f0
I/DEBUG ( 925): afd19810 b0871c3d a9044355 1c16ac01 604d9004
I/DEBUG ( 925):
I/DEBUG ( 925): stack:
I/DEBUG ( 925): 40409730 00000000
I/DEBUG ( 925): 40409734 000003af
I/DEBUG ( 925): 40409738 afd4370c
I/DEBUG ( 925): 4040973c afd436b8
I/DEBUG ( 925): 40409740 00000000
I/DEBUG ( 925): 40409744 afd197f1 /system/lib/libc.so
I/DEBUG ( 925): 40409748 00000009
I/DEBUG ( 925): 4040974c afd1885d /system/lib/libc.so
I/DEBUG ( 925): 40409750 afa01199 /system/lib/liblog.so
I/DEBUG ( 925): 40409754 00000000
I/DEBUG ( 925): 40409758 afd47668
I/DEBUG ( 925): 4040975c a340c767 /system/lib/libstagefright_omx.so
I/DEBUG ( 925): 40409760 a340e4c0
I/DEBUG ( 925): 40409764 afd18afb /system/lib/libc.so
I/DEBUG ( 925): 40409768 df002777
I/DEBUG ( 925): 4040976c e3a070ad
I/DEBUG ( 925): #00 40409770 4040976c
I/DEBUG ( 925): 40409774 00000001
I/DEBUG ( 925): 40409778 a340c709 /system/lib/libstagefright_omx.so
I/DEBUG ( 925): 4040977c 0000000a
I/DEBUG ( 925): 40409780 404097a4
I/DEBUG ( 925): 40409784 fffffbdf
I/DEBUG ( 925): 40409788 00000000
I/DEBUG ( 925): 4040978c 404097a4
I/DEBUG ( 925): 40409790 a340c709 /system/lib/libstagefright_omx.so
I/DEBUG ( 925): 40409794 afa01443 /system/lib/liblog.so
I/DEBUG ( 925): #01 40409798 404097a4
I/DEBUG ( 925): 4040979c afa01443 /system/lib/liblog.so
I/DEBUG ( 925): 404097a0 40409bbc
I/DEBUG ( 925): 404097a4 6d617266
I/DEBUG ( 925): 404097a8 726f7765
I/DEBUG ( 925): 404097ac 622f736b
I/DEBUG ( 925): 404097b0 2f657361
I/DEBUG ( 925): 404097b4 6964656d
I/DEBUG ( 925): 404097b8 696c2f61
I/DEBUG ( 925): 404097bc 61747362
I/DEBUG ( 925): 404097c0 72666567
I/DEBUG ( 925): 404097c4 74686769
I/DEBUG ( 925): 404097c8 786d6f2f
I/DEBUG ( 925): 404097cc 584d4f2f
I/DEBUG ( 925): 404097d0 7473614d
I/DEBUG ( 925): 404097d4 632e7265
I/DEBUG ( 925): 404097d8 393a7070
I/DEBUG ( 925): 404097dc 72652030
I/DEBUG ( 925): 404097e0 3d212072
I/DEBUG ( 925): 404097e4 584d4f20
I/DEBUG ( 925): 404097e8 7272455f
I/DEBUG ( 925): 404097ec 6f4e726f
I/DEBUG ( 925): 404097f0 65726f4d
I/DEBUG ( 925): 404097f4 00000000
I/DEBUG ( 925): 404097f8 00000000
I/DEBUG ( 925): 404097fc 00000000
I/DEBUG ( 925): 40409800 00000000
I/DEBUG ( 925): 40409804 00000000
I/DEBUG ( 925): 40409808 00000000
I/DEBUG ( 925): 4040980c 00000000
I/DEBUG ( 925): 40409810 00000000
I/DEBUG ( 925): 40409814 00000000
I/DEBUG ( 925): 40409818 00000000
I/DEBUG ( 925): 4040981c 00000000
I/DEBUG ( 925): 40409820 00000000
I/DEBUG ( 925): 40409824 00000000
I/DEBUG ( 925): 40409828 00000000
I/DEBUG ( 925): 4040982c 00000000
I/DEBUG ( 925): 40409830 00000000
I/DEBUG ( 925): 40409834 00000000
I/DEBUG ( 925): 40409838 00000000
I/DEBUG ( 925): 4040983c 00000000
I/DEBUG ( 925): 40409840 00000000
I/DEBUG ( 925): 40409844 00000000
I/DEBUG ( 925): 40409848 00000000
I/DEBUG ( 925): 4040984c 00000000
I/DEBUG ( 925): 40409850 00000000
I/DEBUG ( 925): 40409854 00000000
I/DEBUG ( 925): 40409858 00000000
I/DEBUG ( 925): 4040985c 00000000
I/DEBUG ( 925): 40409860 00000000
I/DEBUG ( 925): 40409864 00000000
I/DEBUG ( 925): 40409868 00000000
I/DEBUG ( 925): 4040986c 00000000
I/DEBUG ( 925): 40409870 00000000
I/DEBUG ( 925): 40409874 00000000
I/DEBUG ( 925): 40409878 00000000
I/DEBUG ( 925): 4040987c 00000000
I/DEBUG ( 925): 40409880 00000000
I/DEBUG ( 925): 40409884 00000000
I/DEBUG ( 925): 40409888 00000000
I/DEBUG ( 925): 4040988c 00000000
I/DEBUG ( 925): 40409890 00000000
I/DEBUG ( 925): 40409894 00000000
I/DEBUG ( 925): 40409898 00000000
I/DEBUG ( 925): 4040989c 00000000
I/DEBUG ( 925): 404098a0 00000000
I/DEBUG ( 925): 404098a4 00000000
I/DEBUG ( 925): 404098a8 00000000
I/DEBUG ( 925): 404098ac 00000000
I/DEBUG ( 925): 404098b0 00000000
I/DEBUG ( 925): 404098b4 00000000
I/DEBUG ( 925): 404098b8 00000000
I/DEBUG ( 925): 404098bc 00000000
I/DEBUG ( 925): 404098c0 00000000
I/DEBUG ( 925): 404098c4 00000000
I/DEBUG ( 925): 404098c8 00000000
I/DEBUG ( 925): 404098cc 00000000
I/DEBUG ( 925): 404098d0 00000000
I/DEBUG ( 925): 404098d4 00000000
I/DEBUG ( 925): 404098d8 00000000
I/DEBUG ( 925): 404098dc 00000000
I/DEBUG ( 925): 404098e0 00000000
I/DEBUG ( 925): 404098e4 00000000
I/DEBUG ( 925): 404098e8 00000000
I/DEBUG ( 925): 404098ec 00000000
I/DEBUG ( 925): 404098f0 0000000d
I/DEBUG ( 925): 404098f4 0000000d
I/DEBUG ( 925): 404098f8 a3301892 /system/lib/libstagefrighthw.so
I/DEBUG ( 925): 404098fc 4030a000
I/DEBUG ( 925): 40409900 a811ca7d /system/lib/libutils.so
I/DEBUG ( 925): 40409904 00100000
I/DEBUG ( 925): 40409908 00000001
I/DEBUG ( 925): 4040990c 40409a00
I/DEBUG ( 925): 40409910 404099ac
I/DEBUG ( 925): 40409914 b00056c1 /system/bin/linker
I/DEBUG ( 925): 40409918 b000568d /system/bin/linker
I/DEBUG ( 925): 4040991c 00000005
I/DEBUG ( 925): 40409920 404099ac
I/DEBUG ( 925): 40409924 a3301892 /system/lib/libstagefrighthw.so
I/DEBUG ( 925): 40409928 4040996b
I/DEBUG ( 925): 4040992c b0005a91 /system/bin/linker
I/DEBUG ( 925): 40409930 404099bc
I/DEBUG ( 925): 40409934 a340beec /system/lib/libstagefright_omx.so
I/DEBUG ( 925): 40409938 4040997b
I/DEBUG ( 925): 4040993c 00000005
I/DEBUG ( 925): 40409940 00000000
I/DEBUG ( 925): 40409944 00000000
I/DEBUG ( 925): 40409948 b00072e4 /system/bin/linker
I/DEBUG ( 925): 4040994c 00000004
I/DEBUG ( 925): 40409950 00000002
I/DEBUG ( 925): 40409954 b00067a9 /system/bin/linker
I/DEBUG ( 925): 40409958 b00094a4
I/DEBUG ( 925): 4040995c b00067bf /system/bin/linker
I/DEBUG ( 925): 40409960 b00094a4
I/DEBUG ( 925): 40409964 b0004335 /system/bin/linker
I/DEBUG ( 925): 40409968 00004351
I/DEBUG ( 925): 4040996c 00000000
I/DEBUG ( 925): 40409970 00008000 /system/bin/mediaserver
I/DEBUG ( 925): 40409974 00008000 /system/bin/mediaserver
I/DEBUG ( 925): 40409978 00008a0c /system/bin/mediaserver
I/DEBUG ( 925): 4040997c 00000000
I/DEBUG ( 925): 40409980 00000000
I/DEBUG ( 925): 40409984 000000f9
I/DEBUG ( 925): 40409988 000081a4 /system/bin/mediaserver
I/DEBUG ( 925): 4040998c 00000000
I/DEBUG ( 925): 40409990 00000000
I/DEBUG ( 925): 40409994 404099ac
I/DEBUG ( 925): 40409998 b00072e4 /system/bin/linker
I/DEBUG ( 925): 4040999c b00072e4 /system/bin/linker
I/DEBUG ( 925): 404099a0 b0009468
I/DEBUG ( 925): 404099a4 b0005b0b /system/bin/linker
I/DEBUG ( 925): 404099a8 000025e4
I/DEBUG ( 925): 404099ac 404099ac
I/DEBUG ( 925): 404099b0 b000568d /system/bin/linker
I/DEBUG ( 925): 404099b4 404099f4
I/DEBUG ( 925): 404099b8 40409a0d
I/DEBUG ( 925): 404099bc 40409bf3
I/DEBUG ( 925): 404099c0 00000019
I/DEBUG ( 925): 404099c4 404099dc
I/DEBUG ( 925): 404099c8 4892fac0
I/DEBUG ( 925): 404099cc b00094a4
I/DEBUG ( 925): 404099d0 a3301892 /system/lib/libstagefrighthw.so
I/DEBUG ( 925): 404099d4 b00094a4
I/DEBUG ( 925): 404099d8 a3301892 /system/lib/libstagefrighthw.so
I/DEBUG ( 925): 404099dc b00043f7 /system/bin/linker
I/DEBUG ( 925): 404099e0 a3301892 /system/lib/libstagefrighthw.so
I/DEBUG ( 925): 404099e4 b00072e4 /system/bin/linker
I/DEBUG ( 925): 404099e8 a340beec /system/lib/libstagefright_omx.so
I/DEBUG ( 925): 404099ec 404099f4
I/DEBUG ( 925): 404099f0 a340beec /system/lib/libstagefright_omx.so
I/DEBUG ( 925): 404099f4 7379732f
I/DEBUG ( 925): 404099f8 2f6d6574
I/DEBUG ( 925): 404099fc 2f62696c
I/DEBUG ( 925): 40409a00 4f62696c
I/DEBUG ( 925): 40409a04 6f43786d
I/DEBUG ( 925): 40409a08 732e6572
I/DEBUG ( 925): 40409a0c 2f62006f
I/DEBUG ( 925): 40409a10 7362696c
I/DEBUG ( 925): 40409a14 65676174
I/DEBUG ( 925): 40409a18 67697266
I/DEBUG ( 925): 40409a1c 77687468
I/DEBUG ( 925): 40409a20 006f732e
I/DEBUG ( 925): 40409a24 00000000
I/DEBUG ( 925): 40409a28 00000000
I/DEBUG ( 925): 40409a2c 00000000
I/DEBUG ( 925): 40409a30 00000000
I/DEBUG ( 925): 40409a34 00000000
I/DEBUG ( 925): 40409a38 00000000
I/DEBUG ( 925): 40409a3c 00000000
I/DEBUG ( 925): 40409a40 00000000
I/DEBUG ( 925): 40409a44 00000000
I/DEBUG ( 925): 40409a48 00000000
I/DEBUG ( 925): 40409a4c 00000000
I/DEBUG ( 925): 40409a50 00000000
I/DEBUG ( 925): 40409a54 00000000
I/DEBUG ( 925): 40409a58 00000000
I/DEBUG ( 925): 40409a5c 00000000
I/DEBUG ( 925): 40409a60 00000000
I/DEBUG ( 925): 40409a64 00000000
I/DEBUG ( 925): 40409a68 00000000
I/DEBUG ( 925): 40409a6c 00000000
I/DEBUG ( 925): 40409a70 0000b8a8
I/DEBUG ( 925): 40409a74 40409abc
I/DEBUG ( 925): 40409a78 00000007
I/DEBUG ( 925): 40409a7c a8114d09 /system/lib/libutils.so
I/DEBUG ( 925): 40409a80 0000b898
I/DEBUG ( 925): 40409a84 0000b8a8
I/DEBUG ( 925): 40409a88 00000007
I/DEBUG ( 925): 40409a8c a8114e45 /system/lib/libutils.so
I/DEBUG ( 925): 40409a90 0000b848
I/DEBUG ( 925): 40409a94 40409abc
I/DEBUG ( 925): 40409a98 fffffffc
I/DEBUG ( 925): 40409a9c 00000000
I/DEBUG ( 925): 40409aa0 40409abc
I/DEBUG ( 925): 40409aa4 a821a335 /system/lib/libbinder.so
I/DEBUG ( 925): 40409aa8 40409c08
I/DEBUG ( 925): 40409aac a821a9cd /system/lib/libbinder.so
I/DEBUG ( 925): 40409ab0 00000034
I/DEBUG ( 925): 40409ab4 00000000
I/DEBUG ( 925): 40409ab8 0000e6a8
I/DEBUG ( 925): 40409abc 0000b848
I/DEBUG ( 925): 40409ac0 40409ad8
I/DEBUG ( 925): 40409ac4 40409c08
I/DEBUG ( 925): 40409ac8 00000000
I/DEBUG ( 925): 40409acc 4000c0d8
I/DEBUG ( 925): 40409ad0 4000c0e8
I/DEBUG ( 925): 40409ad4 00001000
I/DEBUG ( 925): 40409ad8 0000a000
I/DEBUG ( 925): 40409adc b00036a8 /system/bin/linker
I/DEBUG ( 925): 40409ae0 00000001
I/DEBUG ( 925): 40409ae4 00000000
I/DEBUG ( 925): 40409ae8 0000000a
I/DEBUG ( 925): 40409aec 0000000a
I/DEBUG ( 925): 40409af0 00000000
I/DEBUG ( 925): 40409af4 00000001
I/DEBUG ( 925): 40409af8 00000000
I/DEBUG ( 925): 40409afc 4030a000
I/DEBUG ( 925): 40409b00 a811ca7d /system/lib/libutils.so
I/DEBUG ( 925): 40409b04 00100000
I/DEBUG ( 925): 40409b08 00000001
I/DEBUG ( 925): 40409b0c b0001cc4 /system/bin/linker
I/DEBUG ( 925): 40409b10 40409b9f
I/DEBUG ( 925): 40409b14 00000001
I/DEBUG ( 925): 40409b18 00000000
I/DEBUG ( 925): 40409b1c 40409b9c
I/DEBUG ( 925): 40409b20 0000000b
I/DEBUG ( 925): 40409b24 0000000b
I/DEBUG ( 925): 40409b28 b0007662 /system/bin/linker
I/DEBUG ( 925): 40409b2c 4030a000
I/DEBUG ( 925): 40409b30 a811ca7d /system/lib/libutils.so
I/DEBUG ( 925): 40409b34 00100000
I/DEBUG ( 925): 40409b38 00000001
I/DEBUG ( 925): 40409b3c b00096ee
I/DEBUG ( 925): 40409b40 40409bdc
I/DEBUG ( 925): 40409b44 b00056c1 /system/bin/linker
I/DEBUG ( 925): 40409b48 b000568d /system/bin/linker
I/DEBUG ( 925): 40409b4c 00000013
I/DEBUG ( 925): 40409b50 40409bdc
I/DEBUG ( 925): 40409b54 40409c18
I/DEBUG ( 925): 40409b58 00000035
I/DEBUG ( 925): 40409b5c 00000035
I/DEBUG ( 925): 40409b60 b00096c4
I/DEBUG ( 925): 40409b64 4030a000
I/DEBUG ( 925): 40409b68 a811ca7d /system/lib/libutils.so
I/DEBUG ( 925): 40409b6c 00100000
I/DEBUG ( 925): 40409b70 0000f0a0
I/DEBUG ( 925): 40409b74 00000003
I/DEBUG ( 925): 40409b78 000001b4
I/DEBUG ( 925): 40409b7c 000000da
I/DEBUG ( 925): 40409b80 4030a000
I/DEBUG ( 925): 40409b84 a811ca7d /system/lib/libutils.so
I/DEBUG ( 925): 40409b88 00100000
I/DEBUG ( 925): 40409b8c afd14641 /system/lib/libc.so
I/DEBUG ( 925): 40409b90 40409bd3
I/DEBUG ( 925): 40409b94 b0005a91 /system/bin/linker
I/DEBUG ( 925): 40409b98 00000002
I/DEBUG ( 925): 40409b9c 0000f068
I/DEBUG ( 925): 40409ba0 0000f028
I/DEBUG ( 925): 40409ba4 b9d9a985
I/DEBUG ( 925): 40409ba8 a340e4c0
I/DEBUG ( 925): 40409bac a33010fd /system/lib/libstagefrighthw.so
I/DEBUG ( 925): 40409bb0 a340c709 /system/lib/libstagefright_omx.so
I/DEBUG ( 925): 40409bb4 a340bb97 /system/lib/libstagefright_omx.so
E/AudioService( 138): Media server started.
D/AudioHardwareInterface( 1064): setMode(NORMAL)
W/AudioPolicyManagerBase( 1064): setPhoneState() setting same state 0
D/AudioHardwareMSM72XX( 1064): setVoiceVolume(0.800000)
I/AudioHardwareMSM72XX( 1064): Setting in-call volume to 4 (available range is 0 to 5)
I/BootReceiver( 138): Copying /data/tombstones/tombstone_07 to DropBox (SYSTEM_TOMBSTONE)
W/AudioSystem( 138): AudioFlinger server died!
W/AudioSystem( 138): AudioPolicyService server died!
I/ServiceManager( 91): service 'media.audio_flinger' died
I/ServiceManager( 91): service 'media.camera' died
I/ServiceManager( 91): service 'media.audio_policy' died
I/ServiceManager( 91): service 'media.player' died
W/MediaMetadataRetriever( 371): MediaMetadataRetriever server died!
E/MediaMetadataRetrieverJNI( 371): getFrameAtTime: videoFrame is a NULL pointer
W/MediaThumbRequest( 371): Can't create mini thumbnail for /mnt/sdcard/Video/Tonight (I&'m Lovin&' You).mp4
I/ServiceManager( 371): Waiting for service media.player...
E/AudioService( 138): Media server died.
I/ServiceManager( 138): Waiting for service media.audio_flinger...
I/ServiceManager( 371): Waiting for service media.player...
I/ServiceManager( 138): Waiting for service media.audio_flinger...
I/ServiceManager( 371): Waiting for service media.player...
I/ServiceManager( 138): Waiting for service media.audio_flinger...
I/ShutdownThread( 138): Shutting down MountService
I/PackageManager( 138): Updating external media status from mounted to unmounted
I/ServiceManager( 371): Waiting for service media.player...
I/MountService( 138): Shutting down
D/VoldCmdListener( 92): asec list
I/PackageManager( 138): No secure containers on sdcard
I/ServiceManager( 138): Waiting for service media.audio_flinger...
D/dalvikvm( 138): GC_CONCURRENT freed 829K, 46% free 4525K/8327K, external 1509K/2000K, paused 23ms+9ms
D/VoldCmdListener( 92): storage users /mnt/sdcard
W/ActivityManager( 138): Killing processes unmount media at adjustment 7
W/ActivityManager( 138): Killing ProcessRecord{406547e8 371:android.process.media/10017} (adj 11): unmount media
D/VoldCmdListener( 92): storage users /mnt/sdcard
D/dalvikvm( 138): GC_EXPLICIT freed 121K, 46% free 4499K/8327K, external 1509K/2000K, paused 145ms
I/PackageManager( 138): Updating external media status from unmounted to unmounted
D/VoldCmdListener( 92): volume unmount /mnt/sdcard force
I/BootReceiver( 561): Got intent with action android.intent.action.MEDIA_EJECT
D/Vold ( 92): Volume sdcard state changing 4 (Mounted) -> 5 (Unmounting)
I/ServiceManager( 138): Waiting for service media.audio_flinger...
D/dalvikvm( 561): GC_CONCURRENT freed 464K, 52% free 2849K/5831K, external 716K/1038K, paused 5ms+73ms
I/Vold ( 92): /mnt/secure/staging/.android_secure sucessfully unmounted
I/Vold ( 92): /mnt/secure/asec sucessfully unmounted
W/Vold ( 92): Failed to unmount /mnt/secure/staging (Device or resource busy, retries 9, action 0)
W/AudioSystem( 138): AudioFlinger not published, waiting...
E/DiskCache( 561): Unable to write the index file /mnt/sdcard/Android/data/com.cooliris.media/cache/local-video-thumbsindex
E/DiskCache( 561): Unable to create cache directory /mnt/sdcard/Android/data/com.cooliris.media/cache/picasa-thumbs
E/DiskCache( 561): Unable to create or tempFile /mnt/sdcard/Android/data/com.cooliris.media/cache/picasa-thumbs
E/DiskCache( 561): Unable to create or tempFile /mnt/sdcard/Android/data/com.cooliris.media/cache/local-album-cache
E/DiskCache( 561): Unable to create or tempFile /mnt/sdcard/Android/data/com.cooliris.media/cache/local-meta-cache
I/ServiceManager( 138): Waiting for service media.audio_flinger...
I/ ( 1071): ServiceManager: 0xad50
E/AudioHardwareMSM72XX( 1071): Could not open libhtc_acoustic.so
D/AudioHardwareInterface( 1071): setMode(NORMAL)
I/AudioHardwareMSM72XX( 1071): Set master volume to 5.
I/CameraService( 1071): CameraService started (pid=1071)
I/AudioFlinger( 1071): AudioFlinger's thread 0xc6f0 ready to run
D/AudioHardwareMSM72XX( 1071): setVoiceVolume(1.000000)
I/AudioHardwareMSM72XX( 1071): Setting in-call volume to 5 (available range is 0 to 5)
E/AudioService( 138): Media server started.
D/AudioHardwareInterface( 1071): setMode(NORMAL)
W/AudioPolicyManagerBase( 1071): setPhoneState() setting same state 0
D/AudioHardwareMSM72XX( 1071): setVoiceVolume(0.800000)
I/AudioHardwareMSM72XX( 1071): Setting in-call volume to 4 (available range is 0 to 5)
I/Vold ( 92): /mnt/secure/staging sucessfully unmounted
I/Vold ( 92): /mnt/sdcard unmounted sucessfully
I/PackageManager( 138): Updating external media status from unmounted to unmounted
D/Vold ( 92): Volume sdcard state changing 5 (Unmounting) -> 1 (Idle-Unmounted)
I/StorageNotification( 234): Media {/mnt/sdcard} state changed from {mounted} -> {unmounted}
W/ShutdownThread( 138): Result code 0 from MountService.shutdown
D/VoldCmdListener( 92): volume shared /mnt/sdcard ums
D/dalvikvm( 234): GC_EXTERNAL_ALLOC freed 142K, 49% free 2956K/5703K, external 1033K/1038K, paused 234ms
I/ShutdownThread( 138): Performing low-level shutdown...
More logcats at my thread...
Hi!
(sorry for my bad english)
I've just received my Chuwi V88 and it's totally unusable.
From the first boot I have a lot of failures:
* nearly all apps FC
* boot animation appears when open settings or other apps
* unable to login while adding a new Google account, the "existing" or "add" screen appears instead the "comunicating with google servers". It works after a lot of tries.
* cant update system apps like gmail, calendar ... always give error "package file was not signed correctly"
Sometimes, after a lof of tries, the tablet becomes more stable and you can do things, but afetr some minutes, all start to FC and close.
This is logged to logcat:
Code:
F/libc (11812): Fatal signal 11 (SIGSEGV) at 0x00000000 (code=1), thread 11812 (ndroid.settings)
I/DEBUG ( 109): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
I/DEBUG ( 109): Build fingerprint: 'rk30sdk/rk30sdk/rk30sdk:4.2.2/JDQ39/eng.bob.20130620.182711:eng/test-keys'
I/DEBUG ( 109): Revision: '0'
I/DEBUG ( 109): pid: 11812, tid: 11812, name: ndroid.settings >>> com.android.settings <<<
I/DEBUG ( 109): signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 00000000
I/DEBUG ( 109): r0 69774330 r1 00000000 r2 00000808 r3 00000000
I/DEBUG ( 109): r4 694125f8 r5 00000808 r6 00000000 r7 00000001
I/DEBUG ( 109): r8 beb924c0 r9 41113d1c sl 40120020 fp beb924d4
I/DEBUG ( 109): ip 69774330 sp beb92450 lr 402b10e5 pc 40156b60 cpsr 80000030
I/DEBUG ( 109): d0 3f80000000000000 d1 0000000000000000
I/DEBUG ( 109): d2 000000003c8efa35 d3 0000000042820000
I/DEBUG ( 109): d4 0000000000000000 d5 437a000041000000
I/DEBUG ( 109): d6 3f80000043ca0000 d7 3f8000003f800000
I/DEBUG ( 109): d8 0000000000000000 d9 0000000000000000
I/DEBUG ( 109): d10 0000000000000000 d11 0000000000000000
I/DEBUG ( 109): d12 0000000000000000 d13 0000000000000000
I/DEBUG ( 109): d14 0000000000000000 d15 0000000000000000
I/DEBUG ( 109): d16 0000002000000020 d17 7e37e43c8800759c
I/DEBUG ( 109): d18 0000000000000000 d19 3ff0000000000000
I/DEBUG ( 109): d20 4000000000000000 d21 be23e4f5df600000
I/DEBUG ( 109): d22 bf6700ad4f2e261e d23 bf66c16bcf2488c9
I/DEBUG ( 109): d24 3fc555552658226f d25 3fefdfdfe0000000
I/DEBUG ( 109): d26 3fd55559bbdd31c6 d27 3fdb6dbc40ea5c02
I/DEBUG ( 109): d28 3fe33336ab4b2dfc d29 bf70101000000000
I/DEBUG ( 109): d30 3fffefef00000000 d31 0000000000000000
I/DEBUG ( 109): scr 6000001c
I/DEBUG ( 109):
I/DEBUG ( 109): backtrace:
I/DEBUG ( 109): #00 pc 00016b60 /system/lib/libc.so
I/DEBUG ( 109): #01 pc 0001b0e1 /system/lib/libandroidfw.so (android::ResXMLTree::setTo(void const*, unsigned int, bool)+44
)
I/DEBUG ( 109):
I/DEBUG ( 109): stack:
I/DEBUG ( 109): beb92410 beb92438 [stack]
I/DEBUG ( 109): beb92414 4014cf15 /system/lib/libc.so (free+12)
I/DEBUG ( 109): beb92418 c0000000
I/DEBUG ( 109): beb9241c 00000808
I/DEBUG ( 109): beb92420 00000808
I/DEBUG ( 109): beb92424 00000000
I/DEBUG ( 109): beb92428 00000810
I/DEBUG ( 109): beb9242c 401513c3 /system/lib/libc.so (dlmalloc+5170)
I/DEBUG ( 109): beb92430 69774330
I/DEBUG ( 109): beb92434 00000808
I/DEBUG ( 109): beb92438 4002653d /system/framework/framework-res.apk
I/DEBUG ( 109): beb9243c 000002ff
I/DEBUG ( 109): beb92440 00000008
I/DEBUG ( 109): beb92444 694125f8
I/DEBUG ( 109): beb92448 df0027ad
I/DEBUG ( 109): beb9244c 00000000
I/DEBUG ( 109): #00 beb92450 00000000
I/DEBUG ( 109): ........ ........
Anybody know whats this error ? Fatal signal 11 (SIGSEGV) ?
Is there a fix for this ? I've tried other ROMs, wipe all .... nothing works.
Any help will be appreciated!