vold, using ext3 on SD, USB drives - Nook Touch Android Development

vold is the volume daemon which is responsible for mounting removable (and sometimes non-removable) volumes.
It's the daemon that mounts your SD card so that you can use it.
It also mounts /media and is responsible for switching to USB mode when you plug the Nook into a desktop.
It's also what should be mounting your USB flash drives when you plug them in.
While working on my adbsync.exe I kept on running into bugs related to the vfat file system on the SD card.
Using the adage of "It's better to fix someone else's bugs than your own bugs", I set to work on vold.
The vold that ships with the Nook is non-standard.
I don't know if it was snarfed by B&N from somewhere.
It won't mount ext3 volumes or USB flash drives.
I built vold from the Eclair sources and it works even worse than the B&N stock.
A bunch of hacking later, I got it to mount an ext3 partition on an SD card.
I'm still working on USB drives and multiple partitions on an SD card.
So my adbsync.exe works marvelously now that it has real UTC timestamps to go on (courtesy of ext3).
As soon as I get things a bit more stabilized I'll post vold.

Code:
# mount
[color=gray]rootfs / rootfs ro 0 0
tmpfs /dev tmpfs rw,mode=755 0 0
devpts /dev/pts devpts rw,mode=600 0 0
proc /proc proc rw 0 0
sysfs /sys sysfs rw 0 0
tmpfs /sqlite_stmt_journals tmpfs rw,size=4096k 0 0
/dev/block/mmcblk0p2 /rom vfat rw,noatime,nodiratime,uid=1000,gid=1000,fmask=0117,dmask=0007,allow_utime=0020,codepage=cp437,iocharset=iso8859-1,errors=remount-ro 0 0
/dev/block/mmcblk0p5 /system ext2 ro,errors=continue 0 0
/dev/block/mmcblk0p8 /data ext3 rw,nosuid,nodev,noatime,nodiratime,errors=continue,data=ordered 0 0
/dev/block/mmcblk0p7 /cache ext3 rw,nosuid,nodev,noatime,nodiratime,errors=continue,data=ordered 0 0[/color]
/dev/block/vold/179:6 [b]/media vfat[/b] rw,dirsync,nosuid,nodev,noexec,uid=1000,gid=1015,fmask=0702,dmask=0702,allow_utime=0020,codepage=cp437,iocharset=iso8859-1,shortname=mixed,utf8,errors=remount-ro 0 0
/dev/block/vold/179:17 [b]/sdcard ext3[/b] rw,sync,nosuid,nodev,noexec,noatime,nodiratime,errors=continue,data=ordered 0 0
/dev/block/vold/179:18 [b]/audio ext3[/b] rw,sync,nosuid,nodev,noexec,noatime,nodiratime,errors=continue,data=ordered 0 0
/dev/block/vold/180:1 [b]/usb vfat[/b] rw,dirsync,nosuid,nodev,noexec,uid=1000,gid=1015,fmask=0702,dmask=0702,allow_utime=0020,codepage=cp437,iocharset=iso8859-1,shortname=mixed,utf8,errors=remount-ro 0 0
This still has a few wrinkles, but it's getting there.

Thank you for continuing to develop for the NST! Just wanted to let you know.
:good:Also, thank you for your Library app (it's the best for me).

Ok, for the adventurous we have a beta release of vold.
The first thing is to decide your mount points.
You may like them in the root, like /sdcard or higher up like /mnt/usb
You will have to establish these mount points in init.rc (in uRamdisk).
You can just put them after the one for /sdcard.
All my examples are based upon using the original /media, having two partitions on the removable SD card and one partition on a USB flash drive.
You may use more or less of this stuff depending on your needs.
Code:
mkdir /media 0777 system system
mkdir /sdcard 0777 system system
mkdir /audio 0777 system system
mkdir /usb 0777 system system
Edit vold.conf to suit your setup.
Then replace /system/bin/vold and /system/etc/vold.conf
Be sure to chmod 755 vold
There are a few small wrinkles now.
One is that upon booting it will give you a notification that a drive has been removed.
This is due to a strangeness in the Android code, but for right now it's not worth patching that.
The other wrinkle is that it will complain when you disconnect a USB drive.
Things that do work nicely.
Mounting of vfat or ext3 partitions
Mounting of multiple partitions on a single device
Automatic mounting of USB drives
The UMS still works for /media and one other partition (presumably /sdcard).
Download in the signature.
If you run into strangeness, please post your /system/etc/vold.conf & /data/voldlog

Many many thanks! I had messed up the partitions on my ST. Even after fixing it, I couldn't get /media to mount via USB, and couldn't understand why. Your new version fixed my problems. Thanks again!

Hi Renate NST,
Unfortunately, i was unable to make USB automount work
I have replaced /system/bin/vold (set perm to 755), added the following lines to /system/etc/vold.conf:
Code:
volume_usb
{
media_path /devices/platform/musb_hdrc/usb1
media_type mmc
partition 1
mount_point /usb
}
... and edited /init.rc with:
Code:
mkdir /usb 0777 system system
It seems that something wrong happens with vold when I plug usb flash drive and press "HOST" button. Here is the logcat output:
Code:
I/DEBUG ( 972): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
I/DEBUG ( 972): Build fingerprint: 'generic/zoom2/zoom2/zoom2:2.1/ERD79/1.1.2:user/test-keys'
I/DEBUG ( 972): pid: 971, tid: 971 >>> /system/bin/vold <<<
I/DEBUG ( 972): signal 11 (SIGSEGV), fault addr 0ccccccc
I/DEBUG ( 972): r0 0ccccccc r1 00000000 r2 80808080 r3 00000000
I/DEBUG ( 972): r4 0ccccccc r5 00000002 r6 00000000 r7 bec6622c
I/DEBUG ( 972): r8 00000000 r9 00000000 10 00000000 fp bec66a2c
I/DEBUG ( 972): ip ffffffff sp bec661a8 lr afe162bb pc afe0e530 cpsr 60000010
I/DEBUG ( 972): #00 pc 0000e530 /system/lib/libc.so
I/DEBUG ( 972): #01 pc 000162b8 /system/lib/libc.so
I/DEBUG ( 972):
I/DEBUG ( 972): code around pc:
I/DEBUG ( 972): afe0e520 1afffff6 e1a00002 e3082080 e3482080
I/DEBUG ( 972): afe0e530 e490c004 e0433000 f5d0f040 e04c13a2
I/DEBUG ( 972): afe0e540 e0011002 e1d1100c 0490c004 1a000022
I/DEBUG ( 972):
I/DEBUG ( 972): code around lr:
I/DEBUG ( 972): afe162a8 1b039c09 bfa84563 e0034663 f7f89809
I/DEBUG ( 972): afe162b8 4603e90a 7e88f50d 0c00f04f 46629c06
I/DEBUG ( 972): afe162c8 cc01f80e c018f8cd 970ee140 0610f046
I/DEBUG ( 972):
I/DEBUG ( 972): stack:
I/DEBUG ( 972): bec66168 00000000
I/DEBUG ( 972): bec6616c 00000000
I/DEBUG ( 972): bec66170 00000000
I/DEBUG ( 972): bec66174 00000000
I/DEBUG ( 972): bec66178 00000000
I/DEBUG ( 972): bec6617c 00000000
I/DEBUG ( 972): bec66180 00000000
I/DEBUG ( 972): bec66184 00000000
I/DEBUG ( 972): bec66188 00000000
I/DEBUG ( 972): bec6618c 00000000
I/DEBUG ( 972): bec66190 00000000
I/DEBUG ( 972): bec66194 00000000
I/DEBUG ( 972): bec66198 00000000
I/DEBUG ( 972): bec6619c 00000000
I/DEBUG ( 972): bec661a0 df002777
I/DEBUG ( 972): bec661a4 e3a070ad
I/DEBUG ( 972): #00 bec661a8 00000000
I/DEBUG ( 972): bec661ac 0ccccccc
I/DEBUG ( 972): #01 bec661b0 00000000
I/DEBUG ( 972): bec661b4 00000000
I/DEBUG ( 972): bec661b8 00000000
I/DEBUG ( 972): bec661bc 00000000
I/DEBUG ( 972): bec661c0 00000000
I/DEBUG ( 972): bec661c4 00000000
I/DEBUG ( 972): bec661c8 bec668d8 [stack]
I/DEBUG ( 972): bec661cc 00000000
I/DEBUG ( 972): bec661d0 00000000
I/DEBUG ( 972): bec661d4 0ccccccc
I/DEBUG ( 972): bec661d8 bec66444 [stack]
I/DEBUG ( 972): bec661dc 00000073
I/DEBUG ( 972): bec661e0 afe3ae08 /system/lib/libc.so
I/DEBUG ( 972): bec661e4 bec662bf [stack]
I/DEBUG ( 972): bec661e8 000176dc /system/bin/vold
I/DEBUG ( 972): bec661ec 00000000
I/DEBUG ( 972): bec661f0 00000000
I/DEBUG ( 972): bec661f4 00000006
E/MountListener( 1051): Failed to connect to vold
E/MountListener( 1051): java.lang.IllegalStateException
E/MountListener( 1051): at com.android.server.MountListener.listenToSocket(MountListener.java:269)
E/MountListener( 1051): at com.android.server.MountListener.run(MountListener.java:289)
E/MountListener( 1051): at java.lang.Thread.run(Thread.java:1096)
I/vold ( 4450): Android Volume Daemon version 2.0
D/vold ( 4450): Partition not specified, defaulting to 1
W/vold ( 4450): Volume '/media' already mounted at startup
W/vold ( 4450): Volume '/sdcard' already mounted at startup
I/vold ( 4450): Name: 002G00, Serial: 0x090fe044
E/vold ( 4450): Error making device nodes for '/dev/block/vold/179:0' (File exists)
I/vold ( 4450): New blkdev 179.0 on media 002G00, media path /devices/platform/mmci-omap-hs.1/mmc_host/mmc0/mmc0:0001/block/mmcblk0
E/vold ( 4450): Could not find volume by /devices/platform/mmci-omap-hs.1/mmc_host/mmc0/mmc0:0001/block/mmcblk0 and 0
E/vold ( 4450): Error making device nodes for '/dev/block/vold/179:1' (File exists)
I/vold ( 4450): New blkdev 179.1 on media 002G00, media path /devices/platform/mmci-omap-hs.1/mmc_host/mmc0/mmc0:0001/block/mmcblk0/mmcblk0p1
E/vold ( 4450): Could not find volume by /devices/platform/mmci-omap-hs.1/mmc_host/mmc0/mmc0:0001/block/mmcblk0 and 1
E/vold ( 4450): Error making device nodes for '/dev/block/vold/179:2' (File exists)
I/vold ( 4450): New blkdev 179.2 on media 002G00, media path /devices/platform/mmci-omap-hs.1/mmc_host/mmc0/mmc0:0001/block/mmcblk0/mmcblk0p2
E/vold ( 4450): Could not find volume by /devices/platform/mmci-omap-hs.1/mmc_host/mmc0/mmc0:0001/block/mmcblk0 and 2
E/vold ( 4450): Error making device nodes for '/dev/block/vold/179:3' (File exists)
I/vold ( 4450): New blkdev 179.3 on media 002G00, media path /devices/platform/mmci-omap-hs.1/mmc_host/mmc0/mmc0:0001/block/mmcblk0/mmcblk0p3
E/vold ( 4450): Could not find volume by /devices/platform/mmci-omap-hs.1/mmc_host/mmc0/mmc0:0001/block/mmcblk0 and 3
E/vold ( 4450): Error making device nodes for '/dev/block/vold/179:4' (File exists)
I/vold ( 4450): New blkdev 179.4 on media 002G00, media path /devices/platform/mmci-omap-hs.1/mmc_host/mmc0/mmc0:0001/block/mmcblk0/mmcblk0p4
E/vold ( 4450): Could not find volume by /devices/platform/mmci-omap-hs.1/mmc_host/mmc0/mmc0:0001/block/mmcblk0 and 4
E/vold ( 4450): Error making device nodes for '/dev/block/vold/179:5' (File exists)
I/vold ( 4450): New blkdev 179.5 on media 002G00, media path /devices/platform/mmci-omap-hs.1/mmc_host/mmc0/mmc0:0001/block/mmcblk0/mmcblk0p5
E/vold ( 4450): Could not find volume by /devices/platform/mmci-omap-hs.1/mmc_host/mmc0/mmc0:0001/block/mmcblk0 and 5
E/vold ( 4450): Error making device nodes for '/dev/block/vold/179:6' (File exists)
I/vold ( 4450): New blkdev 179.6 on media 002G00, media path /devices/platform/mmci-omap-hs.1/mmc_host/mmc0/mmc0:0001/block/mmcblk0/mmcblk0p6
E/vold ( 4450): Volume /media already mounted (did we just crash?)
E/vold ( 4450): Error making device nodes for '/dev/block/vold/179:7' (File exists)
I/vold ( 4450): New blkdev 179.7 on media 002G00, media path /devices/platform/mmci-omap-hs.1/mmc_host/mmc0/mmc0:0001/block/mmcblk0/mmcblk0p7
E/vold ( 4450): Could not find volume by /devices/platform/mmci-omap-hs.1/mmc_host/mmc0/mmc0:0001/block/mmcblk0 and 7
E/vold ( 4450): Error making device nodes for '/dev/block/vold/179:8' (File exists)
I/vold ( 4450): New blkdev 179.8 on media 002G00, media path /devices/platform/mmci-omap-hs.1/mmc_host/mmc0/mmc0:0001/block/mmcblk0/mmcblk0p8
E/vold ( 4450): Could not find volume by /devices/platform/mmci-omap-hs.1/mmc_host/mmc0/mmc0:0001/block/mmcblk0 and 8
D/vold ( 4450): send_msg(ums_disabled):
D/vold ( 4450): send_msg(ums_disconnected):
D/vold ( 4450): Bootstrapping complete
D/dalvikvm( 4071): GC freed 3242 objects / 522848 bytes in 36ms
D/vold ( 4450): Accepted connection from framework
D/vold ( 4450): send_msg(volume_mounted:/media):
D/MountListener( 1051): handleEvent volume_mounted:/media
D/vold ( 4450): send_msg(volume_mounted:/sdcard):
D/vold ( 4450): send_msg(volume_nomedia:/usb):
D/vold ( 4450): dispatch_cmd(send_ums_status):
D/vold ( 4450): send_msg(ums_disabled):
D/vold ( 4450): send_msg(ums_disconnected):
D/vold ( 4450): dispatch_cmd(mount_volume:/sdcard):
E/vold ( 4450): Cannot start volume '/sdcard' (volume is not bound)
D/vold ( 4450): dispatch_cmd(mount_volume:/media):
E/vold ( 4450): Cannot consider volume '/media' because it is in state '4
E/vold ( 4450): volmgr failed to start volume '/media'
D/MountListener( 1051): handleEvent volume_mounted:/sdcard
I/ActivityManager( 1051): Starting activity: Intent { flg=0x10000000 cmp=android/com.android.internal.app.ExternalMediaStatusActivity (has extras) }
D/MountListener( 1051): handleEvent volume_nomedia:/usb
D/MediaScannerService( 1152): start scanning volume external
I/ActivityManager( 1051): Starting activity: Intent { flg=0x10000000 cmp=android/com.android.internal.app.ExternalMediaStatusActivity (has extras) }
D/MountListener( 1051): handleEvent ums_disabled
D/MountListener( 1051): handleEvent ums_disconnected
Here is the /data/voldlog:
Code:
12:49:55.406 Starting vold
12:49:55.610 <= volume_checking:/media
12:49:55.612 <= ums_disabled
12:49:55.612 <= ums_disconnected
12:49:56.487 <= volume_mounted:/media
12:50:08.605 Framework connected
12:50:08.605 <= volume_mounted:/media
12:50:08.605 <= volume_nomedia:/sdcard
12:50:08.605 <= volume_nomedia:/usb
12:50:08.606 <= ums_disabled
12:50:08.606 <= ums_disconnected
12:50:08.606 => send_ums_status
12:50:08.606 => mount_volume:/sdcard
12:50:08.606 => mount_volume:/media
12:50:14.008 Starting vold
12:50:14.012 <= ums_disabled
12:50:14.012 <= ums_disconnected
12:50:16.003 Framework connected
12:50:16.003 <= volume_mounted:/media
12:50:16.011 <= volume_mounted:/sdcard
12:50:16.012 <= volume_nomedia:/usb
12:50:16.012 <= ums_disabled
12:50:16.012 <= ums_disconnected
12:50:16.012 => send_ums_status
12:50:16.012 => mount_volume:/sdcard
12:50:16.012 => mount_volume:/media
USB host mode seems to work correctly, since i'm able to mount the drive manually:
Code:
mount -t vfat /dev/block/uba1 /usb

Alright, so I was confused and in a hurry when I last responded.
You are connecting the USB flash drive, then hitting the Host button on UsbMode?
It could be related to the USB going in and out.
Are you trying to use a flash drive without a hub?
That's problematic depending on how much current it takes.
Use a hub.
Put it in host mode.
Connect a keyboard and see that it sees it.
Then plug in the flash drive.

Renate NST said:
You are connecting the USB flash drive, then hitting the Host button on UsbMode?
Click to expand...
Click to collapse
Excatly. When i hitting the button, there pops up the icon with SD card at the top of the screen (just like when you inserting a microSD), but no new mounts appears. However, it creates the new block device (/dev/block/uba1) and i can mount it by hands: mount -t vfat /dev/block/uba1 /usb.
Concering the USB hub: yes, i found that the most of my flash drives are refusing to work via direct plugging in. However, i found an ancient 256 MB usb flash drive that work perfectly So i'm playing with it since I have no a powered usb hub at this moment.

The vold I mixed up is just a stock (not B&N) version with a few modifications for multiple partitions and ext3 support.
Trying to run a flash drive without a hub is too much on the edge.
The Nook can really only supply about 70 mA to the USB.
Most older flashes take more than that.
I would only rely on keyboards and other things that take less than 10 mA.

Hi everyone. Sorry to dig up an old thread.
I just attempted to install this on my Nook Touch Glow with firmware 1.2.1. Unfortunately, it only seems to activate the little boot-up bug where it says that your SD card has been removed, the aforementioned (somewhere on this forum) screensaver bug (see spoiler below), and it doesn't seem to do much else. It doesn't auto-mount my USB drives, but that could be because I haven't been able to get the cpio applet to work for extracting and editing the uramdisk file.
All around, I'd rather have the old vold and vold.conf back. Can anyone please post the original vold (found in /system/bin) and vold.conf (found in /system/etc) for me? That'd be great!
Or, Renate, would you be up for trying to fix the screensaver bug and mounting bug and making a new vold?
Thanks,
3N
For some reason, when I installed the vold file found in this thread, it immediately (after a reboot) caused the Settings > Screen > Screensavers option to only show the screensaver folders located in /system/media/screensaver, and not show any of the ones in /media/screensavers. So I thought Okay, I'll just move my screensaver folders to /system/media/screensaver. I tried that, and what I found was that if I selected a folder other than Authors or Nature for use as the screensaver, it just automatically selected Authors again.
My temporary fix is to put my screensavers in Authors and put the original authors files in a backup folder, but I'd love to be able to fix this or just get rid of this new vold altogether.
EDIT - Thanks to OverByter for giving me these files! Sorry that your vold doesn't seem to work so well, though, Renate.

All the original B&N files are available in the original B&N update, just unzip them.
I use my bootutil.exe (in signature) for modifying ramdisks.
Although vold was working fine, I've largely given up on it.
Mounting USB drives on the Nook was really not too practical.
Both USB host mode and USB drives take a lot of current.
You'd be better off just copying it to the SD card.
Isn't 32 G enough?
I use mntsdcard these days.
The thread is here: http://forum.xda-developers.com/showthread.php?t=2609223
It works fine and I haven't thought about it for a while.

Renate NST said:
All the original B&N files are available in the original B&N update, just unzip them.
I use my bootutil.exe (in signature) for modifying ramdisks.
Although vold was working fine, I've largely given up on it.
Mounting USB drives on the Nook was really not too practical.
Both USB host mode and USB drives take a lot of current.
You'd be better off just copying it to the SD card.
Isn't 32 G enough?
I use mntsdcard these days.
The thread is here: http://forum.xda-developers.com/showthread.php?t=2609223
It works fine and I haven't thought about it for a while.
Click to expand...
Click to collapse
32 gigs is certainly plenty, but I'd mainly be using it to auto-mount my keyboard, camera, and MP3 player (to save the extra time required with manual mounting), not for memory drives.
And thanks for bootutil! :good:

Related

What is causing GTA3 to crash on JB? [logcat included]

GTA3 worked perfectly on ICS for me. Now on JB there is no sound and whenever I fire a weapon, the game crashes to home screen.
Here is a logcat of my most recent crash. All I did was start GTA3, load a saved game, run around a little bit and fire the pistol. It crashed when I fired the pistol.
Code:
I/System.out( 6467): Extensions GL_EXT_debug_marker GL_OES_rgb8_rgba8 GL_OES_dep
th24 GL_OES_vertex_half_float GL_OES_texture_float GL_OES_texture_half_float GL_
OES_element_index_uint GL_OES_mapbuffer GL_OES_fragment_precision_high GL_OES_co
mpressed_ETC1_RGB8_texture GL_OES_EGL_image GL_OES_EGL_image_external GL_OES_req
uired_internalformat GL_OES_depth_texture GL_OES_get_program_binary GL_OES_packe
d_depth_stencil GL_OES_standard_derivatives GL_OES_vertex_array_object GL_OES_eg
l_sync GL_EXT_multi_draw_arrays GL_EXT_texture_format_BGRA8888 GL_EXT_discard_fr
amebuffer GL_EXT_shader_texture_lod GL_IMG_shader_binary GL_IMG_texture_compress
ion_pvrtc GL_IMG_texture_npot GL_IMG_texture_format_BGRA8888 GL_IMG_read_format
GL_IMG_program_binary GL_IMG_multisampled_render_to_texture
I/System.out( 6467): Renderer: PowerVR SGX 540
I/System.out( 6467): glVersion: OpenGL ES 2.0 build [email protected]
D/OSWrapper( 6467): Initializing EGL
I/System.out( 6467): InitEGLAndGLES2 InitEGLAndGLES2 InitEGLAndGLES2 InitEGLAndG
LES2 InitEGLAndGLES2 InitEGLAndGLES2
I/System.out( 6467): Calling create surface
D/OSWrapper( 6467): phone processors 2 memory 228
D/dalvikvm( 6467): GC_FOR_ALLOC freed 257K, 4% free 10910K/11271K, paused 15ms,
total 15ms
I/dalvikvm-heap( 6467): Grow heap (frag case) to 10.892MB for 218510-byte alloca
tion
D/dalvikvm( 6467): GC_FOR_ALLOC freed 3K, 4% free 11120K/11527K, paused 26ms, to
tal 26ms
D/OSWrapper( 6467): _rwSetES2TextureType 10
D/WarMedia( 6467): OS_AnPlayMovie movies\Logo.mpg
I/OMXCodec( 126): [OMX.TI.DUCATI1.VIDEO.DECODER] AVC profile = 66 (Baseline), l
evel = 13
I/OMXCodec( 126): [OMX.TI.DUCATI1.VIDEO.DECODER] video dimensions are 860 x 480
I/OMXCodec( 126): [OMX.TI.DUCATI1.VIDEO.DECODER] Crop rect is 860 x 480 @ (0, 0
)
I/OMXCodec( 126): [OMX.TI.DUCATI1.VIDEO.DECODER] video dimensions are 1024 x 57
6
I/OMXCodec( 126): [OMX.TI.DUCATI1.VIDEO.DECODER] Crop rect is 860 x 480 @ (0, 0
)
I/OMXCodec( 126): [OMX.TI.DUCATI1.VIDEO.DECODER] video dimensions are 1024 x 57
6
I/OMXCodec( 126): [OMX.TI.DUCATI1.VIDEO.DECODER] Crop rect is 860 x 480 @ (0, 0
)
I/OMXCodec( 126): [OMX.TI.DUCATI1.VIDEO.DECODER] video dimensions are 1024 x 57
6
I/OMXCodec( 126): [OMX.TI.DUCATI1.VIDEO.DECODER] Crop rect is 860 x 480 @ (32,
24)
I/SoftAAC2( 126): Reconfiguring decoder: 22050 Hz, 2 channels
D/dalvikvm( 307): WAIT_FOR_CONCURRENT_GC blocked 0ms
D/dalvikvm( 307): GC_EXPLICIT freed 176K, 19% free 23126K/28295K, paused 2ms+6m
s, total 70ms
D/WarMedia( 6467): OS_AnStopMovie
W/TimedEventQueue( 126): Event 88 was not found in the queue, already cancelled
?
W/AudioFlinger( 126): session id 45 not found for pid 6467
D/WarMedia( 6467): OS_AnPlayMovie movies\GTAtitles.mpg
I/OMXCodec( 126): [OMX.TI.DUCATI1.VIDEO.DECODER] AVC profile = 66 (Baseline), l
evel = 13
I/OMXCodec( 126): [OMX.TI.DUCATI1.VIDEO.DECODER] video dimensions are 860 x 480
I/OMXCodec( 126): [OMX.TI.DUCATI1.VIDEO.DECODER] Crop rect is 860 x 480 @ (0, 0
)
I/OMXCodec( 126): [OMX.TI.DUCATI1.VIDEO.DECODER] video dimensions are 1024 x 57
6
I/OMXCodec( 126): [OMX.TI.DUCATI1.VIDEO.DECODER] Crop rect is 860 x 480 @ (0, 0
)
I/OMXCodec( 126): [OMX.TI.DUCATI1.VIDEO.DECODER] video dimensions are 1024 x 57
6
I/OMXCodec( 126): [OMX.TI.DUCATI1.VIDEO.DECODER] Crop rect is 860 x 480 @ (0, 0
)
I/OMXCodec( 126): [OMX.TI.DUCATI1.VIDEO.DECODER] video dimensions are 1024 x 57
6
I/OMXCodec( 126): [OMX.TI.DUCATI1.VIDEO.DECODER] Crop rect is 860 x 480 @ (32,
24)
I/SoftAAC2( 126): Reconfiguring decoder: 22050 Hz, 2 channels
D/WarMedia( 6467): OS_AnStopMovie
W/TimedEventQueue( 126): Event 296 was not found in the queue, already cancelle
d?
W/AudioFlinger( 126): session id 46 not found for pid 6467
D/dalvikvm( 6467): GC_FOR_ALLOC freed 641K, 7% free 10913K/11655K, paused 12ms,
total 12ms
D/dalvikvm( 6467): GC_CONCURRENT freed 381K, 7% free 10917K/11655K, paused 12ms+
2ms, total 24ms
D/dalvikvm( 1491): GC_CONCURRENT freed 395K, 5% free 11806K/12423K, paused 5ms+3
ms, total 37ms
D/dalvikvm( 6467): GC_CONCURRENT freed 391K, 7% free 10911K/11655K, paused 11ms+
2ms, total 27ms
D/dalvikvm( 6467): WAIT_FOR_CONCURRENT_GC blocked 5ms
D/dalvikvm( 307): GC_CONCURRENT freed 1791K, 18% free 23271K/28295K, paused 6ms
+13ms, total 122ms
F/libc ( 6467): Fatal signal 11 (SIGSEGV) at 0x0000000c (code=1), thread 6485
(m.rockstar.gta3)
I/DEBUG ( 121): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *
**
I/DEBUG ( 121): Build fingerprint: 'google/takju/maguro:4.1.1/JRO03C/398337:u
ser/release-keys'
I/DEBUG ( 121): pid: 6467, tid: 6485, name: m.rockstar.gta3 >>> com.rockstar
.gta3 <<<
I/DEBUG ( 121): signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0000000
c
I/DEBUG ( 121): r0 00000000 r1 5c5fdde0 r2 00000001 r3 0000007d
I/DEBUG ( 121): r4 00000000 r5 5dadaa2c r6 0000007a r7 5ddaecc4
I/DEBUG ( 121): r8 00001b64 r9 00000000 sl 00001730 fp 0000003e
I/DEBUG ( 121): ip 00000001 sp 5e15a830 lr 5d91e50c pc 5d91e4b8 cpsr
20000010
I/DEBUG ( 121): d0 bcc6644ec0018c6c d1 3f800000b6d0906c
I/DEBUG ( 121): d2 3f79e622bcc58b6c d3 b9974cb5bcc59800
I/DEBUG ( 121): d4 b9974cc02fabffac d5 41d5f1ccc3a42b10
I/DEBUG ( 121): d6 be4cccc83f9fd300 d7 000000003ca3d70a
I/DEBUG ( 121): d8 bc7dbae13523d70a d9 3d4ccccd00000000
I/DEBUG ( 121): d10 3e4202ff3e4ccccd d11 3f46cd743f15d987
I/DEBUG ( 121): d12 3f681bc23f625914 d13 000000003f79e622
I/DEBUG ( 121): d14 0000000000000000 d15 0000000000000000
I/DEBUG ( 121): d16 0000000000000001 d17 0000000000000000
I/DEBUG ( 121): d18 3f84040444fe3fbf d19 3f611e1e334d855a
I/DEBUG ( 121): d20 3ec6cd878c3b46a7 d21 bf29fcce83570fa1
I/DEBUG ( 121): d22 3fa553f27a0233a4 d23 3fb6571840000000
I/DEBUG ( 121): d24 3fc555555555553e d25 3ff6a09e667f3bcd
I/DEBUG ( 121): d26 3fd559354c5a21fb d27 3fdb72733e73f450
I/DEBUG ( 121): d28 3fe3363e90700248 d29 bfb5f619980c4330
I/DEBUG ( 121): d30 4007504f00000000 d31 3fe2b80340000000
I/DEBUG ( 121): scr 2000001b
I/DEBUG ( 121):
I/DEBUG ( 121): backtrace:
I/DEBUG ( 121): #00 pc 001604b8 /data/data/com.rockstar.gta3/lib/libNat
ive.so (cAudioScriptObject::Reset()+8)
I/DEBUG ( 121): #01 pc 00160508 /data/data/com.rockstar.gta3/lib/libNat
ive.so (cAudioScriptObject::cAudioScriptObject()+8)
I/DEBUG ( 121):
I/DEBUG ( 121): stack:
I/DEBUG ( 121): 5e15a7f0 000011e0
I/DEBUG ( 121): 5e15a7f4 00001a94
I/DEBUG ( 121): 5e15a7f8 5e15a814
I/DEBUG ( 121): 5e15a7fc 00000001
I/DEBUG ( 121): 5e15a800 00000000
I/DEBUG ( 121): 5e15a804 4496a56e /dev/ashmem/dalvik-heap (deleted
)
I/DEBUG ( 121): 5e15a808 c3a51aa9
I/DEBUG ( 121): 5e15a80c 41c7c84c /dev/ashmem/dalvik-heap (deleted
)
I/DEBUG ( 121): 5e15a810 5c346008
I/DEBUG ( 121): 5e15a814 bf4c619e
I/DEBUG ( 121): 5e15a818 41d400cf /dev/ashmem/dalvik-heap (deleted
)
I/DEBUG ( 121): 5e15a81c 02000000
I/DEBUG ( 121): 5e15a820 404607f6 /system/lib/libGLES_trace.so
I/DEBUG ( 121): 5e15a824 3523d70a
I/DEBUG ( 121): 5e15a828 df0027ad
I/DEBUG ( 121): 5e15a82c 00000000
I/DEBUG ( 121): #00 5e15a830 00000000
I/DEBUG ( 121): ........ ........
I/DEBUG ( 121): #01 5e15a830 00000000
I/DEBUG ( 121): 5e15a834 5d91e6c8 /data/data/com.rockstar.gta3/lib
/libNative.so (PlayOneShotScriptObject(unsigned char, CVector const&)+36)
I/DEBUG ( 121): 5e15a838 5ddaecc4
I/DEBUG ( 121): 5e15a83c 5ddcbe54
I/DEBUG ( 121): 5e15a840 5dadaa2c /data/data/com.rockstar.gta3/lib
/libNative.so
I/DEBUG ( 121): 5e15a844 5ddaf13c
I/DEBUG ( 121): 5e15a848 00001b64
I/DEBUG ( 121): 5e15a84c 5da2db5c /data/data/com.rockstar.gta3/lib
/libNative.so (CParticle::Update()+3396)
I/DEBUG ( 121): 5e15a850 3c75c28f
I/DEBUG ( 121): 5e15a854 5e15a97c
I/DEBUG ( 121): 5e15a858 ffffffee
I/DEBUG ( 121): 5e15a85c 00000000
I/DEBUG ( 121): 5e15a860 00000000
I/DEBUG ( 121): 5e15a864 00000000
I/DEBUG ( 121): 5e15a868 5dc56a6c
I/DEBUG ( 121): 5e15a86c 5dadaa2c /data/data/com.rockstar.gta3/lib
/libNative.so
I/DEBUG ( 121):
I/DEBUG ( 121): memory near r1:
I/DEBUG ( 121): 5c5fddc0 80808080 80808080 80808080 80808080 ...........
.....
I/DEBUG ( 121): 5c5fddd0 80808080 80808080 00000004 0000001b ...........
.....
I/DEBUG ( 121): 5c5fdde0 5c5327d8 40e3cd20 00000100 00000100 .'S\ [email protected]
.....
I/DEBUG ( 121): 5c5fddf0 0000000d 0000001b 00020001 00040004 ...........
.....
I/DEBUG ( 121): 5c5fde00 00010000 00020004 00000003 0000001b ...........
.....
I/DEBUG ( 121):
I/DEBUG ( 121): memory near r5:
I/DEBUG ( 121): 5dadaa0c 00000000 00000000 00000000 00000000 ...........
.....
I/DEBUG ( 121): 5dadaa1c 00000000 00000000 00000000 00000000 ...........
.....
I/DEBUG ( 121): 5dadaa2c 0031c934 00000000 00000000 4049800c 4.1........
[email protected]
I/DEBUG ( 121): 5dadaa3c 400ea1c1 404983f0 400e4d4d 40498024 [email protected]@MM.
@[email protected]
I/DEBUG ( 121): 5dadaa4c 4001a8f9 400db300 400e7711 404987c4 [email protected]@.w.
@[email protected]
I/DEBUG ( 121):
I/DEBUG ( 121): memory near r7:
I/DEBUG ( 121): 5ddaeca4 3ee4dd2d 3cd4fdf4 00000000 000077ff -..>...<...
..w..
I/DEBUG ( 121): 5ddaecb4 00030000 ffff0033 000000ff 00000000 ....3......
.....
I/DEBUG ( 121): 5ddaecc4 44968285 c3a4cae3 41be63f1 ba5efd8f ...D.....c.
A..^.
I/DEBUG ( 121): 5ddaecd4 3a723b3b bdd69d14 00000000 00000000 ;;r:.......
.....
I/DEBUG ( 121): 5ddaece4 00000000 003f459d 00000000 41bf7660 .....E?....
.`v.A
I/DEBUG ( 121):
I/DEBUG ( 121): memory near r8:
I/DEBUG ( 121): 00001b44 ffffffff ffffffff ffffffff ffffffff ...........
.....
I/DEBUG ( 121): 00001b54 ffffffff ffffffff ffffffff ffffffff ...........
.....
I/DEBUG ( 121): 00001b64 ffffffff ffffffff ffffffff ffffffff ...........
.....
I/DEBUG ( 121): 00001b74 ffffffff ffffffff ffffffff ffffffff ...........
.....
I/DEBUG ( 121): 00001b84 ffffffff ffffffff ffffffff ffffffff ...........
.....
I/DEBUG ( 121):
I/DEBUG ( 121): memory near sl:
I/DEBUG ( 121): 00001710 ffffffff ffffffff ffffffff ffffffff ...........
.....
I/DEBUG ( 121): 00001720 ffffffff ffffffff ffffffff ffffffff ...........
.....
I/DEBUG ( 121): 00001730 ffffffff ffffffff ffffffff ffffffff ...........
.....
I/DEBUG ( 121): 00001740 ffffffff ffffffff ffffffff ffffffff ...........
.....
I/DEBUG ( 121): 00001750 ffffffff ffffffff ffffffff ffffffff ...........
.....
I/DEBUG ( 121):
I/DEBUG ( 121): memory near sp:
I/DEBUG ( 121): 5e15a810 5c346008 bf4c619e 41d400cf 02000000 .`4\.aL....
A....
I/DEBUG ( 121): 5e15a820 404607f6 3523d70a df0027ad 00000000 [email protected]#5.'.
.....
I/DEBUG ( 121): 5e15a830 00000000 5d91e6c8 5ddaecc4 5ddcbe54 .......]...
]T..]
I/DEBUG ( 121): 5e15a840 5dadaa2c 5ddaf13c 00001b64 5da2db5c ,..]<..]d..
.\..]
I/DEBUG ( 121): 5e15a850 3c75c28f 5e15a97c ffffffee 00000000 ..u<|..^...
.....
I/DEBUG ( 121):
I/DEBUG ( 121): code around pc:
I/DEBUG ( 121): 5d91e498 e593200c e1510002 b583100c e12fff1e . ....Q....
.../.
I/DEBUG ( 121): 5d91e4a8 001bc5c8 00000790 eddf7a07 e3a0307d .........z.
.}0..
I/DEBUG ( 121): 5d91e4b8 edc07a03 e1c030b0 edc07a01 e3e03004 .z...0...z.
..0..
I/DEBUG ( 121): 5d91e4c8 edc07a02 e5803010 e12fff1e 00000000 .z...0..../
.....
I/DEBUG ( 121): 5d91e4d8 e92d4010 e1a04000 ebfffff2 e1a00004 [email protected]@.....
.....
I/DEBUG ( 121):
I/DEBUG ( 121): code around lr:
I/DEBUG ( 121): 5d91e4ec e92d4010 e1a04000 ebffffed e1a00004 [email protected]@.....
.....
I/DEBUG ( 121): 5d91e4fc e8bd8010 e92d4010 e1a04000 ebffffe8 [email protected]@.
.....
I/DEBUG ( 121): 5d91e50c e1a00004 e8bd8010 e92d4010 e1a04000 [email protected]
[email protected]
I/DEBUG ( 121): 5d91e51c ebffffe3 e1a00004 e8bd8010 e59f316c ...........
.l1..
I/DEBUG ( 121): 5d91e52c e59f216c e08f3003 e92d0ff0 e7933002 l!...0....-
..0..
I/BootReceiver( 307): Copying /data/tombstones/tombstone_02 to DropBox (SYSTEM_
TOMBSTONE)
I/WindowState( 307): WIN DEATH: Window{42009258 SurfaceView paused=false}
I/ActivityManager( 307): Process com.rockstar.gta3 (pid 6467) has died.
W/ActivityManager( 307): Force removing ActivityRecord{42074cd8 com.rockstar.gt
a3/.GTA3}: app died, no saved state
W/InputDispatcher( 307): channel '41fd4058 com.rockstar.gta3/com.rockstar.gta3.
GTA3 (server)' ~ Consumer closed input channel or an error occurred. events=0x9
E/InputDispatcher( 307): channel '41fd4058 com.rockstar.gta3/com.rockstar.gta3.
GTA3 (server)' ~ Channel is unrecoverably broken and will be disposed!
W/InputDispatcher( 307): Attempted to unregister already unregistered input cha
nnel '41fd4058 com.rockstar.gta3/com.rockstar.gta3.GTA3 (server)'
I/WindowState( 307): WIN DEATH: Window{4200a838 SurfaceView paused=false}
I/WindowState( 307): WIN DEATH: Window{41fd4058 com.rockstar.gta3/com.rockstar.
gta3.GTA3 paused=false}
I/WindowManager( 307): WINDOW DIED Window{41fd4058 com.rockstar.gta3/com.rockst
ar.gta3.GTA3 paused=false}
I/InputReader( 307): Reconfiguring input devices. changes=0x00000004
I/InputReader( 307): Device reconfigured: id=6, name='Melfas MMSxxx Touchscreen
', surface size is now 720x1280, mode is 1
D/dalvikvm( 307): GC_CONCURRENT freed 1561K, 17% free 23748K/28295K, paused 21m
s+15ms, total 130ms
D/dalvikvm( 307): WAIT_FOR_CONCURRENT_GC blocked 100ms
D/Zygote ( 124): Process 6467 terminated by signal (11)
I/ActivityManager( 307): Config changed: {1.0 310mcc260mnc en_US sw360dp w360dp
h585dp nrml long port finger -keyb/v/h -nav/h s.17}
W/InputMethodManagerService( 307): Got RemoteException sending setActive(false)
notification to pid 6467 uid 10089
D/dalvikvm( 1491): GC_CONCURRENT freed 398K, 5% free 11806K/12423K, paused 5ms+3
ms, total 40ms
D/dalvikvm( 307): WAIT_FOR_CONCURRENT_GC blocked 0ms
D/dalvikvm( 307): GC_EXPLICIT freed 1379K, 20% free 22735K/28295K, paused 7ms+8
ms, total 99ms
D/dalvikvm( 1491): GC_CONCURRENT freed 390K, 5% free 11806K/12423K, paused 16ms+
3ms, total 56ms
Send the log to rockstar.
Sent from my Galaxy Nexus using xda premium
El Daddy said:
Send the log to rockstar.
Sent from my Galaxy Nexus using xda premium
Click to expand...
Click to collapse
I did lol, they seem to be ignoring me. Thought I would post here for more help.
Uh idk... maybe because THEY HAVENT UPDATED IT FOR JELLY BEAN.
Sent From My Sprint Galaxy Nexus
for me the GTA 3 works fine, I'm using stock Jelly Bean JRCO03C ROM..
Try to delete the game and delete data, if you bought the GTA3 then download it again from market if you have downloaded it from internet then download 1.3 version from internet and install it and then download data and it should work...
I just noticed that mine doesn't even start. I'm on Bugless Beast 4.11 with Franco Kernel 220.
I'll try downloading it again from the Play Store.
manumanfred said:
for me the GTA 3 works fine, I'm using stock Jelly Bean JRCO03C ROM..
Try to delete the game and delete data, if you bought the GTA3 then download it again from market if you have downloaded it from internet then download 1.3 version from internet and install it and then download data and it should work...
Click to expand...
Click to collapse
Damn I tried, I deleted every last file and uninstalled, also tried Franco kernel and nothing seems to make it work properly. Using bigxies 4.1.1
fredryk said:
Damn I tried, I deleted every last file and uninstalled, also tried Franco kernel and nothing seems to make it work properly. Using bigxies 4.1.1
Click to expand...
Click to collapse
It might have to do Franco Kernel if that is what you tried after reinstallng it. Try another kernel.

[Q] akmd2 : Device initialization failed

Hi right at the very end you can see i am getting a error akmd2 : Device initialization failed can someone please tell me what it is
Thanks
PHP:
.
I/DEBUG ( 157):
I/DEBUG ( 157): memory map around addr 00008d74:
I/DEBUG ( 157): (no map below)
I/DEBUG ( 157): (no map for address)
I/DEBUG ( 157): 54aaa000-54ab2000 /data/data/ccc71.at/arm/sqlite3
I/DEBUG ( 157):
I/DEBUG ( 157): stack:
I/DEBUG ( 157): 7ec89a88 00000000
I/DEBUG ( 157): 7ec89a8c 00000000
I/DEBUG ( 157): 7ec89a90 00000000
I/DEBUG ( 157): 7ec89a94 00000000
I/DEBUG ( 157): 7ec89a98 00000000
I/DEBUG ( 157): 7ec89a9c 00000000
I/DEBUG ( 157): 7ec89aa0 00000000
I/DEBUG ( 157): 7ec89aa4 00000000
I/DEBUG ( 157): 7ec89aa8 00000000
I/DEBUG ( 157): 7ec89aac 00000000
I/DEBUG ( 157): 7ec89ab0 00000000
I/DEBUG ( 157): 7ec89ab4 00000000
I/DEBUG ( 157): 7ec89ab8 00000000
I/DEBUG ( 157): 7ec89abc 00000000
I/DEBUG ( 157): 7ec89ac0 df0027ad
I/DEBUG ( 157): 7ec89ac4 00000000
I/DEBUG ( 157): #00 7ec89ac8 00000000
I/DEBUG ( 157): 7ec89acc 00000000
I/DEBUG ( 157): 7ec89ad0 7000a078
I/DEBUG ( 157): 7ec89ad4 7000a078
I/DEBUG ( 157): 7ec89ad8 7ec89c66 [stack]
I/DEBUG ( 157): 7ec89adc 00000118
I/DEBUG ( 157): 7ec89ae0 7000a078
I/DEBUG ( 157): 7ec89ae4 7000a078
I/DEBUG ( 157): 7ec89ae8 700094f0 /system/bin/linker
I/DEBUG ( 157): 7ec89aec 00000002
I/DEBUG ( 157): 7ec89af0 7ec89b08 [stack]
I/DEBUG ( 157): 7ec89af4 70009910 /system/bin/linker
I/DEBUG ( 157): 7ec89af8 00000000
I/DEBUG ( 157): 7ec89afc 00000000
I/DEBUG ( 157): 7ec89b00 70006d13 /system/bin/linker
I/DEBUG ( 157): 7ec89b04 700047d5 /system/bin/linker
I/DEBUG ( 157): 7ec89b08 00000000
I/DEBUG ( 157): 7ec89b0c 00000000
I/BootReceiver( 402): Copying /data/tombstones/tombstone_06 to DropBox (SYSTEM_
TOMBSTONE)
F/libc ( 2916): Fatal signal 11 (SIGSEGV) at 0x00008d74 (code=1)
I/DEBUG ( 157): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *
**
I/DEBUG ( 157): Build fingerprint: 'SEMC/LT15i_1254-9461/LT15i:4.0.4/4.1.B.0.
587/tL1_3w:user/release-keys'
I/DEBUG ( 157): pid: 2916, tid: 2916 >>> /data/data/ccc71.at/arm/sqlite3 <<<
I/DEBUG ( 157): signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 00008d7
4
I/DEBUG ( 157): r0 70000001 r1 700094fc r2 00000000 r3 00008d74
I/DEBUG ( 157): r4 7000a078 r5 ffffffff r6 00008d74 r7 7e918b08
I/DEBUG ( 157): r8 70009910 r9 00000000 10 00000000 fp 70006d13
I/DEBUG ( 157): ip 00008005 sp 7e918ac8 lr 000072a6 pc 700041a8 cpsr 000
00030
I/DEBUG ( 157): d0 6472656767756265 d1 0000000000000028
I/DEBUG ( 157): d2 0000000000000063 d3 000000000000006f
I/DEBUG ( 157): d4 0000000000000000 d5 0000000000000000
I/DEBUG ( 157): d6 0000000000000000 d7 0000000000000000
I/DEBUG ( 157): d8 0000000000000000 d9 0000000000000000
I/DEBUG ( 157): d10 0000000000000000 d11 0000000000000000
I/DEBUG ( 157): d12 0000000000000000 d13 0000000000000000
I/DEBUG ( 157): d14 0000000000000000 d15 0000000000000000
I/DEBUG ( 157): d16 0000000000000000 d17 0000000000000000
I/DEBUG ( 157): d18 0000000000000000 d19 0000000000000000
I/DEBUG ( 157): d20 0000000000000000 d21 0000000000000000
I/DEBUG ( 157): d22 0000000000000000 d23 0000000000000000
I/DEBUG ( 157): d24 0000000000000000 d25 0000000000000000
I/DEBUG ( 157): d26 0000000000000000 d27 0000000000000000
I/DEBUG ( 157): d28 0000000000000000 d29 0000000000000000
I/DEBUG ( 157): d30 0000000000000000 d31 0000000000000000
I/DEBUG ( 157): scr 00000000
I/DEBUG ( 157):
I/DEBUG ( 157): #00 pc 700041a8 /system/bin/linker
I/DEBUG ( 157): #01 lr 000072a6 <unknown>
I/DEBUG ( 157):
I/DEBUG ( 157): code around pc:
I/DEBUG ( 157): 70004188 6858e00a 208cf8d4 f8c41885 e00350d8 ..Xh... .....P.
.
I/DEBUG ( 157): 70004198 0895685a 50dcf8c4 e0013308 44794924 Zh.....P.3..$Iy
D
I/DEBUG ( 157): 700041a8 2d00681d af49f47f 30acf8d4 f8d4b113 .h.-..I....0...
.
I/DEBUG ( 157): 700041b8 b96110b0 7174f240 9100481e 44784a1e [email protected]
D
I/DEBUG ( 157): 700041c8 491f4b1e 447b447a 68094479 f8d4e7b1 .K.IzD{DyD.h...
.
I/DEBUG ( 157):
I/DEBUG ( 157): code around lr:
I/DEBUG ( 157): 00007284 ffffffff ffffffff ffffffff ffffffff ...............
.
I/DEBUG ( 157): 00007294 ffffffff ffffffff ffffffff ffffffff ...............
.
I/DEBUG ( 157): 000072a4 ffffffff ffffffff ffffffff ffffffff ...............
.
I/DEBUG ( 157): 000072b4 ffffffff ffffffff ffffffff ffffffff ...............
.
I/DEBUG ( 157): 000072c4 ffffffff ffffffff ffffffff ffffffff ...............
.
I/DEBUG ( 157):
I/DEBUG ( 157): memory map around addr 00008d74:
I/DEBUG ( 157): (no map below)
I/DEBUG ( 157): (no map for address)
I/DEBUG ( 157): 54aaa000-54ab2000 /data/data/ccc71.at/arm/sqlite3
I/DEBUG ( 157):
I/DEBUG ( 157): stack:
I/DEBUG ( 157): 7e918a88 00000000
I/DEBUG ( 157): 7e918a8c 00000000
I/DEBUG ( 157): 7e918a90 00000000
I/DEBUG ( 157): 7e918a94 00000000
I/DEBUG ( 157): 7e918a98 00000000
I/DEBUG ( 157): 7e918a9c 00000000
I/DEBUG ( 157): 7e918aa0 00000000
I/DEBUG ( 157): 7e918aa4 00000000
I/DEBUG ( 157): 7e918aa8 00000000
I/DEBUG ( 157): 7e918aac 00000000
I/DEBUG ( 157): 7e918ab0 00000000
I/DEBUG ( 157): 7e918ab4 00000000
I/DEBUG ( 157): 7e918ab8 00000000
I/DEBUG ( 157): 7e918abc 00000000
I/DEBUG ( 157): 7e918ac0 df0027ad
I/DEBUG ( 157): 7e918ac4 00000000
I/DEBUG ( 157): #00 7e918ac8 00000000
I/DEBUG ( 157): 7e918acc 00000000
I/DEBUG ( 157): 7e918ad0 7000a078
I/DEBUG ( 157): 7e918ad4 7000a078
I/DEBUG ( 157): 7e918ad8 7e918c64 [stack]
I/DEBUG ( 157): 7e918adc 00000118
I/DEBUG ( 157): 7e918ae0 7000a078
I/DEBUG ( 157): 7e918ae4 7000a078
I/DEBUG ( 157): 7e918ae8 700094f0 /system/bin/linker
I/DEBUG ( 157): 7e918aec 00000002
I/DEBUG ( 157): 7e918af0 7e918b08 [stack]
I/DEBUG ( 157): 7e918af4 70009910 /system/bin/linker
I/DEBUG ( 157): 7e918af8 00000000
I/DEBUG ( 157): 7e918afc 00000000
I/DEBUG ( 157): 7e918b00 70006d13 /system/bin/linker
I/DEBUG ( 157): 7e918b04 700047d5 /system/bin/linker
I/DEBUG ( 157): 7e918b08 00000000
I/DEBUG ( 157): 7e918b0c 00000000
I/BootReceiver( 402): Copying /data/tombstones/tombstone_02 to DropBox (SYSTEM_
TOMBSTONE)
I/ActivityManager( 402): Process ccc71.at (pid 1602) has died.
W/ActivityManager( 402): Scheduling restart of crashed service ccc71.at/.servic
es.at_service in 42554ms
W/ActivityManager( 402): Scheduling restart of crashed service ccc71.at/.servic
es.at_background_service in 52554ms
E/kernel ( 168): [ 170.505187] init: untracked pid 1679 exited
E/kernel ( 168): [ 170.505279] init: untracked pid 1693 exited
D/dalvikvm( 402): GC_FOR_ALLOC freed 616K, 13% free 16895K/19399K, paused 105ms
I/dalvikvm-heap( 402): Grow heap (frag case) to 16.667MB for 129616-byte alloca
tion
D/dalvikvm( 402): GC_FOR_ALLOC freed 483K, 16% free 16538K/19527K, paused 66ms
D/dalvikvm( 501): GC_CONCURRENT freed 1645K, 22% free 13085K/16583K, paused 2ms
+6ms
I/ActivityManager( 402): Start proc com.google.process.gapps for service com.go
ogle.android.location/.NetworkLocationService: pid=2917 uid=10054 gids={3003, 10
15, 2001, 1007, 3006}
I/dalvikvm( 2917): Turning on JNI app bug workarounds for target SDK version 12.
..
I/ActivityThread( 2917): Pub com.google.settings: com.google.android.gsf.setting
s.GoogleSettingsProvider
I/ActivityThread( 2917): Pub subscribedfeeds: com.google.android.gsf.subscribedf
eeds.SubscribedFeedsProvider
I/ActivityThread( 2917): Pub com.google.contacts.gal.provider: com.google.androi
d.syncadapters.contacts.GalProvider
I/ActivityThread( 2917): Pub com.google.android.gsf.gservices: com.google.androi
d.gsf.gservices.GservicesProvider
I/GservicesProvider( 2917): Gservices pushing to system: true; secure: true
I/ActivityThread( 2917): Pub com.google.android.providers.talk: com.google.andro
id.gsf.talk.TalkProvider
D/NetworkLocationService( 2917): onCreate com.google.android.location.NetworkLoc
[email protected]
D/NetworkLocationClient( 2917): ANDROID minProtocolVersion 1 maxProtocolVersion
1 releaseVersion -1
D/NetworkLocationClient( 2917): binding to Intent { act=com.google.android.locat
ion.internal.ANDROID_NLP }
D/NetworkLocationService( 2917): onBind com.google.android.location.NetworkLocat
[email protected]e8e348
D/NetworkLocationService( 2917): onBind com.google.android.location.GeocodeProvi
dercom.google.android.location.[email protected]
D/SyncManager( 402): setSyncAutomatically: , provider subscribedfeeds -> true
D/SyncManager( 402): setSyncAutomatically: already set to true, doing nothing
D/androidInternalNlpService( 2917): onCreate com.google.android.location.interna
[email protected]
D/NetworkLocationRealOs( 2917): ------------------------ reading cache.cell
D/NetworkLocationRealOs( 2917): no cache.cell found; not migrating
D/NetworkLocationRealOs( 2917): ------------------------ reading cache.wifi
D/NetworkLocationRealOs( 2917): no cache.wifi found; not migrating
D/androidNlpServiceThread( 2917): ANDROID minProtocolVersion 1 maxProtocolVersio
n 1 releaseVersion -1
I/AKMD2 ( 2941): AK8975/B for Android v 2.0.0.---- (Library: v1.2.3.114) start
ed.
E/AKMD2 ( 2941): akmd2 : Device initialization failed.
I/AKMD2 ( 2941): AK8975/B for Android end.
D/dalvikvm( 2917): GC_CONCURRENT freed 264K, 4% free 9490K/9799K, paused 3ms+5ms
D/NetworkLocationClient( 2917): onServiceConnected to ComponentInfo{com.google.a
ndroid.location/com.google.android.location.internal.server.NetworkLocationServi
ce}
D/androidNetworkLocationListeners( 2917): Still have listener com.google.android
[email protected]
I/AKMD2 ( 2942): AK8975/B for Android v 2.0.0.---- (Library: v1.2.3.114) start
ed.
E/AKMD2 ( 2942): akmd2 : Device initialization failed.
I/AKMD2 ( 2942): AK8975/B for Android end.
D/kernel ( 168): [ 183.374481] bq27520 0-0055: bq27520_handle_soc_worker() ca
pacity=54 (54) flags=0x138 ctrl_status=0x28d soh_state=0x1, valid=1
I/AKMD2 ( 2943): AK8975/B for Android v 2.0.0.---- (Library: v1.2.3.114) start
ed.
E/AKMD2 ( 2943): akmd2 : Device initialization failed.
I/AKMD2 ( 2943): AK8975/B for Android end.
I/ActivityManager( 402): Start proc com.sonyericsson.secureclockservice for ser
vice com.sonyericsson.secureclockservice/.SecureClockEventListenerService: pid=2
944 uid=10042 gids={3003}
I/SecureClock( 2944): The listener for network connectivity is set up
I/SecureClock( 2944): Generate an initial secure clock value.
I/SecureClock( 2944): Network not connected
I/JNI ( 2944): Trying to load libJNISecureClock.so
D/dalvikvm( 2944): Trying to load lib /data/data/com.sonyericsson.secureclockser
vice/lib/libJNISecureClock.so 0x2be522e0
D/dalvikvm( 2944): Added shared lib /data/data/com.sonyericsson.secureclockservi
ce/lib/libJNISecureClock.so 0x2be522e0
D/dalvikvm( 2944): No JNI_OnLoad found in /data/data/com.sonyericsson.securecloc
kservice/lib/libJNISecureClock.so 0x2be522e0, skipping init
I/SecureClock( 2944): network state changed
I/SecureClock( 2944): The phone is now connected with the network again!
I/SecureClock( 2944): fetchNTPTime started
I/SecureClock( 2944): Enter NTP request guard
I/SecureClock( 2944): Ntp time fetching triggered.
I/SecureClock( 2944): Trying to fetch NTP time from the server: xtra1.gpsonextra
.net
I/SecureClock( 2944): Retrieved Ntp time:1362956818
I/SecureClock( 2944): Stopping parent service
I/SecureClock( 2944): Exit NTP request guard
I/AKMD2 ( 2959): AK8975/B for Android v 2.0.0.---- (Library: v1.2.3.114) start
ed.
E/AKMD2 ( 2959): akmd2 : Device initialization failed.
I/AKMD2 ( 2959): AK8975/B for Android end.
I/GTalkService/c( 2917): [[email protected]] connect: acct=1000000, stat
e=CONNECTING
I/AKMD2 ( 2965): AK8975/B for Android v 2.0.0.---- (Library: v1.2.3.114) start
ed.
E/AKMD2 ( 2965): akmd2 : Device initialization failed.
I/AKMD2 ( 2965): AK8975/B for Android end.
D/dalvikvm( 2917): GC_CONCURRENT freed 288K, 4% free 9638K/9991K, paused 2ms+4ms
D/ConnectivityService( 402): handleInetConditionHoldEnd: net=1, condition=100,
published condition=100
I/AKMD2 ( 2970): AK8975/B for Android v 2.0.0.---- (Library: v1.2.3.114) start
ed.
E/AKMD2 ( 2970): akmd2 : Device initialization failed.
I/AKMD2 ( 2970): AK8975/B for Android end.
I/ActivityManager( 402): Start proc com.texty.sms for service com.texty.sms/.Sy
ncService: pid=2971 uid=10115 gids={3003}
E/texty ( 2971): ts_last_c2dm=1362094738975
I/AKMD2 ( 2987): AK8975/B for Android v 2.0.0.---- (Library: v1.2.3.114) start
ed.
E/AKMD2 ( 2987): akmd2 : Device initialization failed.
I/AKMD2 ( 2987): AK8975/B for Android end.
I/AKMD2 ( 2988): AK8975/B for Android v 2.0.0.---- (Library: v1.2.3.114) start
ed.
E/AKMD2 ( 2988): akmd2 : Device initialization failed.
I/AKMD2 ( 2988): AK8975/B for Android end.
I/ActivityManager( 402): Start proc ccc71.at for service ccc71.at/.services.at_
service: pid=2989 uid=10097 gids={1007, 1015, 3002, 3001, 1006, 3003}
I/dalvikvm( 2989): Turning on JNI app bug workarounds for target SDK version 11.
..
D/dalvikvm( 402): GC_EXPLICIT freed 726K, 16% free 16546K/19527K, paused 6ms+8m
s
W/android_tuner( 2989): Starting (after app kill) at_service default receivers -
[email protected]
D/android_tuner( 2989): Opening DB from ccc71.at.d.f
V/android_tuner( 2989): DB created and ready!
D/dalvikvm( 2989): GC_CONCURRENT freed 152K, 2% free 9606K/9799K, paused 2ms+2ms
W/android_tuner( 2989): Loading exception handler onto file /mnt/sdcard/at/suppo
rt/crash_reports.txt
D/android_tuner( 2989): Enumerating existing widgets...
W/android_tuner( 2989): Registered at_watcher (screen false)
V/android_tuner( 2989): registeredListeners removing: class ccc71.at.schedulers.
at_widget_scheduler
I/android_tuner( 2989): Checking 26 processes
W/android_tuner( 2989): Killing 6 processes...
I/ActivityManager( 402): Killing proc 2989:ccc71.at/10097: kill background
W/ActivityManager( 402): Scheduling restart of crashed service ccc71.at/.servic
es.at_service in 170216ms
I/AKMD2 ( 3006): AK8975/B for Android v 2.0.0.---- (Library: v1.2.3.114) start
ed.
E/AKMD2 ( 3006): akmd2 : Device initialization failed.
I/AKMD2 ( 3006): AK8975/B for Android end.
I/AKMD2 ( 3007): AK8975/B for Android v 2.0.0.---- (Library: v1.2.3.114) start
ed.
[COLOR="Red"]E/AKMD2 ( 3007): akmd2 : Device initialization failed.
I/AKMD2 ( 3007): AK8975/B for Android end[/COLOR].
AK8975 is the compass and/or accelerometer sensor, that is used Sony Ericsson phones.
So my guess would be, that akmd2 is the control driver for that sensor.

[ROM][4.3][Unofficial]CyanogenMod 10.2 Alpha Releases - v4 (All working)

CyanogenMod 10.2
BUILD 4​
I made this very early alpha build that boots. so it means the kernel is ready for android 4.3 ^^
What's working
- Everything
Bugs:
- Gallery FC when taking picture (video works though)
- Random Trebuchet FC's
- Core0 High CPU Freq, to be patched by ChainFire, root is working tho.
Download:
www.broodplank.net/files/cm-10.2-20130729-UNOFFICIAL-jfltexx-v4.zip
NOTE: You have to manually format /system. if you don't you will get a merged system
The attached boot.img is an insecure kernel, from version 4 an insecure kernel is included by default
How to install:
1. Download Latest release (v4) and download JB 4.3 Gapps
2. Put files on sdcard
3. Reboot in CWM
4. If coming from an other rom a factory reset is recommended. please note that you have to format system manually as well
5. Install CM, Install GAPPS.
6. Reboot and profit!
Bug Investigation
1. Camera fc on taking picture:
Reason: /system/lib/hw/camera.msm8960.so not correct
Code:
F/libc ( 3597): FORTIFY_SOURCE: strlen read overflow. Calling abort().
F/libc ( 3597): Fatal signal 11 (SIGSEGV) at 0xdeadbaad (code=1), thread 3830 (mediaserver)
V/CAM_PhotoModule( 3758): mShutterToRawCallbackTime = 1375084487136ms
I/DEBUG ( 288): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
I/DEBUG ( 288): Build fingerprint: 'samsung/jfltexx/jflte:4.2.2/JDQ39/I9505XXUAMDE:user/release-keys'
I/DEBUG ( 288): Revision: '11'
I/DEBUG ( 288): pid: 3597, tid: 3830, name: mediaserver >>> /system/bin/mediaserver <<<
I/DEBUG ( 288): signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr deadbaad
I/DEBUG ( 288): Abort message: 'FORTIFY_SOURCE: strlen read overflow. Calling abort().'
W/NativeCrashListener( 704): Couldn't find ProcessRecord for pid 3597
E/MP-Decision( 1382): num online cores: 1 reqd : 2 available : 4 rq_depth:6.100000 hotplug_avg_load_dw: 35
E/MP-Decision( 1382): UP cpu:1 core_idx:1 Nw:1.900000 Tw:140 total_time_up:147.000000
I/DEBUG ( 288): r0 00000027 r1 00000000 r2 00000008 r3 deadbaad
I/DEBUG ( 288): r4 00000000 r5 b24d86c4 r6 00000001 r7 00000001
I/DEBUG ( 288): r8 00000000 r9 b86a6c70 sl b86b8c38 fp 00000002
I/DEBUG ( 288): ip 00000001 sp b24d86c0 lr b6edcfa3 pc b6eda504 cpsr 60000030
I/DEBUG ( 288): d0 0000000000000000 d1 0000000000000000
I/DEBUG ( 288): d2 0000000000000000 d3 0000000000000000
I/DEBUG ( 288): d4 b8687cd8b8687cb0 d5 b869bc90b8683860
I/DEBUG ( 288): d6 b869bbd0b869bba8 d7 b8694ec0b8694e98
I/DEBUG ( 288): d8 4059000000000000 d9 0000000000000000
I/DEBUG ( 288): d10 0000000000000000 d11 3fe62e42fefa39ef
I/DEBUG ( 288): d12 0000000000000000 d13 0000000000000000
I/DEBUG ( 288): d14 0000000000000000 d15 0000000000000000
I/DEBUG ( 288): d16 6e696c6c6143202e d17 2874726f62612067
I/DEBUG ( 288): d18 b868f200b868f1d0 d19 b8683420b86833f8
I/DEBUG ( 288): d20 b8699408b868f900 d21 b8683358b869b358
I/DEBUG ( 288): d22 b869b408b869b3e0 d23 b86948d0b86836b8
I/DEBUG ( 288): d24 3f07b25be6f1e05d d25 bf07b27620e115d6
I/DEBUG ( 288): d26 40460cccc0000000 d27 4014000000000000
I/DEBUG ( 288): d28 3ff0000000000000 d29 bf8388915620e116
I/DEBUG ( 288): d30 3ff0000000000000 d31 4000000000000000
I/DEBUG ( 288): scr 20000010
I/DEBUG ( 288):
I/DEBUG ( 288): backtrace:
I/DEBUG ( 288): #00 pc 0001e504 /system/lib/libc.so
I/DEBUG ( 288): #01 pc 0001c500 /system/lib/libc.so (abort+4)
I/DEBUG ( 288): #02 pc 000121f9 /system/lib/libc.so
I/DEBUG ( 288): #03 pc 0001221b /system/lib/libc.so
I/DEBUG ( 288): #04 pc 00012d3f /system/lib/libc.so (__strlen_chk+18)
I/DEBUG ( 288): #05 pc 000170b7 /system/lib/hw/camera.msm8960.so (android::QCameraHardwareInterface::initExifData()+270)
I/DEBUG ( 288): #06 pc 000220d3 /system/lib/hw/camera.msm8960.so (android::QCameraHardwareInterface::encodeData(mm_camera_super_buf_t*, unsigned int*, mm_camera_super_buf_t*)+1230)
I/DEBUG ( 288): #07 pc 00022ab7 /system/lib/hw/camera.msm8960.so (android::QCameraHardwareInterface::dataProcessRoutine(void*)+338)
I/DEBUG ( 288): #08 pc 0000caa0 /system/lib/libc.so (__thread_entry+72)
I/DEBUG ( 288): #09 pc 0000cc1c /system/lib/libc.so (pthread_create+208)
I/DEBUG ( 288):
I/DEBUG ( 288): stack:
I/DEBUG ( 288): b24d8680 b64801d9 /system/lib/hw/camera.msm8960.so
I/DEBUG ( 288): b24d8684 00000000
I/DEBUG ( 288): b24d8688 b6f04170 /system/lib/libc.so
I/DEBUG ( 288): b24d868c b861aea0 [heap]
I/DEBUG ( 288): b24d8690 0000014e
I/DEBUG ( 288): b24d8694 b6edbf85 /system/lib/libc.so (__sflush+56)
I/DEBUG ( 288): b24d8698 b6f04264 /system/lib/libc.so
I/DEBUG ( 288): b24d869c b6f041c4 /system/lib/libc.so
I/DEBUG ( 288): b24d86a0 00000000
I/DEBUG ( 288): b24d86a4 b6edcfa3 /system/lib/libc.so (_fwalk+34)
I/DEBUG ( 288): b24d86a8 b6edc24d /system/lib/libc.so (_cleanup)
I/DEBUG ( 288): b24d86ac b24d86c4 [stack:3830]
I/DEBUG ( 288): b24d86b0 00000001
I/DEBUG ( 288): b24d86b4 00000001
I/DEBUG ( 288): b24d86b8 df0027ad
I/DEBUG ( 288): b24d86bc 00000000
I/DEBUG ( 288): #00 b24d86c0 b6f07204
I/DEBUG ( 288): b24d86c4 fffffbdf
I/DEBUG ( 288): b24d86c8 aa845000
I/DEBUG ( 288): b24d86cc 0000003b
I/DEBUG ( 288): b24d86d0 ffffffff
I/DEBUG ( 288): b24d86d4 00000000
I/DEBUG ( 288): b24d86d8 00000003
I/DEBUG ( 288): b24d86dc b24d8704 [stack:3830]
I/DEBUG ( 288): b24d86e0 b648b422 /system/lib/hw/camera.msm8960.so
I/DEBUG ( 288): b24d86e4 b6ed8504 /system/lib/libc.so (__pthread_clone)
I/DEBUG ( 288): #01 b24d86e8 00000000
I/DEBUG ( 288): b24d86ec b6ece1fd /system/lib/libc.so
I/DEBUG ( 288): #02 b24d86f0 b24d8b14 [stack:3830]
I/DEBUG ( 288): b24d86f4 00000036
I/DEBUG ( 288): b24d86f8 b24d8704 [stack:3830]
I/DEBUG ( 288): b24d86fc b24d873a [stack:3830]
I/DEBUG ( 288): b24d8700 b24d8b03 [stack:3830]
I/DEBUG ( 288): b24d8704 54524f46
I/DEBUG ( 288): b24d8708 5f594649
I/DEBUG ( 288): b24d870c 52554f53
I/DEBUG ( 288): b24d8710 203a4543
I/DEBUG ( 288): b24d8714 6c727473
I/DEBUG ( 288): b24d8718 72206e65
I/DEBUG ( 288): b24d871c 20646165
I/DEBUG ( 288): b24d8720 7265766f
I/DEBUG ( 288): b24d8724 776f6c66
I/DEBUG ( 288): b24d8728 6143202e
I/DEBUG ( 288): b24d872c 6e696c6c
I/DEBUG ( 288): ........ ........
I/DEBUG ( 288):
I/DEBUG ( 288): memory near r5:
I/DEBUG ( 288): b24d86a4 b6edcfa3 b6edc24d b24d86c4 00000001
I/DEBUG ( 288): b24d86b4 00000001 df0027ad 00000000 b6f07204
I/DEBUG ( 288): b24d86c4 fffffbdf aa845000 0000003b ffffffff
I/DEBUG ( 288): b24d86d4 00000000 00000003 b24d8704 b648b422
I/DEBUG ( 288): b24d86e4 b6ed8504 00000000 b6ece1fd b24d8b14
I/DEBUG ( 288): b24d86f4 00000036 b24d8704 b24d873a b24d8b03
I/DEBUG ( 288): b24d8704 54524f46 5f594649 52554f53 203a4543
I/DEBUG ( 288): b24d8714 6c727473 72206e65 20646165 7265766f
I/DEBUG ( 288): b24d8724 776f6c66 6143202e 6e696c6c 62612067
I/DEBUG ( 288): b24d8734 2874726f 00002e29 00000006 00000001
I/DEBUG ( 288): b24d8744 b24d873c 00000001 b64830b2 0000000b
I/DEBUG ( 288): b24d8754 b24d879c 00000033 00000000 00000000
I/DEBUG ( 288): b24d8764 b24d8724 00000000 b24d872c 00000000
I/DEBUG ( 288): b24d8774 299a346f 00000000 299a346f b64801d9
I/DEBUG ( 288): b24d8784 b6f071f4 b64830b2 00000006 b86983bc
I/DEBUG ( 288): b24d8794 b6f15591 b24d8bb4 6f636e65 61446564
I/DEBUG ( 288):
I/DEBUG ( 288): memory near r9:
I/DEBUG ( 288): b86a6c50 00000000 00000000 00000000 00000000
I/DEBUG ( 288): b86a6c60 00000000 00000000 00000000 00000000
I/DEBUG ( 288): b86a6c70 00000000 00000000 00000000 00000000
I/DEBUG ( 288): b86a6c80 00000000 00000000 00000000 00000000
I/DEBUG ( 288): b86a6c90 00000000 00000000 00000000 00000003
I/DEBUG ( 288): b86a6ca0 00000000 00000000 00000000 b648a728
I/DEBUG ( 288): b86a6cb0 b86a6cb0 b86a6cb0 00000000 00000000
I/DEBUG ( 288): b86a6cc0 00000000 b648a728 b86a6cc8 b86a6cc8
I/DEBUG ( 288): b86a6cd0 00000000 00000000 00000000 b648a728
I/DEBUG ( 288): b86a6ce0 b86a6ce0 b86a6ce0 00000000 00000000
I/DEBUG ( 288): b86a6cf0 00000000 b8691e38 b86920a8 b6443f15
I/DEBUG ( 288): b86a6d00 b6443e85 b6443de9 00000100 00000000
I/DEBUG ( 288): b86a6d10 00000000 00000000 00000000 00000000
I/DEBUG ( 288): b86a6d20 00000000 00000000 00000000 00000000
I/DEBUG ( 288): b86a6d30 00000000 00000000 00000000 00000000
I/DEBUG ( 288): b86a6d40 b2f68004 00000001 00000028 00000000
I/DEBUG ( 288):
I/DEBUG ( 288): memory near sl:
I/DEBUG ( 288): b86b8c18 000005a0 00000438 00000011 40000000
I/DEBUG ( 288): b86b8c28 2d6c737a 756c6176 00007365 0000001b
I/DEBUG ( 288): b86b8c38 b868ea30 b8692540 00000000 b86a4170
I/DEBUG ( 288): b86b8c48 00000018 00000023 00000001 0000000c
I/DEBUG ( 288): b86b8c58 55555555 55555555 656d6163 6d2d6172
I/DEBUG ( 288): b86b8c68 0065646f 0000001b 00000001 00000002
I/DEBUG ( 288): b86b8c78 55555555 00002361 55550031 0000002b
I/DEBUG ( 288): b86b8c88 00000001 0000000d 55555555 55555555
I/DEBUG ( 288): b86b8c98 6d726f4e 505f6c61 7265776f 55555500
I/DEBUG ( 288): b86b8ca8 55555555 00000023 00000001 00000009
I/DEBUG ( 288): b86b8cb8 55555555 55555555 61746f72 6e6f6974
I/DEBUG ( 288): b86b8cc8 55555500 00000023 00000001 00000005
I/DEBUG ( 288): b86b8cd8 55555555 55555555 6d6f6f7a 55555500
I/DEBUG ( 288): b86b8ce8 55555555 0000001b 00000001 00000002
I/DEBUG ( 288): b86b8cf8 55555555 55555555 55550030 0000002b
I/DEBUG ( 288): b86b8d08 00000001 0000000f 55555555 55555555
I/DEBUG ( 288):
I/DEBUG ( 288): memory near sp:
I/DEBUG ( 288): b24d86a0 00000000 b6edcfa3 b6edc24d b24d86c4
I/DEBUG ( 288): b24d86b0 00000001 00000001 df0027ad 00000000
I/DEBUG ( 288): b24d86c0 b6f07204 fffffbdf aa845000 0000003b
I/DEBUG ( 288): b24d86d0 ffffffff 00000000 00000003 b24d8704
I/DEBUG ( 288): b24d86e0 b648b422 b6ed8504 00000000 b6ece1fd
I/DEBUG ( 288): b24d86f0 b24d8b14 00000036 b24d8704 b24d873a
I/DEBUG ( 288): b24d8700 b24d8b03 54524f46 5f594649 52554f53
I/DEBUG ( 288): b24d8710 203a4543 6c727473 72206e65 20646165
I/DEBUG ( 288): b24d8720 7265766f 776f6c66 6143202e 6e696c6c
I/DEBUG ( 288): b24d8730 62612067 2874726f 00002e29 00000006
I/DEBUG ( 288): b24d8740 00000001 b24d873c 00000001 b64830b2
I/DEBUG ( 288): b24d8750 0000000b b24d879c 00000033 00000000
I/DEBUG ( 288): b24d8760 00000000 b24d8724 00000000 b24d872c
I/DEBUG ( 288): b24d8770 00000000 299a346f 00000000 299a346f
I/DEBUG ( 288): b24d8780 b64801d9 b6f071f4 b64830b2 00000006
I/DEBUG ( 288): b24d8790 b86983bc b6f15591 b24d8bb4 6f636e65
I/DEBUG ( 288):
I/DEBUG ( 288): code around pc:
I/DEBUG ( 288): b6eda4e4 461ce00b 2b006823 e026d1fb b12468e4
I/DEBUG ( 288): b6eda4f4 21014a18 6011447a 4b1247a0 24002027
I/DEBUG ( 288): b6eda504 f7fc7018 2106ee2c e882f7fe 5180f04f
I/DEBUG ( 288): b6eda514 a9029104 94022006 9403460a ec2ef7fd
I/DEBUG ( 288): b6eda524 46224629 f7fd2002 f7fcec3a 2106ee18
I/DEBUG ( 288): b6eda534 e86ef7fe f7fc2001 6960eac4 d1dc2800
I/DEBUG ( 288): b6eda544 bf00e7d4 deadbaad 00029b14 ffffff9c
I/DEBUG ( 288): b6eda554 0002cda4 0002cd88 2400b510 aa04b088
I/DEBUG ( 288): b6eda564 46699002 94014620 94039400 eb7cf7fd
I/DEBUG ( 288): b6eda574 db0642a0 b1139b07 1c419806 98069106
I/DEBUG ( 288): b6eda584 4620e000 bd10b008 4b1eb40e b082b5f0
I/DEBUG ( 288): b6eda594 447b491d f107af00 585e021c f8522101
I/DEBUG ( 288): b6eda5a4 68354b04 f852607d 31015b04 d1fa2d00
I/DEBUG ( 288): b6eda5b4 320e008a 0507f022 0220f107 0d05ebad
I/DEBUG ( 288): b6eda5c4 f107603a 46690224 9400466d 4c04f852
I/DEBUG ( 288): b6eda5d4 f8453204 2c004f04 f8dfd1f8 f853c030
I/DEBUG ( 288):
I/DEBUG ( 288): code around lr:
I/DEBUG ( 288): b6edcf80 4a0e4b0d e92d447b 260041f0 4680589c
I/DEBUG ( 288): b6edcf90 686768a5 f9b5e007 2b00300c 4628dd02
I/DEBUG ( 288): b6edcfa0 430647c0 3f013554 6824d5f5 d1ef2c00
I/DEBUG ( 288): b6edcfb0 e8bd4630 bf0081f0 00027050 ffffffc4
I/DEBUG ( 288): b6edcfc0 43f0e92d fb01461e 4b16f502 4916460f
I/DEBUG ( 288): b6edcfd0 447bb087 aa014614 20019001 95029203
I/DEBUG ( 288): b6edcfe0 90049505 681a585b b1124698 f0094630
I/DEBUG ( 288): b6edcff0 4630fd24 f7ffa903 4681fe9c 0000f8d8
I/DEBUG ( 288): b6edd000 4630b110 fd26f009 0f00f1b9 9c05d005
I/DEBUG ( 288): b6edd010 1b284639 eaa0f017 46204604 e8bdb007
I/DEBUG ( 288): b6edd020 bf0083f0 00027002 ffffff60 46036842
I/DEBUG ( 288): b6edd030 60411e51 da012900 bb98f000 f8126802
I/DEBUG ( 288): b6edd040 601a0b01 00004770 4a104b0f b570447b
I/DEBUG ( 288): b6edd050 589b4604 461e6819 f009b109 6860fcee
I/DEBUG ( 288): b6edd060 60651e45 da042d00 f0004620 4605fb7f
I/DEBUG ( 288): b6edd070 6822e003 5b01f812 68336022 4620b113
I/DEBUG ( 288):
I/DEBUG ( 288): memory map around fault addr deadbaad:
I/DEBUG ( 288): bef0f000-bef30000 rw- [stack]
I/DEBUG ( 288): (no map for address)
I/DEBUG ( 288): ffff0000-ffff1000 r-x [vectors]
D/dalvikvm( 3758): null clazz in OP_INSTANCE_OF, single-stepping
I/BootReceiver( 704): Copying /data/tombstones/tombstone_05 to DropBox (SYSTEM_TOMBSTONE)
E/mm-camera( 336): config_shutdown_pp Camera not in streaming mode. Returning.
E/mm-camera( 336): sensor_client_set_params: cmd type: 12
E/mm-camera( 336): sensor_client_set_params: failed 274
E/mm-camera( 336): ispif_process_release MSM_CAM_IOCTL_ISPIF_IO_CFG failed
E/mm-camera( 336): ispif_client_destroy: subdev release failed; error: -1 Invalid argument
E/MP-Decision( 1382): num online cores: 2 reqd : 4 available : 4 rq_depth:6.300000 hotplug_avg_load_dw: 101
E/MP-Decision( 1382): UP cpu:1 core_idx:1 Nw:1.900000 Tw:140 total_time_up:0.000000
E/MP-Decision( 1382): UP cpu:2 core_idx:2 Nw:2.700000 Tw:90 total_time_up:98.000000
E/MP-Decision( 1382): UP cpu:3 core_idx:3 Nw:3.500000 Tw:90 total_time_up:98.000000
E/mm-camera( 336): axi_client_destroy: subdev release failed; error: -1
E/mm_camera-mctl_pp( 336): mctl_pp_clear_buf: unmap buf_type=1 with idx=0
E/mm_camera-mctl_pp( 336): mctl_pp_clear_buf: unmap buf_type=1 with idx=1
E/mm_camera-mctl_pp( 336): mctl_pp_clear_buf: unmap buf_type=1 with idx=2
E/mm_camera-mctl_pp( 336): mctl_pp_clear_buf: unmap buf_type=1 with idx=3
E/mm_camera-mctl_pp( 336): mctl_pp_clear_buf: unmap buf_type=1 with idx=4
E/mm_camera-mctl_pp( 336): mctl_pp_clear_buf: unmap buf_type=1 with idx=5
E/mm_camera-mctl_pp( 336): mctl_pp_clear_buf: unmap buf_type=1 with idx=6
E/mm_camera-mctl_pp( 336): mctl_pp_clear_buf: unmap buf_type=1 with idx=7
E/mm_camera-mctl_pp( 336): mctl_pp_clear_buf: unmap buf_type=1 with idx=8
E/mm_camera-mctl_pp( 336): mctl_pp_clear_buf: unmap buf_type=1 with idx=9
E/mm_camera-mctl_pp( 336): mctl_pp_clear_buf: unmap buf_type=1 with idx=10
E/mm_camera-mctl_pp( 336): mctl_pp_clear_buf: unmap buf_type=1 with idx=11
E/mm_camera-mctl_pp( 336): mctl_pp_clear_buf: unmap buf_type=10 with idx=0
E/mm_camera-mctl_pp( 336): mctl_pp_clear_buf: unmap buf_type=10 with idx=1
E/mm_camera-mctl_pp( 336): mctl_pp_clear_buf: unmap buf_type=10 with idx=2
E/mm_camera-mctl_pp( 336): mctl_pp_clear_buf: unmap buf_type=10 with idx=3
E/mm_camera-mctl_pp( 336): mctl_pp_clear_buf: unmap buf_type=10 with idx=4
E/mm_camera-mctl_pp( 336): mctl_pp_clear_buf: unmap buf_type=10 with idx=5
I/ServiceManager( 283): service 'media.audio_policy' died
I/ServiceManager( 283): service 'media.audio_flinger' died
I/ServiceManager( 283): service 'media.player' died
I/ServiceManager( 283): service 'media.camera' died
W/AudioSystem( 704): AudioPolicyService server died!
W/AudioSystem( 704): AudioFlinger server died!
W/IMediaDeathNotifier( 3758): media server died
W/CameraBase( 3758): Camera service died!
W/CameraBase( 3758): mediaserver's remote binder Camera object died
E/Camera ( 3758): Error 100
E/CameraErrorCallback( 3758): Got camera error callback. error=100
D/AndroidRuntime( 3758): Shutting down VM
W/dalvikvm( 3758): threadid=1: thread exiting with uncaught exception (group=0x41559700)
E/AndroidRuntime( 3758): FATAL EXCEPTION: main
E/AndroidRuntime( 3758): java.lang.RuntimeException: Media server died.
E/AndroidRuntime( 3758): at com.android.camera.CameraErrorCallback.onError(CameraErrorCallback.java:32)
E/AndroidRuntime( 3758): at android.hardware.Camera$EventHandler.handleMessage(Camera.java:850)
E/AndroidRuntime( 3758): at android.os.Handler.dispatchMessage(Handler.java:99)
E/AndroidRuntime( 3758): at android.os.Looper.loop(Looper.java:137)
E/AndroidRuntime( 3758): at android.app.ActivityThread.main(ActivityThread.java:5289)
E/AndroidRuntime( 3758): at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime( 3758): at java.lang.reflect.Method.invoke(Method.java:525)
E/AndroidRuntime( 3758): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:739)
E/AndroidRuntime( 3758): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:555)
E/AndroidRuntime( 3758): at dalvik.system.NativeStart.main(Native Method)
W/ActivityManager( 704): Force finishing activity com.android.gallery3d/com.android.camera.CameraLauncher
2. LatinIME (Keyboard) missing a resource
Code:
W/PackageManager( 907): Failure retrieving text 0x7f0c00bc in package com.android.inputmethod.latin
W/PackageManager( 907): android.content.res.Resources$NotFoundException: String resource ID #0x7f0c00bc
W/PackageManager( 907): at android.content.res.Resources.getText(Resources.java:239)
W/PackageManager( 907): at android.app.ApplicationPackageManager.getText(ApplicationPackageManager.java:997)
W/PackageManager( 907): at android.view.inputmethod.InputMethodSubtype.getDisplayName(InputMethodSubtype.java:258)
W/PackageManager( 907): at com.android.systemui.quicksettings.InputMethodTile.getCurrentInputMethodName(InputMethodTile.java:58)
W/PackageManager( 907): at com.android.systemui.quicksettings.InputMethodTile.updateTile(InputMethodTile.java:132)
W/PackageManager( 907): at com.android.systemui.quicksettings.InputMethodTile.updateResources(InputMethodTile.java:120)
W/PackageManager( 907): at com.android.systemui.quicksettings.InputMethodTile.toggleVisibility(InputMethodTile.java:139)
W/PackageManager( 907): at com.android.systemui.statusbar.phone.QuickSettingsController.setImeWindowStatus(QuickSettingsController.java:420)
W/PackageManager( 907): at com.android.systemui.statusbar.phone.PhoneStatusBar.setImeWindowStatus(PhoneStatusBar.java:2317)
W/PackageManager( 907): at com.android.systemui.statusbar.CommandQueue$H.handleMessage(CommandQueue.java:298)
W/PackageManager( 907): at android.os.Handler.dispatchMessage(Handler.java:99)
W/PackageManager( 907): at android.os.Looper.loop(Looper.java:137)
W/PackageManager( 907): at android.app.ActivityThread.main(ActivityThread.java:5289)
W/PackageManager( 907): at java.lang.reflect.Method.invokeNative(Native Method)
W/PackageManager( 907): at java.lang.reflect.Method.invoke(Method.java:525)
W/PackageManager( 907): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:739)
W/PackageManager( 907): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:555)
W/PackageManager( 907): at dalvik.system.NativeStart.main(Native Method)
3. Trebuchet crashes:
Reason: libskia.so / libc.so
Code:
I/DEBUG ( 288): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
I/DEBUG ( 288): Build fingerprint: 'samsung/jfltexx/jflte:4.2.2/JDQ39/I9505XXUAMDE:user/release-keys'
I/DEBUG ( 288): Revision: '11'
I/DEBUG ( 288): pid: 3246, tid: 3476, name: AsyncTask #4 >>> com.cyanogenmod.trebuchet <<<
I/DEBUG ( 288): signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 00006340
I/DEBUG ( 288): r0 749d01f8 r1 00006138 r2 000002dc r3 00000225
I/DEBUG ( 288): r4 000002dc r5 000000b7 r6 749d04d4 r7 000000b7
I/DEBUG ( 288): r8 00006138 r9 000000b7 sl 00006380 fp 00000000
I/DEBUG ( 288): ip 00000001 sp 79452d98 lr 00000280 pc 4009be78 cpsr 80000010
I/DEBUG ( 288): d0 0000000000000000 d1 0000000000000000
I/DEBUG ( 288): d2 0021002100210021 d3 0000000000000000
I/DEBUG ( 288): d4 0100010001000100 d5 2f080808df272727
I/DEBUG ( 288): d6 0000000000000000 d7 0000000000000000
I/DEBUG ( 288): d8 000002dc3f000000 d9 0000000000000000
I/DEBUG ( 288): d10 0000000000000000 d11 0000000000000000
I/DEBUG ( 288): d12 0000000000000000 d13 0000000000000000
I/DEBUG ( 288): d14 0000000000000000 d15 0000000000000000
I/DEBUG ( 288): d16 0100010001000100 d17 0100010001000100
I/DEBUG ( 288): d18 0000000000000000 d19 0000000000000000
I/DEBUG ( 288): d20 0000000000000000 d21 0000000000000000
I/DEBUG ( 288): d22 0000000000000000 d23 ff2d2d2dff2d2d2d
I/DEBUG ( 288): d24 0000000000000000 d25 01dc800001d9c000
I/DEBUG ( 288): d26 0000000000000000 d27 2f080808df272727
I/DEBUG ( 288): d28 0707070703030303 d29 0002aaa80002aaa8
I/DEBUG ( 288): d30 0001000000010000 d31 0001000000010000
I/DEBUG ( 288): scr 20000093
I/DEBUG ( 288):
I/DEBUG ( 288): backtrace:
I/DEBUG ( 288): #00 pc 0001ce78 /system/lib/libc.so (memcpy+248)
I/DEBUG ( 288):
I/DEBUG ( 288): stack:
I/DEBUG ( 288): 79452d58 00000046
I/DEBUG ( 288): 79452d5c 794532b8 [stack:3476]
I/DEBUG ( 288): 79452d60 00000000
I/DEBUG ( 288): 79452d64 00000143
I/DEBUG ( 288): 79452d68 00000186
I/DEBUG ( 288): 79452d6c 00000001
I/DEBUG ( 288): 79452d70 00000186
I/DEBUG ( 288): 79452d74 00000000
I/DEBUG ( 288): 79452d78 7640b628
I/DEBUG ( 288): 79452d7c 40312f3c /system/lib/libskia.so (SkScan::FillIRect(SkIRect const&, SkRegion const*, SkBlitter*)+372)
I/DEBUG ( 288): 79452d80 00000143
I/DEBUG ( 288): 79452d84 00000002
I/DEBUG ( 288): 79452d88 00000002
I/DEBUG ( 288): 79452d8c 400a2577 /system/lib/libc.so (__vfprintf+4406)
I/DEBUG ( 288): 79452d90 df0027ad
I/DEBUG ( 288): 79452d94 00000000
I/DEBUG ( 288): #00 79452d98 000000b7
I/DEBUG ( 288): 79452d9c 00000000
I/DEBUG ( 288): 79452da0 402bc2e8 /system/lib/libskia.so
I/DEBUG ( 288): 79452da4 749d01f8
I/DEBUG ( 288): 79452da8 402bc254 /system/lib/libskia.so
I/DEBUG ( 288): 79452dac 000002dc
I/DEBUG ( 288): 79452db0 749d01f8
I/DEBUG ( 288): 79452db4 763eb240
I/DEBUG ( 288): 79452db8 00000247
I/DEBUG ( 288): 79452dbc 00000000
I/DEBUG ( 288): 79452dc0 749d01f8
I/DEBUG ( 288): 79452dc4 402bb850 /system/lib/libskia.so (SkBitmapProcShader::shadeSpan(int, int, unsigned int*, int)+60)
I/DEBUG ( 288): 79452dc8 000002dc
I/DEBUG ( 288): 79452dcc 7945327c [stack:3476]
I/DEBUG ( 288): 79452dd0 794532b8 [stack:3476]
I/DEBUG ( 288): 79452dd4 7640b628
I/DEBUG ( 288):
I/DEBUG ( 288):
I/DEBUG ( 288): memory map around fault addr 00006340:
I/DEBUG ( 288): (no map below)
I/DEBUG ( 288): (no map for address)
I/DEBUG ( 288): 40054000-40056000 r-x /system/bin/app_process
I/BootReceiver( 704): Copying /data/tombstones/tombstone_06 to DropBox (SYSTEM_TOMBSTONE)
W/ActivityManager( 704): Force finishing activity com.cyanogenmod.trebuchet/.Launcher
W/InputDispatcher( 704): channel '419002d8 com.cyanogenmod.trebuchet/com.cyanogenmod.trebuchet.Launcher (server)' ~ Consumer closed input channel or an error occurred. events=0x9
E/InputDispatcher( 704): channel '419002d8 com.cyanogenmod.trebuchet/com.cyanogenmod.trebuchet.Launcher (server)' ~ Channel is unrecoverably broken and will be disposed!
D/dalvikvm( 704): GC_FOR_ALLOC freed 7502K, 37% free 26004K/41244K, paused 52ms, total 53ms
W/InputDispatcher( 704): Attempted to unregister already unregistered input channel '419002d8 com.cyanogenmod.trebuchet/com.cyanogenmod.trebuchet.Launcher (server)'
I/WindowState( 704): WIN DEATH: Window{419002d8 u0 com.cyanogenmod.trebuchet/com.cyanogenmod.trebuchet.Launcher}
D/Zygote ( 291): Process 3246 terminated by signal (11)
I/ActivityManager( 704): Process com.cyanogenmod.trebuchet (pid 3246) has died.
(shortened to fit on page)
Ril working. 3G working. Nfc working runs really smooth. Prepare for v3
You're always the first. Thanks ! I'll test it tomorrow.
Gesendet von meinem GT-I9505G mit Tapatalk 2
Can I flash 4.2.2 gapps or should I wait a new release?
MaKTaiL said:
Can I flash 4.2.2 gapps or should I wait a new release?
Click to expand...
Click to collapse
These are the gapps you need: http://fs1.d-h.st/download/00060/aPi/gapps-jb43-20130726-dmd151.zip
its for jb 4.3
broodplank1337 said:
Ril working. 3G working. Nfc working runs really smooth. Prepare for v3
Click to expand...
Click to collapse
Still issues with the apps? I guess we need Chainfire to update SU?
broodplank1337 said:
These are the gapps you need: http://fs1.d-h.st/download/00060/aPi/gapps-jb43-20130726-dmd151.zip
its for jb 4.3
Click to expand...
Click to collapse
Thanks, can't wait for V3.
broodplank1337 said:
Ril working. 3G working. Nfc working runs really smooth. Prepare for v3
Click to expand...
Click to collapse
That would mean it has no bugs anymore at all?
Audioboxer said:
Still issues with the apps? I guess we need Chainfire to update SU?
Click to expand...
Click to collapse
No it's working now
nerotix said:
That would mean it has no bugs anymore at all?
Click to expand...
Click to collapse
Lol I don't know, I doubt that. there are plenty of bugs probably but the main functions of the phone seem to all work gps is also working perfectly.
I'm now compiling it again to have a clean build, then ill add the proprietary files and upload it
In V3 all apps is fixes without modify system apk ? Thanks
edit : Thanks can't wait V3 !
broodplank1337 said:
No it's working now
Lol I don't know, I doubt that. there are plenty of bugs probably but the main functions of the phone seem to all work gps is also working perfectly.
I'm now compiling it again to have a clean build, then ill add the proprietary files and upload it
Click to expand...
Click to collapse
Nice work man, got it working myself earlier on today and have been struggling with root, just read your OP and now root is working so I'm a happy man now
Thanks a lot
nice one brood
www.broodplank.net/files/cm-10.2-20130728-UNOFFICIAL-jfltexx-v3.zip
build 3 . nfc and ril/3g is working. but now bluetooth isn't working XD. it varies all the time, it also builds it without egl libs each time, have to add a lot of libs manually to make it work properly.
No root access in v3. BT not working.
For all the rest it's smooth and working perfectly
morpheus302 said:
No root access in v3. BT not working.
For all the rest it's smooth and working perfectly
Click to expand...
Click to collapse
no root access? It's working perfectly over here lol. and yes bt isn't working idd.
broodplank1337 said:
no root access? It's working perfectly over here lol. and yes bt isn't working idd.
Click to expand...
Click to collapse
A simple reboot fixed my su problem.
Thank you very much for this build and hope BT will be working soon.
morpheus302 said:
A simple reboot fixed my su problem.
Thank you very much for this build and hope BT will be working soon.
Click to expand...
Click to collapse
Nice And yes it will. I was building with missing proprietary files. on v4 almost everything is fixed
broodplank1337 said:
Nice And yes it will. I was building with missing proprietary files. on v4 almost everything is fixed
Click to expand...
Click to collapse
hey, someone in the cm10.1 thread said he compiled a build, i asked if he had bluetooth working, hasnt responded yet.
just thought u should have a heads up there might be something u can use.
Great work! Anxiously awaiting for a 10.2 build for the jflteatt. Now that you have this done it shouldn't be to far off.

Making newer GPU drivers work

I've updated most of our kernel to 4AJ.2.2. Our kernel was really outdated, but with these changes, it should be easier to make the newer binaries work, as there are many, many kernel side dependencies for them.
Currently, I reverted everything that broke functionality with the current binaries (that includes remoteproc stuff which broke the camera, some sound and usb commits, not that much...), so everything still works.
As far as I see, we can compile the binaries ourselves: Building SGX driver (or just borrow them from another device?). As I have a little side project that I want to do now, I don't intend to get into ROMs too much, but I may as well join the party soon
The best starting point to make the kernel side changes is... well, my simple, but effective method is to compare the kernel dirs, like this. With this method, one can easily find & cherry-pick the changes from github, or I can create a separate branch that includes them (should I do it?), as it's not hard, I actually got them merged at a time with it's dependencies, but I reverted everything to get back the display.
Here's the kernel: https://github.com/Ziyann/omap
and the source: https://github.com/icepeda/omap/tree/icepeda-panda-4aj22
Also, it would be nice to know which binaries should we use, as there may be different versions for 3.0 and 3.4. Which binaries work with this panda kernel? @isrcepeda, we don't want to disturb you as you work on the 3.4 kernel, but it'd be great if you could give us some hints :highfive:
Sorry for the noob question, but you are talking about this driver? http://omapzoom.org/?p=device/ti/pr...it;h=8137028adad92178573b3448f833e1f0338c20db
Keep going, i can't helo you but i'm with you with my heart ?
pianistaPL said:
Sorry for the noob question, but you are talking about this driver? http://omapzoom.org/?p=device/ti/pr...it;h=8137028adad92178573b3448f833e1f0338c20db
Keep going, i can't helo you but i'm with you with my heart ?
Click to expand...
Click to collapse
Yes, that driver
@Carlos_Manuel
Check out my exp branch, I think I merged most of the things we need, it compiles fine, but I couldn't test it further - I may have easily missed something. I may setup a rom building environment tomorrow, as things are getting complicated...
I am going to say something absolutely stupid but as far as I remember there is a Galaxy S version (was it the advance?) that got a 3.4 kernel from an awesome dev. And the Galaxy Nexus uses the same gpu right? Isnt there a way to use some of that code?
Sent from my Galaxy Nexus using XDA Free mobile app
Ziyan said:
Yes, that driver
@Carlos_Manuel
Check out my exp branch, I think I merged most of the things we need, it compiles fine, but I couldn't test it further - I may have easily missed something. I may setup a rom building environment tomorrow, as things are getting complicated...
Click to expand...
Click to collapse
I'm too sleepy to check them out. Build an kernel, use hardware/ti-omap4xxx/ from omapzoom (d-jb-mr2), update kernel-headers if needed to (some ion changes needed this change), etc.
With the ROM side I hope I can help, when help is needed, as I'm stronger in that than with kernels...
mrgnex said:
I am going to say something absolutely stupid but as far as I remember there is a Galaxy S version (was it the advance?) that got a 3.4 kernel from an awesome dev. And the Galaxy Nexus uses the same gpu right? Isnt there a way to use some of that code?
Sent from my Galaxy Nexus using XDA Free mobile app
Click to expand...
Click to collapse
Nexus S uses pvr 540 too, but it has cortex A8 and possibly is an omap4430 device and it doesn't have same files in kernel as tuna.. because Nexus s is another device.. so it won't help at all
Carlos_Manuel said:
I'm too sleepy to check them out. Build an kernel, use hardware/ti-omap4xxx/ from omapzoom (d-jb-mr2), update kernel-headers if needed to (some ion changes needed this change), etc.
With the ROM side I hope I can help, when help is needed, as I'm stronger in that than with kernels...
Click to expand...
Click to collapse
Hmm, do we need hardware/ti-omap4xxx? The sgx stuff seems to be in device/ti/proprietary-open.git. And as I see, we need to integrate it to the build system, as android-4.3_r3.1 doesn't have such a folder
Edit: lol, we may not even need to build a rom, just follow these instructions
Well, I managed to compile them. As excepted, things didn't just magically begin working. Android didn't automatically load the modules from /system/lib/modules, but:
Code:
insmod pvrsrvkm_sgx540_120.ko
seemed to work... (note: I had to enable CONFIG_MODULES in the kernel)
dmesg:
http://pastebin.com/RTM4fQAW
Code:
<6>[ 66.322906] PVR: PVRCore_Init
<6>[ 66.323242] PVR: LinuxMMInit: Maximum page pool size: 10800
<6>[ 66.323516] PVR: PVRSRVDriverProbe(pDevice=c78b2800)
<6>[ 66.323760] PVR: SGX register base: 0x56000000
<6>[ 66.323822] PVR: SGX register size: 65535
<6>[ 66.323944] PVR: SGX IRQ: 53
<6>[ 66.324218] PVR: EnableSystemClocks: Enabling System Clocks
<6>[ 66.324768] PVR: PVRCore_Init: major device 246
This appeared after doing insmod.
logcat:
http://pastebin.com/HyK887z7
Something's definietly bad there. The problem starts there:
Code:
E/IMGSRV ( 4513): :0: OpenServices: Cannot open device driver /dev/pvrsrvkm.
Code:
[email protected]:/dev # ls -l /dev/pvr*
crw------- root root 246, 0 2014-07-02 11:31 pvrsrvkm
Hmm, maybe a permission problem? Let's chmod it to 777 (maybe we'll need this included in the ramdisk).
dmesg again:
http://pastebin.com/1vqZunrf
logcat again:
http://pastebin.com/AWJz51X9
That did the trick, it went ahead, and another error popped out.
Well, I'm open to any suggestions while I try to fix this...
EDIT:
Code:
[email protected]:/ # free -m
total used free shared buffers
Mem: 809120 66744 742376 0 4896
-/+ buffers: 61848 747272
Swap: 0 0 0
That's a bit too much, isn't it? That android-display stuff which should allocate memory doesn't seem to work, I had the same problem when I merged it with the current drivers. I think I edited the board files the right way... but I'll look around.
EDIT 2:
Code:
<6>[ 0.000000] android_display: setting default resolution 720*1280, bpp=4
This may be the problem - we're not 4 bits, that should be 24.
EDIT 3:
Sadly, no.
Code:
u32 bpp; /* must be 2 or 4 */
But the error must be somewhere in the memory allocation process. Another evidence.
Code:
<3>[ 0.213623] omap_rproc_get_pool: dsp - no carveout memory is available at all
<3>[ 0.214782] omap_rproc_get_pool: ipu - no carveout memory is available at all
Ziyan said:
Hmm, do we need hardware/ti-omap4xxx? The sgx stuff seems to be in device/ti/proprietary-open.git. And as I see, we need to integrate it to the build system, as android-4.3_r3.1 doesn't have such a folder
Edit: lol, we may not even need to build a rom, just follow these instructions
Click to expand...
Click to collapse
I'm too lazy to read..:laugh: I've seen that page many times... it's for building the needed module for kernel...?
---------- Post added at 01:07 PM ---------- Previous post was at 12:56 PM ----------
Ziyan said:
Well, I managed to compile them. As excepted, things didn't just magically begin working. Android didn't automatically load the modules from /system/lib/modules, but:
Code:
insmod pvrsrvkm_sgx540_120.ko
seemed to work... (note: I had to enable CONFIG_MODULES in the kernel)
dmesg:
http://pastebin.com/RTM4fQAW
Code:
<6>[ 66.322906] PVR: PVRCore_Init
<6>[ 66.323242] PVR: LinuxMMInit: Maximum page pool size: 10800
<6>[ 66.323516] PVR: PVRSRVDriverProbe(pDevice=c78b2800)
<6>[ 66.323760] PVR: SGX register base: 0x56000000
<6>[ 66.323822] PVR: SGX register size: 65535
<6>[ 66.323944] PVR: SGX IRQ: 53
<6>[ 66.324218] PVR: EnableSystemClocks: Enabling System Clocks
<6>[ 66.324768] PVR: PVRCore_Init: major device 246
This appeared after doing insmod.
logcat:
http://pastebin.com/HyK887z7
Something's definietly bad there. The problem starts there:
Code:
E/IMGSRV ( 4513): :0: OpenServices: Cannot open device driver /dev/pvrsrvkm.
Code:
[email protected]:/dev # ls -l /dev/pvr*
crw------- root root 246, 0 2014-07-02 11:31 pvrsrvkm
Hmm, maybe a permission problem? Let's chmod it to 777 (maybe we'll need this included in the ramdisk).
dmesg again:
http://pastebin.com/1vqZunrf
logcat again:
http://pastebin.com/AWJz51X9
Well, I'm open to any suggestions while I try to fix this...
EDIT:
Code:
[email protected]:/ # free -m
total used free shared buffers
Mem: 809120 66744 742376 0 4896
-/+ buffers: 61848 747272
Swap: 0 0 0
That's a bit too much, isn't it? That android-display stuff doesn't seem to work, I had the same problem when I merged it with the current drivers. I think I edited the board files the right way... but I'll look around.
Click to expand...
Click to collapse
IF possible, then may this be caused by SELinux?
Carlos_Manuel said:
I'm too lazy to read..:laugh: I've seen that page many times... it's for building the needed module for kernel...?
---------- Post added at 01:07 PM ---------- Previous post was at 12:56 PM ----------
IF possible, then may this be caused by SELinux?
Click to expand...
Click to collapse
The module loading may be easily caused by it, as SELinux doesn't allow loadable modules. But as I loaded it manually, this shouldn't be a problem.
Ziyan said:
The module loading may be easily caused by it, as SELinux doesn't allow loadable modules. But as I loaded it manually, this shouldn't be a problem.
Click to expand...
Click to collapse
File_contexts file may be the causer build a ROM with the module. Also enable module support for kernel (just in case)..
I've mostly fixed allocation problems, and also found a bunch of binaries in proprietary-open\omap4\sgx.tgz, so I've replaced the current binaries with them (excluding the sgx driver we can build). While this fixed some errors which referenced those files, things still seem bad:
Code:
I/SurfaceFlinger( 706): SurfaceFlinger is starting
I/SurfaceFlinger( 706): SurfaceFlinger's main thread ready to run. Initializing graphics H/W...
D/libEGL ( 706): loaded /vendor/lib/egl/libEGL_POWERVR_SGX540_120.so
D/libEGL ( 706): loaded /vendor/lib/egl/libGLESv1_CM_POWERVR_SGX540_120.so
D/libEGL ( 706): loaded /vendor/lib/egl/libGLESv2_POWERVR_SGX540_120.so
W/libEGL ( 706): eglInitialize(0x1) failed (EGL_BAD_ALLOC)
E/HAL ( 706): load: module=/vendor/lib/hw/gralloc.omap4.so
[B]E/HAL ( 706): dlopen failed: cannot locate symbol "_ZN7android9CallStack6updateEii" referenced by "gralloc.omap4.so"...[/B]
E/SurfaceFlinger( 706): gralloc module not found
E/HAL ( 706): load: module=/vendor/lib/hw/gralloc.omap4.so
E/HAL ( 706): dlopen failed: cannot locate symbol "_ZN7android9CallStack6updateEii" referenced by "gralloc.omap4.so"...
E/ti_hwc ( 706): Composer HAL failed to load compatible Graphics HAL
E/SurfaceFlinger( 706): composer device failed to initialize (Invalid argument)
E/SurfaceFlinger( 706): ERROR: failed to open framebuffer (Invalid argument), aborting
F/libc ( 706): Fatal signal 6 (SIGABRT) at 0x000002c2 (code=-6), thread 706 (surfaceflinger)
I/DEBUG ( 132): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
I/DEBUG ( 132): Build fingerprint: 'google/yakju/maguro:4.3/JWR66Y/776638:user/release-keys'
I/DEBUG ( 132): Revision: '9'
I/DEBUG ( 132): pid: 706, tid: 706, name: surfaceflinger >>> /system/bin/surfaceflinger <<<
I/DEBUG ( 132): signal 6 (SIGABRT), code -6 (SI_TKILL), fault addr --------
I/mediaserver( 708): ServiceManager: 0xcac460
I/AudioFlinger( 708): Using default 3000 mSec as standby time.
I/CameraService( 708): CameraService started (pid=708)
I/CameraService( 708): Loaded "TI OMAP CameraHal Module" camera module
I/AudioPolicyManagerBase( 708): loadAudioPolicyConfig() loaded /system/etc/audio_policy.conf
I/DEBUG ( 132): r0 00000000 r1 000002c2 r2 00000006 r3 00000000
I/DEBUG ( 132): r4 40025f34 r5 000002c2 r6 00000002 r7 0000010c
I/DEBUG ( 132): r8 00000000 r9 4028f9a4 sl 01ef776c fp beb5e968
I/DEBUG ( 132): ip 00000006 sp beb5e8d8 lr 40107f31 pc 4011d234 cpsr 000f0010
I/DEBUG ( 132): d0 74726f6261202c29 d1 746e656d75677261
I/DEBUG ( 132): d2 6172672220796220 d3 616d6f2e636f6c6c
I/DEBUG ( 132): d4 4e5a5f22206c6f62 d5 64696f72646e6137
I/DEBUG ( 132): d6 6174536c6c614339 d7 7461647075366b63
I/DEBUG ( 132): d8 0000000000000000 d9 0000000000000000
I/DEBUG ( 132): d10 0000000000000000 d11 0000000000000000
I/DEBUG ( 132): d12 0000000000000000 d13 0000000000000000
I/DEBUG ( 132): d14 0000000000000000 d15 0000000000000000
I/DEBUG ( 132): d16 0000000000000000 d17 fffff000fffff000
I/DEBUG ( 132): d18 00000fff00000fff d19 0000000000000000
I/DEBUG ( 132): d20 0000000000000000 d21 0000000000000000
I/DEBUG ( 132): d22 0000000000000000 d23 0000000000000000
I/DEBUG ( 132): d24 0000000000000000 d25 0000000000000000
I/DEBUG ( 132): d26 0000000000000000 d27 0000000000000000
I/DEBUG ( 132): d28 0000000000000000 d29 0000000000000000
I/DEBUG ( 132): d30 0000000000000000 d31 0000000000000000
I/DEBUG ( 132): scr 00000010
I/DEBUG ( 132):
I/DEBUG ( 132): backtrace:
I/DEBUG ( 132): #00 pc 0002a234 /system/lib/libc.so (tgkill+12)
I/DEBUG ( 132): #01 pc 00014f2d /system/lib/libc.so (pthread_kill+88)
I/DEBUG ( 132): #02 pc 00015143 /system/lib/libc.so (raise+10)
I/DEBUG ( 132): #03 pc 00013a33 /system/lib/libc.so
I/DEBUG ( 132): #04 pc 00029ae8 /system/lib/libc.so (abort+4)
I/DEBUG ( 132): #05 pc 00023d9f /system/lib/libsurfaceflinger.so
I/DEBUG ( 132): #06 pc 0001f0c3 /system/lib/libsurfaceflinger.so (android::SurfaceFlinger::init()+98)
I/DEBUG ( 132): #07 pc 000007c1 /system/bin/surfaceflinger
I/DEBUG ( 132): #08 pc 0000e263 /system/lib/libc.so (__libc_init+58)
I/DEBUG ( 132): #09 pc 000008c0 /system/bin/surfaceflinger
I/DEBUG ( 132):
I/DEBUG ( 132): stack:
I/DEBUG ( 132): beb5e898 beb5e8d0 [stack]
I/DEBUG ( 132): beb5e89c 00000000
I/DEBUG ( 132): beb5e8a0 00000000
I/DEBUG ( 132): beb5e8a4 00000000
I/DEBUG ( 132): beb5e8a8 00000000
I/DEBUG ( 132): beb5e8ac 401543a0
I/DEBUG ( 132): beb5e8b0 ffffffc4
I/DEBUG ( 132): beb5e8b4 00000000
I/DEBUG ( 132): beb5e8b8 00000000
I/DEBUG ( 132): beb5e8bc 00000000
I/DEBUG ( 132): beb5e8c0 00000027
I/AudioFlinger( 708): loadHwModule() Loaded primary audio interface from Tuna audio HW HAL (audio) handle 1
I/DEBUG ( 132): beb5e8c4 01ef7748 [heap]
I/DEBUG ( 132): beb5e8c8 01ef7720 [heap]
I/DEBUG ( 132): beb5e8cc 00000000
I/DEBUG ( 132): beb5e8d0 01ef7718 [heap]
I/DEBUG ( 132): beb5e8d4 40102d55 /system/lib/libc.so (dlmalloc+352)
I/DEBUG ( 132): #00 beb5e8d8 40025f34 /system/bin/linker
I/DEBUG ( 132): beb5e8dc 000002c2
I/DEBUG ( 132): beb5e8e0 00000002
I/DEBUG ( 132): beb5e8e4 00000006
I/DEBUG ( 132): beb5e8e8 00000006
I/DEBUG ( 132): beb5e8ec 40107f31 /system/lib/libc.so (pthread_kill+92)
I/DEBUG ( 132): #01 beb5e8f0 40026178
I/DEBUG ( 132): beb5e8f4 00000006
I/DEBUG ( 132): beb5e8f8 00000000
I/DEBUG ( 132): beb5e8fc 00000001
I/DEBUG ( 132): beb5e900 ffffffea
I/DEBUG ( 132): beb5e904 40108147 /system/lib/libc.so (raise+14)
I/DEBUG ( 132): #02 beb5e908 beb5e910 [stack]
I/DEBUG ( 132): beb5e90c 40106a37 /system/lib/libc.so
I/AudioFlinger( 708): HAL output buffer size 144 frames, normal mix buffer size 864 frames
I/DEBUG ( 132):
I/DEBUG ( 132): memory near r4:
I/DEBUG ( 132): 40025f14 00000000 00000000 00000000 00000000
I/DEBUG ( 132): 40025f24 00000000 00000000 00000000 beb5eb0c
I/DEBUG ( 132): 40025f34 00000000 01ef5208 00000000 be35f000
I/DEBUG ( 132): 40025f44 00800000 00001000 00000000 00000000
I/DEBUG ( 132): 40025f54 000002c2 00000000 00000000 00000000
I/DEBUG ( 132): 40025f64 00000000 00000000 40026178 400aa000
I/DEBUG ( 132): 40025f74 706f6c64 66206e65 656c6961 63203a64
I/DEBUG ( 132): 40025f84 6f6e6e61 6f6c2074 65746163 6d797320
I/DEBUG ( 132): 40025f94 206c6f62 4e5a5f22 646e6137 64696f72
I/DEBUG ( 132): 40025fa4 6c614339 6174536c 75366b63 74616470
I/DEBUG ( 132): 40025fb4 69694565 65722022 65726566 6465636e
I/DEBUG ( 132): 40025fc4 20796220 61726722 636f6c6c 616d6f2e
I/DEBUG ( 132): 40025fd4 732e3470 2e2e226f 0000002e 00000000
I/DEBUG ( 132): 40025fe4 00000000 00000000 00000000 00000000
I/DEBUG ( 132): 40025ff4 00000000 00000000 00000000 00000000
I/DEBUG ( 132): 40026004 00000000 00000000 00000000 00000000
I/DEBUG ( 132):
I/DEBUG ( 132): memory near r9:
I/DEBUG ( 132): 4028f984 6e752078 70707573 6574726f 77202c64
I/DEBUG ( 132): 4028f994 206c6c69 20746f6e 75206562 00646573
I/DEBUG ( 132): 4028f9a4 6c617267 00636f6c 00306266 6e657665
I/DEBUG ( 132): 4028f9b4 6e6f4374 6c6f7274 2c642528 29642520
I/DEBUG ( 132): 4028f9c4 69616620 2064656c 00007325 6e657665
I/DEBUG ( 132): 4028f9d4 6e6f4374 6c6f7274 746f6720 656e7520
I/DEBUG ( 132): 4028f9e4 63657078 20646574 6e657665 64252074
I/DEBUG ( 132): 4028f9f4 69642820 253d7073 6e652064 2964253d
I/DEBUG ( 132): 4028fa04 00000000 6e657665 6e6f4374 6c6f7274
I/DEBUG ( 132): 4028fa14 6e676920 6e69726f 76652067 20746e65
I/DEBUG ( 132): 4028fa24 6f206425 6e75206e 6f6c6c61 65746163
I/DEBUG ( 132): 4028fa34 69642064 25207073 65282064 64253d6e
I/DEBUG ( 132): 4028fa44 00000029 75626564 66732e67 5f6f6e2e
I/DEBUG ( 132): 4028fa54 765f7768 636e7973 00000000 00000030
I/DEBUG ( 132): 4028fa64 6e697355 73252067 72657620 6e6f6973
I/DEBUG ( 132): 4028fa74 2e752520 00007525 74746567 20676e69
I/DEBUG ( 132):
I/DEBUG ( 132): memory near sl:
I/DEBUG ( 132): 01ef774c 00001891 00000000 00000000 00000000
I/DEBUG ( 132): 01ef775c 00000000 00000000 00000000 00000000
I/DEBUG ( 132): 01ef776c 01ef4c08 01ef4c08 00000000 01ef4c08
I/DEBUG ( 132): 01ef777c 00000000 00000000 00000000 00000000
I/DEBUG ( 132): 01ef778c 00000000 00000000 00000000 00000000
I/DEBUG ( 132): 01ef779c 00000000 00000000 00000000 00000000
I/DEBUG ( 132): 01ef77ac 00000000 00000000 01ef4c08 01ef4c08
I/DEBUG ( 132): 01ef77bc 00000000 01ef4c08 00000000 00000000
I/DEBUG ( 132): 01ef77cc 00000000 00000000 00000000 00000000
I/DEBUG ( 132): 01ef77dc 00000000 00000000 00000000 00000000
I/DEBUG ( 132): 01ef77ec 00000000 00000000 00000000 00000000
I/DEBUG ( 132): 01ef77fc 01ef4c08 01ef4c08 00000000 01ef4c08
I/DEBUG ( 132): 01ef780c 00000000 00000001 01ef7858 01ef5464
I/DEBUG ( 132): 01ef781c 00000000 00000000 00000000 00000000
I/DEBUG ( 132): 01ef782c 00000000 00000000 00000000 00000000
I/DEBUG ( 132): 01ef783c 00000000 00000000 00000000 00000000
I/DEBUG ( 132):
I/DEBUG ( 132): memory near fp:
I/DEBUG ( 132): beb5e948 01ef7858 01ef7770 01ef7778 401543a0
I/DEBUG ( 132): beb5e958 01ef5464 01ef7720 00000000 40098014
I/DEBUG ( 132): beb5e968 400c0030 40487290 40098038 4008d574
I/DEBUG ( 132): beb5e978 4017725c 00000000 40096197 400961b9
I/DEBUG ( 132): beb5e988 01ef7420 01ef7420 00000130 01ef7850
I/DEBUG ( 132): beb5e998 01ef7720 c0000000 01ef7718 40102d55
I/DEBUG ( 132): beb5e9a8 4009830c 4025efac 00000000 8cdbf927
I/DEBUG ( 132): beb5e9b8 40216e58 00000000 0004c79e 8cdbf927
I/DEBUG ( 132): beb5e9c8 beb5eaa0 00000000 00000000 01ef5450
I/AudioMixer( 708): found effect "Multichannel Downmix To Stereo" from The Android Open Source Project
I/DEBUG ( 132): beb5e9d8 beb5ea58 01ef552c 4028e8c4 01ef7720
I/DEBUG ( 132): beb5e9e8 0000875d 00000000 beb5eafc 402820c7
I/DEBUG ( 132): beb5e9f8 01ef73d0 00000004 01ef73c8 40102d55
I/DEBUG ( 132): beb5ea08 0000001b 40102d55 0000875d 01ef7394
E/MonoPipe( 708): Failed to fetch local time frequency when constructing a MonoPipe (res = -32). getNextWriteTimestamp calls will be non-functional
I/DEBUG ( 132): beb5ea18 01ef5468 beb5ea28 401a7e35 00000004
I/DEBUG ( 132): beb5ea28 00000800 01ef51ec 00000002 000002c2
I/DEBUG ( 132): beb5ea38 00000001 40039fd3 0000875d 00000000
I/DEBUG ( 132):
I/DEBUG ( 132): memory near sp:
I/DEBUG ( 132): beb5e8b8 00000000 00000000 00000027 01ef7748
I/DEBUG ( 132): beb5e8c8 01ef7720 00000000 01ef7718 40102d55
I/DEBUG ( 132): beb5e8d8 40025f34 000002c2 00000002 00000006
I/DEBUG ( 132): beb5e8e8 00000006 40107f31 40026178 00000006
I/DEBUG ( 132): beb5e8f8 00000000 00000001 ffffffea 40108147
I/DEBUG ( 132): beb5e908 beb5e910 40106a37 ffffffdf 8cdbf927
I/DEBUG ( 132): beb5e918 4028f94c 00000000 01ef7720 00000001
I/DEBUG ( 132): beb5e928 ffffffea 00000000 01ef7720 4011caec
I/DEBUG ( 132): beb5e938 646e6576 40286da3 401fa8d8 4017725c
I/DEBUG ( 132): beb5e948 01ef7858 01ef7770 01ef7778 401543a0
I/DEBUG ( 132): beb5e958 01ef5464 01ef7720 00000000 40098014
I/DEBUG ( 132): beb5e968 400c0030 40487290 40098038 4008d574
I/DEBUG ( 132): beb5e978 4017725c 00000000 40096197 400961b9
I/DEBUG ( 132): beb5e988 01ef7420 01ef7420 00000130 01ef7850
I/DEBUG ( 132): beb5e998 01ef7720 c0000000 01ef7718 40102d55
I/DEBUG ( 132): beb5e9a8 4009830c 4025efac 00000000 8cdbf927
I/DEBUG ( 132):
I/DEBUG ( 132): code around pc:
I/DEBUG ( 132): 4011d214 e8bd00f0 e3700a01 912fff1e e2600000
I/DEBUG ( 132): 4011d224 ea0097aa e92d50f0 e3a07f43 ef000000
I/DEBUG ( 132): 4011d234 e8bd50f0 e3700a01 912fff1e e2600000
I/DEBUG ( 132): 4011d244 ea0097a2 e92d50f0 e3a070ee ef000000
I/DEBUG ( 132): 4011d254 e8bd50f0 e3700a01 912fff1e e2600000
I/DEBUG ( 132): 4011d264 ea00979a f200429a bf0080cf f000f891
I/DEBUG ( 132): 4011d274 4001e92d f040f891 d3532a10 0301ea80
I/DEBUG ( 132): 4011d284 0303f013 806ef000 d3262ae0 0300f1c0
I/DEBUG ( 132): 4011d294 030ff013 eba2d021 ea5f0203 bf447cc3
I/DEBUG ( 132): 4011d2a4 eb01f811 eb01f800 f811bf21 f811cb01
I/DEBUG ( 132): 4011d2b4 f800eb01 f800cb01 ea5feb01 da037c43
I/DEBUG ( 132): 4011d2c4 080df9a1 083df980 f921d303 f900070d
I/DEBUG ( 132): 4011d2d4 f891071d f891f000 3a40f040 f891d30f
I/DEBUG ( 132): 4011d2e4 f891f080 f921f0c0 f921020d f891420d
I/DEBUG ( 132): 4011d2f4 3a40f0c0 020df900 420df900 f102d2f3
I/DEBUG ( 132): 4011d304 3a200240 f921d305 3a20020d 020df900
I/DEBUG ( 132):
I/DEBUG ( 132): code around lr:
I/DEBUG ( 132): 40107f10 6006fe45 bdf84628 480e4625 44786a2d
I/DEBUG ( 132): 40107f20 eb6ef7f9 ebbaf013 463a4629 e97cf015
I/DEBUG ( 132): 40107f30 bf183001 d1ea2500 fe30f001 f0016805
I/DEBUG ( 132): 40107f40 6006fe2d bdf84628 0004c4d0 0004c4c4
I/DEBUG ( 132): 40107f50 0004c4ac 0004c496 bf6ef7ff 4a3d4b3c
I/DEBUG ( 132): 40107f60 43f0e92d 447b460c 4607b08b 589d2616
I/DEBUG ( 132): 40107f70 9309682b fe12f001 8000f8d0 4620b13c
I/DEBUG ( 132): 40107f80 f848f016 4606280f 2622bf88 f001d90c
I/DEBUG ( 132): 40107f90 4684fe05 f8cc4630 9c098000 4294682a
I/DEBUG ( 132): 40107fa0 b00bd154 83f0e8bd ffd6f7ff d04542b8
I/DEBUG ( 132): 40107fb0 44784829 eb22f7f9 44784828 4287e001
I/DEBUG ( 132): 40107fc0 6800d008 d1fa2800 26034825 f7f94478
I/DEBUG ( 132): 40107fd0 e7dceb18 f10d4823 6a3f0904 f7f94478
I/DEBUG ( 132): 40107fe0 4a21eb10 4648463b 447a2120 f9ccf01a
I/DEBUG ( 132): 40107ff0 21014648 f900f026 3ffff1b0 d0104681
I/DEBUG ( 132): 40108000 46214648 f0134632 1c43eabc d00c4607
I/ServiceManager( 125): service 'media.audio_flinger' died
I/ServiceManager( 125): service 'media.player' died
I/ServiceManager( 125): service 'media.camera' died
I'm starting to run out of ideas :crying: and what the hell is that error in bold?
Ziyan said:
I've mostly fixed allocation problems, and also found a bunch of binaries in proprietary-open\omap4\sgx.tgz, so I've replaced the current binaries with them (excluding the sgx driver we can build). While this fixed some errors which referenced those files, things still seem bad:
Code:
I/SurfaceFlinger( 706): SurfaceFlinger is starting
I/SurfaceFlinger( 706): SurfaceFlinger's main thread ready to run. Initializing graphics H/W...
D/libEGL ( 706): loaded /vendor/lib/egl/libEGL_POWERVR_SGX540_120.so
D/libEGL ( 706): loaded /vendor/lib/egl/libGLESv1_CM_POWERVR_SGX540_120.so
D/libEGL ( 706): loaded /vendor/lib/egl/libGLESv2_POWERVR_SGX540_120.so
W/libEGL ( 706): eglInitialize(0x1) failed (EGL_BAD_ALLOC)
E/HAL ( 706): load: module=/vendor/lib/hw/gralloc.omap4.so
[B]E/HAL ( 706): dlopen failed: cannot locate symbol "_ZN7android9CallStack6updateEii" referenced by "gralloc.omap4.so"...[/B]
E/SurfaceFlinger( 706): gralloc module not found
E/HAL ( 706): load: module=/vendor/lib/hw/gralloc.omap4.so
E/HAL ( 706): dlopen failed: cannot locate symbol "_ZN7android9CallStack6updateEii" referenced by "gralloc.omap4.so"...
E/ti_hwc ( 706): Composer HAL failed to load compatible Graphics HAL
E/SurfaceFlinger( 706): composer device failed to initialize (Invalid argument)
E/SurfaceFlinger( 706): ERROR: failed to open framebuffer (Invalid argument), aborting
F/libc ( 706): Fatal signal 6 (SIGABRT) at 0x000002c2 (code=-6), thread 706 (surfaceflinger)
I/DEBUG ( 132): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
I/DEBUG ( 132): Build fingerprint: 'google/yakju/maguro:4.3/JWR66Y/776638:user/release-keys'
I/DEBUG ( 132): Revision: '9'
I/DEBUG ( 132): pid: 706, tid: 706, name: surfaceflinger >>> /system/bin/surfaceflinger <<<
I/DEBUG ( 132): signal 6 (SIGABRT), code -6 (SI_TKILL), fault addr --------
I/mediaserver( 708): ServiceManager: 0xcac460
I/AudioFlinger( 708): Using default 3000 mSec as standby time.
I/CameraService( 708): CameraService started (pid=708)
I/CameraService( 708): Loaded "TI OMAP CameraHal Module" camera module
I/AudioPolicyManagerBase( 708): loadAudioPolicyConfig() loaded /system/etc/audio_policy.conf
I/DEBUG ( 132): r0 00000000 r1 000002c2 r2 00000006 r3 00000000
I/DEBUG ( 132): r4 40025f34 r5 000002c2 r6 00000002 r7 0000010c
I/DEBUG ( 132): r8 00000000 r9 4028f9a4 sl 01ef776c fp beb5e968
I/DEBUG ( 132): ip 00000006 sp beb5e8d8 lr 40107f31 pc 4011d234 cpsr 000f0010
I/DEBUG ( 132): d0 74726f6261202c29 d1 746e656d75677261
I/DEBUG ( 132): d2 6172672220796220 d3 616d6f2e636f6c6c
I/DEBUG ( 132): d4 4e5a5f22206c6f62 d5 64696f72646e6137
I/DEBUG ( 132): d6 6174536c6c614339 d7 7461647075366b63
I/DEBUG ( 132): d8 0000000000000000 d9 0000000000000000
I/DEBUG ( 132): d10 0000000000000000 d11 0000000000000000
I/DEBUG ( 132): d12 0000000000000000 d13 0000000000000000
I/DEBUG ( 132): d14 0000000000000000 d15 0000000000000000
I/DEBUG ( 132): d16 0000000000000000 d17 fffff000fffff000
I/DEBUG ( 132): d18 00000fff00000fff d19 0000000000000000
I/DEBUG ( 132): d20 0000000000000000 d21 0000000000000000
I/DEBUG ( 132): d22 0000000000000000 d23 0000000000000000
I/DEBUG ( 132): d24 0000000000000000 d25 0000000000000000
I/DEBUG ( 132): d26 0000000000000000 d27 0000000000000000
I/DEBUG ( 132): d28 0000000000000000 d29 0000000000000000
I/DEBUG ( 132): d30 0000000000000000 d31 0000000000000000
I/DEBUG ( 132): scr 00000010
I/DEBUG ( 132):
I/DEBUG ( 132): backtrace:
I/DEBUG ( 132): #00 pc 0002a234 /system/lib/libc.so (tgkill+12)
I/DEBUG ( 132): #01 pc 00014f2d /system/lib/libc.so (pthread_kill+88)
I/DEBUG ( 132): #02 pc 00015143 /system/lib/libc.so (raise+10)
I/DEBUG ( 132): #03 pc 00013a33 /system/lib/libc.so
I/DEBUG ( 132): #04 pc 00029ae8 /system/lib/libc.so (abort+4)
I/DEBUG ( 132): #05 pc 00023d9f /system/lib/libsurfaceflinger.so
I/DEBUG ( 132): #06 pc 0001f0c3 /system/lib/libsurfaceflinger.so (android::SurfaceFlinger::init()+98)
I/DEBUG ( 132): #07 pc 000007c1 /system/bin/surfaceflinger
I/DEBUG ( 132): #08 pc 0000e263 /system/lib/libc.so (__libc_init+58)
I/DEBUG ( 132): #09 pc 000008c0 /system/bin/surfaceflinger
I/DEBUG ( 132):
I/DEBUG ( 132): stack:
I/DEBUG ( 132): beb5e898 beb5e8d0 [stack]
I/DEBUG ( 132): beb5e89c 00000000
I/DEBUG ( 132): beb5e8a0 00000000
I/DEBUG ( 132): beb5e8a4 00000000
I/DEBUG ( 132): beb5e8a8 00000000
I/DEBUG ( 132): beb5e8ac 401543a0
I/DEBUG ( 132): beb5e8b0 ffffffc4
I/DEBUG ( 132): beb5e8b4 00000000
I/DEBUG ( 132): beb5e8b8 00000000
I/DEBUG ( 132): beb5e8bc 00000000
I/DEBUG ( 132): beb5e8c0 00000027
I/AudioFlinger( 708): loadHwModule() Loaded primary audio interface from Tuna audio HW HAL (audio) handle 1
I/DEBUG ( 132): beb5e8c4 01ef7748 [heap]
I/DEBUG ( 132): beb5e8c8 01ef7720 [heap]
I/DEBUG ( 132): beb5e8cc 00000000
I/DEBUG ( 132): beb5e8d0 01ef7718 [heap]
I/DEBUG ( 132): beb5e8d4 40102d55 /system/lib/libc.so (dlmalloc+352)
I/DEBUG ( 132): #00 beb5e8d8 40025f34 /system/bin/linker
I/DEBUG ( 132): beb5e8dc 000002c2
I/DEBUG ( 132): beb5e8e0 00000002
I/DEBUG ( 132): beb5e8e4 00000006
I/DEBUG ( 132): beb5e8e8 00000006
I/DEBUG ( 132): beb5e8ec 40107f31 /system/lib/libc.so (pthread_kill+92)
I/DEBUG ( 132): #01 beb5e8f0 40026178
I/DEBUG ( 132): beb5e8f4 00000006
I/DEBUG ( 132): beb5e8f8 00000000
I/DEBUG ( 132): beb5e8fc 00000001
I/DEBUG ( 132): beb5e900 ffffffea
I/DEBUG ( 132): beb5e904 40108147 /system/lib/libc.so (raise+14)
I/DEBUG ( 132): #02 beb5e908 beb5e910 [stack]
I/DEBUG ( 132): beb5e90c 40106a37 /system/lib/libc.so
I/AudioFlinger( 708): HAL output buffer size 144 frames, normal mix buffer size 864 frames
I/DEBUG ( 132):
I/DEBUG ( 132): memory near r4:
I/DEBUG ( 132): 40025f14 00000000 00000000 00000000 00000000
I/DEBUG ( 132): 40025f24 00000000 00000000 00000000 beb5eb0c
I/DEBUG ( 132): 40025f34 00000000 01ef5208 00000000 be35f000
I/DEBUG ( 132): 40025f44 00800000 00001000 00000000 00000000
I/DEBUG ( 132): 40025f54 000002c2 00000000 00000000 00000000
I/DEBUG ( 132): 40025f64 00000000 00000000 40026178 400aa000
I/DEBUG ( 132): 40025f74 706f6c64 66206e65 656c6961 63203a64
I/DEBUG ( 132): 40025f84 6f6e6e61 6f6c2074 65746163 6d797320
I/DEBUG ( 132): 40025f94 206c6f62 4e5a5f22 646e6137 64696f72
I/DEBUG ( 132): 40025fa4 6c614339 6174536c 75366b63 74616470
I/DEBUG ( 132): 40025fb4 69694565 65722022 65726566 6465636e
I/DEBUG ( 132): 40025fc4 20796220 61726722 636f6c6c 616d6f2e
I/DEBUG ( 132): 40025fd4 732e3470 2e2e226f 0000002e 00000000
I/DEBUG ( 132): 40025fe4 00000000 00000000 00000000 00000000
I/DEBUG ( 132): 40025ff4 00000000 00000000 00000000 00000000
I/DEBUG ( 132): 40026004 00000000 00000000 00000000 00000000
I/DEBUG ( 132):
I/DEBUG ( 132): memory near r9:
I/DEBUG ( 132): 4028f984 6e752078 70707573 6574726f 77202c64
I/DEBUG ( 132): 4028f994 206c6c69 20746f6e 75206562 00646573
I/DEBUG ( 132): 4028f9a4 6c617267 00636f6c 00306266 6e657665
I/DEBUG ( 132): 4028f9b4 6e6f4374 6c6f7274 2c642528 29642520
I/DEBUG ( 132): 4028f9c4 69616620 2064656c 00007325 6e657665
I/DEBUG ( 132): 4028f9d4 6e6f4374 6c6f7274 746f6720 656e7520
I/DEBUG ( 132): 4028f9e4 63657078 20646574 6e657665 64252074
I/DEBUG ( 132): 4028f9f4 69642820 253d7073 6e652064 2964253d
I/DEBUG ( 132): 4028fa04 00000000 6e657665 6e6f4374 6c6f7274
I/DEBUG ( 132): 4028fa14 6e676920 6e69726f 76652067 20746e65
I/DEBUG ( 132): 4028fa24 6f206425 6e75206e 6f6c6c61 65746163
I/DEBUG ( 132): 4028fa34 69642064 25207073 65282064 64253d6e
I/DEBUG ( 132): 4028fa44 00000029 75626564 66732e67 5f6f6e2e
I/DEBUG ( 132): 4028fa54 765f7768 636e7973 00000000 00000030
I/DEBUG ( 132): 4028fa64 6e697355 73252067 72657620 6e6f6973
I/DEBUG ( 132): 4028fa74 2e752520 00007525 74746567 20676e69
I/DEBUG ( 132):
I/DEBUG ( 132): memory near sl:
I/DEBUG ( 132): 01ef774c 00001891 00000000 00000000 00000000
I/DEBUG ( 132): 01ef775c 00000000 00000000 00000000 00000000
I/DEBUG ( 132): 01ef776c 01ef4c08 01ef4c08 00000000 01ef4c08
I/DEBUG ( 132): 01ef777c 00000000 00000000 00000000 00000000
I/DEBUG ( 132): 01ef778c 00000000 00000000 00000000 00000000
I/DEBUG ( 132): 01ef779c 00000000 00000000 00000000 00000000
I/DEBUG ( 132): 01ef77ac 00000000 00000000 01ef4c08 01ef4c08
I/DEBUG ( 132): 01ef77bc 00000000 01ef4c08 00000000 00000000
I/DEBUG ( 132): 01ef77cc 00000000 00000000 00000000 00000000
I/DEBUG ( 132): 01ef77dc 00000000 00000000 00000000 00000000
I/DEBUG ( 132): 01ef77ec 00000000 00000000 00000000 00000000
I/DEBUG ( 132): 01ef77fc 01ef4c08 01ef4c08 00000000 01ef4c08
I/DEBUG ( 132): 01ef780c 00000000 00000001 01ef7858 01ef5464
I/DEBUG ( 132): 01ef781c 00000000 00000000 00000000 00000000
I/DEBUG ( 132): 01ef782c 00000000 00000000 00000000 00000000
I/DEBUG ( 132): 01ef783c 00000000 00000000 00000000 00000000
I/DEBUG ( 132):
I/DEBUG ( 132): memory near fp:
I/DEBUG ( 132): beb5e948 01ef7858 01ef7770 01ef7778 401543a0
I/DEBUG ( 132): beb5e958 01ef5464 01ef7720 00000000 40098014
I/DEBUG ( 132): beb5e968 400c0030 40487290 40098038 4008d574
I/DEBUG ( 132): beb5e978 4017725c 00000000 40096197 400961b9
I/DEBUG ( 132): beb5e988 01ef7420 01ef7420 00000130 01ef7850
I/DEBUG ( 132): beb5e998 01ef7720 c0000000 01ef7718 40102d55
I/DEBUG ( 132): beb5e9a8 4009830c 4025efac 00000000 8cdbf927
I/DEBUG ( 132): beb5e9b8 40216e58 00000000 0004c79e 8cdbf927
I/DEBUG ( 132): beb5e9c8 beb5eaa0 00000000 00000000 01ef5450
I/AudioMixer( 708): found effect "Multichannel Downmix To Stereo" from The Android Open Source Project
I/DEBUG ( 132): beb5e9d8 beb5ea58 01ef552c 4028e8c4 01ef7720
I/DEBUG ( 132): beb5e9e8 0000875d 00000000 beb5eafc 402820c7
I/DEBUG ( 132): beb5e9f8 01ef73d0 00000004 01ef73c8 40102d55
I/DEBUG ( 132): beb5ea08 0000001b 40102d55 0000875d 01ef7394
E/MonoPipe( 708): Failed to fetch local time frequency when constructing a MonoPipe (res = -32). getNextWriteTimestamp calls will be non-functional
I/DEBUG ( 132): beb5ea18 01ef5468 beb5ea28 401a7e35 00000004
I/DEBUG ( 132): beb5ea28 00000800 01ef51ec 00000002 000002c2
I/DEBUG ( 132): beb5ea38 00000001 40039fd3 0000875d 00000000
I/DEBUG ( 132):
I/DEBUG ( 132): memory near sp:
I/DEBUG ( 132): beb5e8b8 00000000 00000000 00000027 01ef7748
I/DEBUG ( 132): beb5e8c8 01ef7720 00000000 01ef7718 40102d55
I/DEBUG ( 132): beb5e8d8 40025f34 000002c2 00000002 00000006
I/DEBUG ( 132): beb5e8e8 00000006 40107f31 40026178 00000006
I/DEBUG ( 132): beb5e8f8 00000000 00000001 ffffffea 40108147
I/DEBUG ( 132): beb5e908 beb5e910 40106a37 ffffffdf 8cdbf927
I/DEBUG ( 132): beb5e918 4028f94c 00000000 01ef7720 00000001
I/DEBUG ( 132): beb5e928 ffffffea 00000000 01ef7720 4011caec
I/DEBUG ( 132): beb5e938 646e6576 40286da3 401fa8d8 4017725c
I/DEBUG ( 132): beb5e948 01ef7858 01ef7770 01ef7778 401543a0
I/DEBUG ( 132): beb5e958 01ef5464 01ef7720 00000000 40098014
I/DEBUG ( 132): beb5e968 400c0030 40487290 40098038 4008d574
I/DEBUG ( 132): beb5e978 4017725c 00000000 40096197 400961b9
I/DEBUG ( 132): beb5e988 01ef7420 01ef7420 00000130 01ef7850
I/DEBUG ( 132): beb5e998 01ef7720 c0000000 01ef7718 40102d55
I/DEBUG ( 132): beb5e9a8 4009830c 4025efac 00000000 8cdbf927
I/DEBUG ( 132):
I/DEBUG ( 132): code around pc:
I/DEBUG ( 132): 4011d214 e8bd00f0 e3700a01 912fff1e e2600000
I/DEBUG ( 132): 4011d224 ea0097aa e92d50f0 e3a07f43 ef000000
I/DEBUG ( 132): 4011d234 e8bd50f0 e3700a01 912fff1e e2600000
I/DEBUG ( 132): 4011d244 ea0097a2 e92d50f0 e3a070ee ef000000
I/DEBUG ( 132): 4011d254 e8bd50f0 e3700a01 912fff1e e2600000
I/DEBUG ( 132): 4011d264 ea00979a f200429a bf0080cf f000f891
I/DEBUG ( 132): 4011d274 4001e92d f040f891 d3532a10 0301ea80
I/DEBUG ( 132): 4011d284 0303f013 806ef000 d3262ae0 0300f1c0
I/DEBUG ( 132): 4011d294 030ff013 eba2d021 ea5f0203 bf447cc3
I/DEBUG ( 132): 4011d2a4 eb01f811 eb01f800 f811bf21 f811cb01
I/DEBUG ( 132): 4011d2b4 f800eb01 f800cb01 ea5feb01 da037c43
I/DEBUG ( 132): 4011d2c4 080df9a1 083df980 f921d303 f900070d
I/DEBUG ( 132): 4011d2d4 f891071d f891f000 3a40f040 f891d30f
I/DEBUG ( 132): 4011d2e4 f891f080 f921f0c0 f921020d f891420d
I/DEBUG ( 132): 4011d2f4 3a40f0c0 020df900 420df900 f102d2f3
I/DEBUG ( 132): 4011d304 3a200240 f921d305 3a20020d 020df900
I/DEBUG ( 132):
I/DEBUG ( 132): code around lr:
I/DEBUG ( 132): 40107f10 6006fe45 bdf84628 480e4625 44786a2d
I/DEBUG ( 132): 40107f20 eb6ef7f9 ebbaf013 463a4629 e97cf015
I/DEBUG ( 132): 40107f30 bf183001 d1ea2500 fe30f001 f0016805
I/DEBUG ( 132): 40107f40 6006fe2d bdf84628 0004c4d0 0004c4c4
I/DEBUG ( 132): 40107f50 0004c4ac 0004c496 bf6ef7ff 4a3d4b3c
I/DEBUG ( 132): 40107f60 43f0e92d 447b460c 4607b08b 589d2616
I/DEBUG ( 132): 40107f70 9309682b fe12f001 8000f8d0 4620b13c
I/DEBUG ( 132): 40107f80 f848f016 4606280f 2622bf88 f001d90c
I/DEBUG ( 132): 40107f90 4684fe05 f8cc4630 9c098000 4294682a
I/DEBUG ( 132): 40107fa0 b00bd154 83f0e8bd ffd6f7ff d04542b8
I/DEBUG ( 132): 40107fb0 44784829 eb22f7f9 44784828 4287e001
I/DEBUG ( 132): 40107fc0 6800d008 d1fa2800 26034825 f7f94478
I/DEBUG ( 132): 40107fd0 e7dceb18 f10d4823 6a3f0904 f7f94478
I/DEBUG ( 132): 40107fe0 4a21eb10 4648463b 447a2120 f9ccf01a
I/DEBUG ( 132): 40107ff0 21014648 f900f026 3ffff1b0 d0104681
I/DEBUG ( 132): 40108000 46214648 f0134632 1c43eabc d00c4607
I/ServiceManager( 125): service 'media.audio_flinger' died
I/ServiceManager( 125): service 'media.player' died
I/ServiceManager( 125): service 'media.camera' died
I'm starting to run out of ideas :crying: and what the hell is that error in bold?
Click to expand...
Click to collapse
What you can try:
(optional) can be done manually: http://git.omapzoom.org/?p=device/t...;hpb=906910612220d73ae7f92598f899dc1fb370f756
Enable permissions for ION driver. http://git.omapzoom.org/?p=device/t...it;h=e17db8f823da9d27144a60cd6e1cb09e17ef79bb
[Tablet] Set the permissions to rpmsg, tiler & dss http://git.omapzoom.org/?p=device/t...it;h=0c26dc60a9ee661a504cc6994c3f0d8ac6ec226d
Blaze Tablet: SGX: Add class core to the SGX init http://git.omapzoom.org/?p=device/t...it;h=abf171fa6eef6c2f7fee55f851699a40534f7f1a
possibly help from the IRC to the egl hal problem: http://pandaboard.org/pbirclogs/index.php?date=2011-12-21#T06:11:51
Carlos_Manuel said:
[/HIDE]
What you can try:
(optional) can be done manually: http://git.omapzoom.org/?p=device/t...;hpb=906910612220d73ae7f92598f899dc1fb370f756
Enable permissions for ION driver. http://git.omapzoom.org/?p=device/t...it;h=e17db8f823da9d27144a60cd6e1cb09e17ef79bb
[Tablet] Set the permissions to rpmsg, tiler & dss http://git.omapzoom.org/?p=device/t...it;h=0c26dc60a9ee661a504cc6994c3f0d8ac6ec226d
Blaze Tablet: SGX: Add class core to the SGX init http://git.omapzoom.org/?p=device/t...it;h=abf171fa6eef6c2f7fee55f851699a40534f7f1a
possibly help from the IRC to the egl hal problem: http://pandaboard.org/pbirclogs/index.php?date=2011-12-21#T06:11:51
Click to expand...
Click to collapse
I'll try to build an aosp 4.3 based on the blaze device tree, seems like they integrated ti/proprietary-open, which is good, hopefully we'll have more luck... in the meantime, go experiment with it I'm a noob when it comes to ROMs, and I think the issues now are ROM-sided, as there are no dmesg errors (except one, but that's because userspace drivers failed to initialize).
Ziyan said:
I'll try to build an aosp 4.3 based on the blaze device tree, seems like they integrated ti/proprietary-open, which is good, hopefully we'll have more luck... in the meantime, go experiment with it I'm a noob when it comes to ROMs, and I think the issues now are ROM-sided, as there are no dmesg errors (except one, but that's because userspace drivers failed to initialize).
Click to expand...
Click to collapse
If you use vendor/ti/ device/ti/* then modfiy the files for tuna and edit paths to the tuna's files. That's the way to keep all correct and not to mess up wrong files..
I can't help at all, because I am trying to fix those damn errors caused by L preview from AOSP. I hate that SELinux!!!
Well, I'm getting closer and closer - I compiled AOSP 4.3 with ti/proprietary-open. Copied in my zImage and added one simple line to the boardconfig, and suddenly everything seems to get compiled & copied to the right place, new drivers, gralloc, egl...
Some more error messages gone. Dmesg, logcat.
Code:
I/SurfaceFlinger( 2501): SurfaceFlinger is starting
I/SurfaceFlinger( 2501): SurfaceFlinger's main thread ready to run. Initializing graphics H/W...
D/libEGL ( 2501): loaded /vendor/lib/egl/libEGL_POWERVR_SGX540_120.so
D/libEGL ( 2501): loaded /vendor/lib/egl/libGLESv1_CM_POWERVR_SGX540_120.so
D/libEGL ( 2501): loaded /vendor/lib/egl/libGLESv2_POWERVR_SGX540_120.so
W/libEGL ( 2501): eglInitialize(0x1) failed (EGL_BAD_ALLOC)
W/gralloc ( 2501): page flipping not supported (yres_virtual=1280, requested=2560)
I/gralloc ( 2501): using (fd=14)
I/gralloc ( 2501): id = omapfb
I/gralloc ( 2501): xres = 720 px
I/gralloc ( 2501): yres = 1280 px
I/gralloc ( 2501): xres_virtual = 720 px
I/gralloc ( 2501): yres_virtual = 1280 px
I/gralloc ( 2501): bpp = 32
I/gralloc ( 2501): r = 16:8
I/gralloc ( 2501): g = 8:8
I/gralloc ( 2501): b = 0:8
I/gralloc ( 2501): width = 58 mm (315.310333 dpi)
I/gralloc ( 2501): height = 102 mm (318.745087 dpi)
I/gralloc ( 2501): refresh rate = 59.14 Hz
E/gralloc ( 2501): Error mapping the framebuffer (Invalid argument)
E/ti_hwc ( 2501): Composer HAL failed to load compatible Graphics HAL
E/SurfaceFlinger( 2501): composer device failed to initialize (Invalid argument)
E/SurfaceFlinger( 2501): ERROR: failed to open framebuffer (Invalid argument), aborting
F/libc ( 2501): Fatal signal 11 (SIGSEGV) at 0xdeadbaad (code=1), thread 2503 (SurfaceFlinger)
Something's still off...
Ziyan said:
Well, I'm getting closer and closer - I compiled AOSP 4.3 with ti/proprietary-open. Copied in my zImage and added one simple line to the boardconfig, and suddenly everything seems to get compiled & copied to the right place, new drivers, gralloc, egl...
Some more error messages gone. Dmesg, logcat.
Code:
I/SurfaceFlinger( 2501): SurfaceFlinger is starting
I/SurfaceFlinger( 2501): SurfaceFlinger's main thread ready to run. Initializing graphics H/W...
D/libEGL ( 2501): loaded /vendor/lib/egl/libEGL_POWERVR_SGX540_120.so
D/libEGL ( 2501): loaded /vendor/lib/egl/libGLESv1_CM_POWERVR_SGX540_120.so
D/libEGL ( 2501): loaded /vendor/lib/egl/libGLESv2_POWERVR_SGX540_120.so
W/libEGL ( 2501): eglInitialize(0x1) failed (EGL_BAD_ALLOC)
W/gralloc ( 2501): page flipping not supported (yres_virtual=1280, requestechanges. Framebuffer problem should be in the kernel. ? :eek:
I/gralloc ( 2501): using (fd=14)
I/gralloc ( 2501): id = omapfb
I/gralloc ( 2501): xres = 720 px
I/gralloc ( 2501): yres = 1280 px
I/gralloc ( 2501): xres_virtual = 720 px
I/gralloc ( 2501): yres_virtual = 1280 px
I/gralloc ( 2501): bpp = 32
I/gralloc ( 2501): r = 16:8
I/gralloc ( 2501): g = 8:8
I/gralloc ( 2501): b = 0:8
I/gralloc ( 2501): width = 58 mm (315.310333 dpi)
I/gralloc ( 2501): height = 102 mm (318.745087 dpi)
I/gralloc ( 2501): refresh rate = 59.14 Hz
E/gralloc ( 2501): Error mapping the framebuffer (Invalid argument)
E/ti_hwc ( 2501): Composer HAL failed to load compatible Graphics HAL
E/SurfaceFlinger( 2501): composer device failed to initialize (Invalid argument)
E/SurfaceFlinger( 2501): ERROR: failed to open framebuffer (Invalid argument), aborting
F/libc ( 2501): Fatal signal 11 (SIGSEGV) at 0xdeadbaad (code=1), thread 2503 (SurfaceFlinger)
Something's still off...
Click to expand...
Click to collapse
Hwc, surfaceflinger errors:
You probably have to use omapzoom's hardware/ti/omap4xxx, modify kernel headers and modify frameworks/av for the hwc changes
Carlos_Manuel said:
Hwc, surfaceflinger errors:
You probably have to use omapzoom's hardware/ti/omap4xxx, modify kernel headers and modify frameworks/av for the hwc changes
Click to expand...
Click to collapse
Ok, omapzoom's hardware/ti/omap4xxx required hardware/ti/domx, which I added too, but it requires something more (I've also added external/bltsville and hardware/ti/omap4-aah, but they didn't help):
Code:
hardware/ti/omap4xxx/hwc/color_fmt.c:23:29: fatal error: linux/bltsville.h: No such file or directory
compilation terminated.
make-3.82: *** [out/target/product/maguro/obj/SHARED_LIBRARIES/hwcomposer.omap4_intermediates/color_fmt.o] Error 1
make-3.82: *** Waiting for unfinished jobs....
hardware/ti/omap4xxx/hwc/blitter.c:27:29: fatal error: linux/bltsville.h: No such file or directory
compilation terminated.
make-3.82: *** [out/target/product/maguro/obj/SHARED_LIBRARIES/hwcomposer.omap4_intermediates/blitter.o] Error 1
hardware/ti/omap4xxx/hwc/display.c:30:24: fatal error: ion_ti/ion.h: No such file or directory
compilation terminated.
make-3.82: *** [out/target/product/maguro/obj/SHARED_LIBRARIES/hwcomposer.omap4_intermediates/display.o] Error 1
In file included from hardware/ti/omap4xxx/hwc/dsscomp.c:26:0:
hardware/ti/omap4xxx/hwc/hwc_dev.h:26:29: fatal error: linux/bltsville.h: No such file or directory
compilation terminated.
make-3.82: *** [out/target/product/maguro/obj/SHARED_LIBRARIES/hwcomposer.omap4_intermediates/dsscomp.o] Error 1
Well that's it for today, I need to sleep, but if you find the relevant sources/commits, post them
I can't believe how outdated we are, I thought at least the rom side things are updated, but no... seems like google doesn't really care about kernel/rom side device specific things, they only improve android...
Ziyan said:
Ok, omapzoom's hardware/ti/omap4xxx required hardware/ti/domx, which I added too, but it requires something more (I've also added external/bltsville and hardware/ti/omap4-aah, but they didn't help):
Code:
hardware/ti/omap4xxx/hwc/color_fmt.c:23:29: fatal error: linux/bltsville.h: No such file or directory
compilation terminated.
make-3.82: *** [out/target/product/maguro/obj/SHARED_LIBRARIES/hwcomposer.omap4_intermediates/color_fmt.o] Error 1
make-3.82: *** Waiting for unfinished jobs....
hardware/ti/omap4xxx/hwc/blitter.c:27:29: fatal error: linux/bltsville.h: No such file or directory
compilation terminated.
make-3.82: *** [out/target/product/maguro/obj/SHARED_LIBRARIES/hwcomposer.omap4_intermediates/blitter.o] Error 1
hardware/ti/omap4xxx/hwc/display.c:30:24: fatal error: ion_ti/ion.h: No such file or directory
compilation terminated.
make-3.82: *** [out/target/product/maguro/obj/SHARED_LIBRARIES/hwcomposer.omap4_intermediates/display.o] Error 1
In file included from hardware/ti/omap4xxx/hwc/dsscomp.c:26:0:
hardware/ti/omap4xxx/hwc/hwc_dev.h:26:29: fatal error: linux/bltsville.h: No such file or directory
compilation terminated.
make-3.82: *** [out/target/product/maguro/obj/SHARED_LIBRARIES/hwcomposer.omap4_intermediates/dsscomp.o] Error 1
Well that's it for today, I need to sleep, but if you find the relevant sources/commits, post them
I can't believe how outdated we are, I thought at least the rom side things are updated, but no... seems like google doesn't really care about kernel/rom side device specific things, they only improve android...
Click to expand...
Click to collapse
Include missing files which it can't find, to hardware/ti/omap4xxx/kernel-headers/original
Ziyan said:
Well, I managed to compile them. As excepted, things didn't just magically begin working. Android didn't automatically load the modules from /system/lib/modules, but:
Code:
insmod pvrsrvkm_sgx540_120.ko
seemed to work... (note: I had to enable CONFIG_MODULES in the kernel)
dmesg:
http://pastebin.com/RTM4fQAW
Code:
<6>[ 66.322906] PVR: PVRCore_Init
<6>[ 66.323242] PVR: LinuxMMInit: Maximum page pool size: 10800
<6>[ 66.323516] PVR: PVRSRVDriverProbe(pDevice=c78b2800)
<6>[ 66.323760] PVR: SGX register base: 0x56000000
<6>[ 66.323822] PVR: SGX register size: 65535
<6>[ 66.323944] PVR: SGX IRQ: 53
<6>[ 66.324218] PVR: EnableSystemClocks: Enabling System Clocks
<6>[ 66.324768] PVR: PVRCore_Init: major device 246
This appeared after doing insmod.
logcat:
http://pastebin.com/HyK887z7
Something's definietly bad there. The problem starts there:
Code:
E/IMGSRV ( 4513): :0: OpenServices: Cannot open device driver /dev/pvrsrvkm.
Code:
[email protected]:/dev # ls -l /dev/pvr*
crw------- root root 246, 0 2014-07-02 11:31 pvrsrvkm
Hmm, maybe a permission problem? Let's chmod it to 777 (maybe we'll need this included in the ramdisk).
dmesg again:
http://pastebin.com/1vqZunrf
logcat again:
http://pastebin.com/AWJz51X9
That did the trick, it went ahead, and another error popped out.
Well, I'm open to any suggestions while I try to fix this...
EDIT:
Code:
[email protected]:/ # free -m
total used free shared buffers
Mem: 809120 66744 742376 0 4896
-/+ buffers: 61848 747272
Swap: 0 0 0
That's a bit too much, isn't it? That android-display stuff which should allocate memory doesn't seem to work, I had the same problem when I merged it with the current drivers. I think I edited the board files the right way... but I'll look around.
EDIT 2:
Code:
<6>[ 0.000000] android_display: setting default resolution 720*1280, bpp=4
This may be the problem - we're not 4 bits, that should be 24.
EDIT 3:
Sadly, no.
Code:
u32 bpp; /* must be 2 or 4 */
But the error must be somewhere in the memory allocation process. Another evidence.
Code:
<3>[ 0.213623] omap_rproc_get_pool: dsp - no carveout memory is available at all
<3>[ 0.214782] omap_rproc_get_pool: ipu - no carveout memory is available at all
Click to expand...
Click to collapse
does the new drivers "NEED" the carveouts to be dynamically set up? if not,static them in,that way nothing needs to be allocated on its own i guess?(id help but im clueless on any of this,plus no device)
pattyboi:) said:
does the new drivers "NEED" the carveouts to be dynamically set up? if not,static them in,that way nothing needs to be allocated on its own i guess?(id help but im clueless on any of this,plus no device)
Click to expand...
Click to collapse
Yeah I thought about it, but I think it works fine now, so I'll give it a try with the new ROM side hwc, which is indeed required to make them work. If that fails, I'll fall back to static allocation, as dynamically it only reserves 8 MB VRAM, but according to my calculations, is should reserve about 10.5 MB with triple buffering... now, it reserves only the amount needed for double buffering (almost exactly, which makes sense for dynamic reservation), but who knows, maybe it fell back do double buffering, or even better, we didn't ever had triple buffering

Trying to build AOSP-based Android L Preview ROM

I was able to build Android using AOSP android-l-preview_r2 project tree + a couple of CM and custom projects (kernel, device, ...). I made it pass the HTC boot animation, and I'm stuck and the android gray logo boot animation.
Here's the part of my logcat that seems to pinpoint the issue and my custom manifest :
Code:
11-01 04:47:08.033 153 153 I AudioFlinger: loadHwModule() Loaded primary audio interface from Nvidia Audio HW HAL (audio) handle 1
--------- beginning of crash
11-01 04:47:08.033 153 153 F libc : Fatal signal 11 (SIGSEGV), code 1, fault addr 0x6 in tid 153 (mediaserver)
11-01 04:47:08.142 150 150 I SELinux : SELinux: Loaded file_contexts from /file_contexts
11-01 04:47:08.158 150 150 I DEBUG : *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
11-01 04:47:08.159 150 150 I DEBUG : Build fingerprint: 'Android/full_endeavoru/endeavoru:4.4.3.43.43.43/AOSP/billy10311923:userdebug/test-keys'
11-01 04:47:08.159 150 150 I DEBUG : Revision: '0'
11-01 04:47:08.159 150 150 I DEBUG : ABI: 'arm'
11-01 04:47:08.159 150 150 I DEBUG : pid: 153, tid: 153, name: mediaserver >>> /system/bin/mediaserver <<<
11-01 04:47:08.159 150 150 I DEBUG : signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x6
11-01 04:47:08.190 150 150 I DEBUG : r0 40d010c0 r1 00000002 r2 00000002 r3 33333333
11-01 04:47:08.190 150 150 I DEBUG : r4 40d010c0 r5 00000002 r6 40d5c298 r7 55555555
11-01 04:47:08.190 150 150 I DEBUG : r8 33333333 r9 40d73240 sl 40d1b380 fp 00000000
11-01 04:47:08.190 150 150 I DEBUG : ip 55555555 sp becab7b8 lr 412f9118 pc 412f913c cpsr 20010010
11-01 04:47:08.192 150 150 I DEBUG :
11-01 04:47:08.192 150 150 I DEBUG : backtrace:
11-01 04:47:08.193 150 150 I DEBUG : #00 pc 0001713c /system/lib/hw/audio.primary.tegra.so
11-01 04:47:08.193 150 150 I DEBUG : #01 pc 00014521 /system/lib/libaudioflinger.so
11-01 04:47:08.193 150 150 I DEBUG : #02 pc 000255e1 /system/lib/libaudioflinger.so
11-01 04:47:08.193 150 150 I DEBUG : #03 pc 0000ef5b /system/lib/hw/audio_policy.default.so (android_audio_legacy::AudioPolicyCompatClient::openOutput(int, unsigned int*, unsigned int*, audio_format_t*, unsigned int*, unsigned int*, audio_output_flags_t, audio_offload_info_t const*)+30)
11-01 04:47:08.194 150 150 I DEBUG : #04 pc 0000e3d5 /system/lib/hw/audio_policy.default.so (android_audio_legacy::AudioPolicyManagerBase::AudioPolicyManagerBase(android_audio_legacy::AudioPolicyClientInterface*)+580)
11-01 04:47:08.194 150 150 I DEBUG : #05 pc 00009831 /system/lib/hw/audio_policy.default.so (createAudioPolicyManager+20)
11-01 04:47:08.194 150 150 I DEBUG : #06 pc 0000f415 /system/lib/hw/audio_policy.default.so
11-01 04:47:08.194 150 150 I DEBUG : #07 pc 00025231 /system/lib/libaudioflinger.so (android::AudioPolicyService::AudioPolicyService()+388)
11-01 04:47:08.194 150 150 I DEBUG : #08 pc 00001c9f /system/bin/mediaserver
11-01 04:47:08.194 150 150 I DEBUG : #09 pc 00001605 /system/bin/mediaserver
11-01 04:47:08.194 150 150 I DEBUG : #10 pc 00012bc1 /system/lib/libc.so (__libc_init+44)
11-01 04:47:08.194 150 150 I DEBUG : #11 pc 00001898 /system/bin/mediaserver
Code:
<?xml version="1.0" encoding="UTF-8"?>
<manifest>
<remote name="github"
fetch="https://github.com" />
<project path="hardware/ti/wlan" name="platform/hardware/ti/wlan" revision="refs/tags/android-4.4.4_r2.0.1" />
<remove-project name="platform/external/sepolicy" />
<project name="endeavoru/android_external_sepolicy" path="external/sepolicy" remote="github" revision="refs/heads/android-l-preview_r2" />
<remove-project name="platform/build" />
<project name="endeavoru/android_build" path="build" remote="github" revision="refs/heads/android-l-preview_r2" />
<remove-project name="platform/system/core" />
<project name="endeavoru/android_system_core" path="system/core" remote="github" revision="refs/heads/android-l-preview_r2" />
<project name="endeavoru/android_device_htc_endeavoru" path="device/htc/endeavoru" remote="github" revision="refs/heads/android-l-preview_r2" />
<project name="endeavoru/android_device_htc_tegra3-common" path="device/htc/tegra3-common" remote="github" revision="refs/heads/android-l-preview_r2" />
<project name="endeavoru/android_kernel_htc_endeavoru" path="kernel/htc/endeavoru" remote="github" revision="refs/heads/android-l-preview_r2" />
</manifest>
Could an admin transfer my thread in the Android Development Forum so I could get some help ?
Come on ? There's really no one that can even say something ?
Try to ask developers. Not many devs look there
Thanks MikeChannon for moving the thread!
I rebuilt my ROM with the android-5.0.0_r2 AOSP source code and CM's device and kernel repos. Here are some tombstones...
Code:
*** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
Build fingerprint: 'Android/full_endeavoru/endeavoru:5.0/LRX21M/billy11120657:userdebug/test-keys'
Revision: '0'
ABI: 'arm'
pid: 4935, tid: 4935, name: mediaserver >>> /system/bin/mediaserver <<<
signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x6
cannot get registers: No such process
backtrace:
#00 pc 0001713c /system/lib/hw/audio.primary.tegra.so
#01 pc 0001fc15 /system/lib/libaudioflinger.so
#02 pc 0001fd69 /system/lib/libaudioflinger.so
#03 pc 00009831 /system/lib/libaudiopolicyservice.so
#04 pc 00019d41 /system/lib/libaudiopolicymanagerdefault.so (android::AudioPolicyManager::AudioPolicyManager(android::AudioPolicyClientInterface*)+972)
#05 pc fffffffd <unknown>
stack:
........ ........
........ ........
........ ........
........ ........
........ ........
........ ........
cannot get siginfo for 4935: No such process
--------- tail end of log main
11-12 19:32:28.661 4935 4935 E CameraWrapper: failed to open vendor camera module
11-12 19:32:28.664 4935 4935 I AudioPolicyService: AudioPolicyService CSTOR in new mode
11-12 19:32:28.668 4935 4935 I AudioPolicyManager: loadAudioPolicyConfig() loaded /system/etc/audio_policy.conf
11-12 19:32:28.671 4935 4935 W linker : libaudioavp.so has text relocations. This is wasting memory and prevents security hardening. Please fix.
11-12 19:32:28.996 4935 4935 I AudioFlinger: loadHwModule() Loaded primary audio interface from Nvidia Audio HW HAL (audio) handle 1
--------- log main
11-12 19:32:28.607 4935 4935 I mediaserver: ServiceManager: 0x40f500c0
11-12 19:32:28.607 4935 4935 I AudioFlinger: Using default 3000 mSec as standby time.
11-12 19:32:28.651 4935 4935 I CameraService: CameraService started (pid=4935)
11-12 19:32:28.652 4935 4935 I CameraService: Loaded "Tegra 3 Camera Wrapper" camera module
11-12 19:32:28.652 4935 4935 V CameraWrapper: camera_get_number_of_cameras
11-12 19:32:28.652 4935 4935 V CameraWrapper: check_vendor_module
11-12 19:32:28.661 4935 4935 E HAL : load: module=/system/lib/hw/vendor-camera.tegra.so
11-12 19:32:28.661 4935 4935 E HAL : dlopen failed: could not load library "libcameraface.so" needed by "vendor-camera.tegra.so"; caused by cannot locate symbol "_ZN7android10VectorImpl19reservedVectorImpl1Ev" referenced by "libcameraface.so"...
11-12 19:32:28.661 4935 4935 E CameraWrapper: failed to open vendor camera module
11-12 19:32:28.664 4935 4935 I AudioPolicyService: AudioPolicyService CSTOR in new mode
11-12 19:32:28.668 4935 4935 I AudioPolicyManager: loadAudioPolicyConfig() loaded /system/etc/audio_policy.conf
11-12 19:32:28.671 4935 4935 W linker : libaudioavp.so has text relocations. This is wasting memory and prevents security hardening. Please fix.
11-12 19:32:28.996 4935 4935 I AudioFlinger: loadHwModule() Loaded primary audio interface from Nvidia Audio HW HAL (audio) handle 1
Code:
*** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
Build fingerprint: 'Android/full_endeavoru/endeavoru:5.0/LRX21M/billy11120657:userdebug/test-keys'
Revision: '0'
ABI: 'arm'
pid: 5780, tid: 5780, name: mediaserver >>> /system/bin/mediaserver <<<
signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x6
r0 40f010d0 r1 00000002 r2 00000002 r3 33333333
r4 40f010d0 r5 00000002 r6 40f7a180 r7 55555555
r8 33333333 r9 beccc7a0 sl 00000002 fp 00000002
ip 55555555 sp beccc708 lr 4164c118 pc 4164c13c cpsr 200f0010
d0 0000000000000000 d1 0000000000000000
d2 0000000000000000 d3 0000000000000000
d4 695f445f50534469 d5 68635f6365735f6e
d6 203e32522c324c3c d7 4f5f32495341203d
d8 0000000000000000 d9 0000000000000000
d10 0000000000000000 d11 0000000000000000
d12 0000000000000000 d13 0000000000000000
d14 0000000000000000 d15 0000000000000000
d16 0000000000000000 d17 0000000000000000
d18 0000000000000000 d19 0000000000000000
d20 0000000000000000 d21 0000000000000000
d22 0000000000000000 d23 0000000000000000
d24 0000000000000000 d25 0000000000000000
d26 0000000000000000 d27 0000000000000000
d28 0000000000000000 d29 0000000000000000
d30 0000000000000000 d31 0000000000000000
scr 00000000
backtrace:
#00 pc 0001713c /system/lib/hw/audio.primary.tegra.so
#01 pc 0001fc15 /system/lib/libaudioflinger.so
#02 pc 0001fd69 /system/lib/libaudioflinger.so
#03 pc 00009831 /system/lib/libaudiopolicyservice.so
#04 pc 00019d41 /system/lib/libaudiopolicymanagerdefault.so (android::AudioPolicyManager::AudioPolicyManager(android::AudioPolicyClientInterface*)+972)
#05 pc 0000049d /system/lib/libaudiopolicymanager.so (createAudioPolicyManager+16)
#06 pc 00006d07 /system/lib/libaudiopolicyservice.so
#07 pc 0000ec11 /system/lib/libutils.so (android::RefBase::incStrong(void const*) const+38)
#08 pc 00001d5f /system/bin/mediaserver
#09 pc 0000169d /system/bin/mediaserver
#10 pc 000128f1 /system/lib/libc.so (__libc_init+44)
#11 pc 00001938 /system/bin/mediaserver
stack:
beccc6c8 00000000
beccc6cc 4163db0c /system/lib/hw/audio.primary.tegra.so (list_push_data+24)
beccc6d0 00000000
beccc6d4 0001aba0
beccc6d8 40f4d6a4
beccc6dc 41651468 /system/lib/hw/audio.primary.tegra.so
beccc6e0 00000000
beccc6e4 40275393 /system/lib/libbinder.so (android::Parcel::~Parcel()+8)
beccc6e8 4163fe4c /system/lib/hw/audio.primary.tegra.so
beccc6ec 00000002
beccc6f0 beccc868 [stack]
beccc6f4 40f7a180
beccc6f8 00000001
beccc6fc 00000002
beccc700 beccc868 [stack]
beccc704 beccc870 [stack]
#00 beccc708 beccc7a0 [stack]
beccc70c 00000002
beccc710 00000002
beccc714 401419a7 /system/lib/libaudioflinger.so
beccc718 00000001
beccc71c 40f1b520
beccc720 beccc870 [stack]
beccc724 40f7a180
beccc728 beccc868 [stack]
beccc72c 00000000
beccc730 00000002
beccc734 40142c17 /system/lib/libaudioflinger.so
#01 beccc738 beccc870 [stack]
beccc73c beccc750 [stack]
beccc740 40f170e0
beccc744 401943c1 /system/lib/libutils.so (android::VectorImpl::_grow(unsigned int, unsigned int)+154)
beccc748 00000000
beccc74c 40f73240
beccc750 00000000
beccc754 40f7a1d8
beccc758 40f7a1d8
beccc75c 4019442d /system/lib/libutils.so (android::VectorImpl::insertAt(void const*, unsigned int, unsigned int)+44)
beccc760 beccc78c [stack]
beccc764 40f7a180
beccc768 40fd65f0
beccc76c 00000002
beccc770 beccc7a0 [stack]
beccc774 beccc870 [stack]
........ ........
#02 beccc788 beccc870 [stack]
beccc78c 00000002
beccc790 beccc86c [stack]
beccc794 00000002
beccc798 00000001
beccc79c 40f7a1ac
beccc7a0 40f73240
beccc7a4 40f88280
beccc7a8 40142d31 /system/lib/libaudioflinger.so
beccc7ac beccc7dc [stack]
beccc7b0 00000002
beccc7b4 00000001
beccc7b8 beccc870 [stack]
beccc7bc beccc868 [stack]
beccc7c0 40fd6540
beccc7c4 4081c833 /system/lib/libaudiopolicyservice.so
#03 beccc7c8 40fd65f0
beccc7cc beccc86c [stack]
beccc7d0 40fd65e8
beccc7d4 00000002
beccc7d8 4019a020 /system/lib/libutils.so
beccc7dc 40f7a180
beccc7e0 4083d39b /system/lib/libaudiopolicymanagerdefault.so
beccc7e4 40f88280
beccc7e8 beccc870 [stack]
beccc7ec beccc86c [stack]
beccc7f0 4081c7e1 /system/lib/libaudiopolicyservice.so
beccc7f4 beccc860 [stack]
beccc7f8 40f010b0
beccc7fc 4083bd43 /system/lib/libaudiopolicymanagerdefault.so (android::AudioPolicyManager::AudioPolicyManager(android::AudioPolicyClientInterface*)+974)
#04 beccc800 40fd65f0
beccc804 beccc86c [stack]
beccc808 40fd65e8
beccc80c 00000002
beccc810 0000005a
beccc814 00000000
beccc818 00000001
beccc81c 40f02230
beccc820 40f02230
beccc824 00000000
beccc828 40f882d8
beccc82c 40f882f0
beccc830 4081c7e1 /system/lib/libaudiopolicyservice.so
beccc834 4083ed4e /system/lib/libaudiopolicymanagerdefault.so
beccc838 4083d2ec /system/lib/libaudiopolicymanagerdefault.so
beccc83c 40f88544
........ ........
#05 beccc8d8 b2ebb530
beccc8dc 40f539a0
beccc8e0 beccc8ec [stack]
beccc8e4 40819d0b /system/lib/libaudiopolicyservice.so
#06 beccc8e8 40f539b4
beccc8ec 40f50110
beccc8f0 40f539a0
beccc8f4 40f1b210
beccc8f8 00000000
beccc8fc 40f1b210
beccc900 beccc92c [stack]
beccc904 beccc928 [stack]
beccc908 beccc924 [stack]
beccc90c 40f500c0
beccc910 4027310b /system/lib/libbinder.so
beccc914 40191c13 /system/lib/libutils.so (android::RefBase::incStrong(void const*) const+40)
#07 beccc918 40f539a0
beccc91c 40093d63 /system/bin/mediaserver
#08 beccc920 00000000
beccc924 40f500c0
beccc928 40f72168
beccc92c 40f539a4
beccc930 beccc9e8 [stack]
beccc934 beccc9a0 [stack]
beccc938 00000001
beccc93c beccc98c [stack]
beccc940 becccb44 [stack]
beccc944 00000000
beccc948 00000000
beccc94c 400936a1 /system/bin/mediaserver
#09 beccc950 becccf71 [stack]
beccc954 40122784
beccc958 00000000
beccc95c 00000004
beccc960 401758e1 /system/bin/linker
beccc964 40175da7 /system/bin/linker
beccc968 becccf71 [stack]
beccc96c 40122004
beccc970 00000000
beccc974 4023fdf4
beccc978 40092000 /system/bin/mediaserver
beccc97c 00000000
beccc980 becccf71 [stack]
beccc984 00000000
beccc988 4017a808 /system/bin/linker
beccc98c 40f53940
........ ........
#10 becccb10 becccb28 [stack]
becccb14 00000000
becccb18 00000000
becccb1c 00000000
becccb20 00000000
becccb24 4009393c /system/bin/mediaserver
#11 becccb28 40095d50 /system/bin/mediaserver
becccb2c 40095d58 /system/bin/mediaserver
becccb30 40095d64 /system/bin/mediaserver
becccb34 becccb40 [stack]
becccb38 00000000
becccb3c 4016f6df /system/bin/linker (__dl__ZN20LinkerBlockAllocator11protect_allEi+20)
becccb40 00000001
becccb44 becccc34 [stack]
becccb48 00000000
becccb4c becccc4c [stack]
becccb50 becccc89 [stack]
becccb54 becccc9c [stack]
becccb58 beccccb1 [stack]
becccb5c becccccc [stack]
becccb60 beccccdf [stack]
becccb64 beccccf8 [stack]
cannot get siginfo for 5785: Invalid argument
--------- log main
11-12 19:32:44.659 5780 5780 I mediaserver: ServiceManager: 0x40f500c0
11-12 19:32:44.659 5780 5780 I AudioFlinger: Using default 3000 mSec as standby time.
11-12 19:32:44.711 5780 5780 I CameraService: CameraService started (pid=5780)
11-12 19:32:44.711 5780 5780 I CameraService: Loaded "Tegra 3 Camera Wrapper" camera module
11-12 19:32:44.712 5780 5780 V CameraWrapper: camera_get_number_of_cameras
11-12 19:32:44.712 5780 5780 V CameraWrapper: check_vendor_module
11-12 19:32:44.720 5780 5780 E HAL : load: module=/system/lib/hw/vendor-camera.tegra.so
11-12 19:32:44.720 5780 5780 E HAL : dlopen failed: could not load library "libcameraface.so" needed by "vendor-camera.tegra.so"; caused by cannot locate symbol "_ZN7android10VectorImpl19reservedVectorImpl1Ev" referenced by "libcameraface.so"...
11-12 19:32:44.720 5780 5780 E CameraWrapper: failed to open vendor camera module
11-12 19:32:44.722 5780 5780 I AudioPolicyService: AudioPolicyService CSTOR in new mode
11-12 19:32:44.723 5780 5780 I AudioPolicyManager: loadAudioPolicyConfig() loaded /system/etc/audio_policy.conf
11-12 19:32:44.726 5780 5780 W linker : libaudioavp.so has text relocations. This is wasting memory and prevents security hardening. Please fix.
11-12 19:32:45.051 5780 5780 I AudioFlinger: loadHwModule() Loaded primary audio interface from Nvidia Audio HW HAL (audio) handle 1
You have to update the headers in tegra3-common/include. They have to match the ones in libhardware/include and system/core/include with the tegra additions.
i would really like to see this gets through to the end and becomes available.
hope you find the help you need pal, good luck.
i hope this gets some attention really
few people are still sticking around with the One X
keep going m8 !
cheers
Hero!
You are my hero man! Keep doin this, i love you!!! :good::good::laugh::laugh::victory::victory:
oRmA2 said:
i hope this gets some attention really
few people are still sticking around with the One X
keep going m8 !
cheers
Click to expand...
Click to collapse
Well, to be fair, its still a damn good phone (if you exclude all the issues it could have) and there is absolutly no reason whatsoever why this can't get lollipop. Hell, if nexus 7 2012 got it. And its using a slower bin of tegra 3
Thomy is here to rescue he already had posted screenshot of Android L on our device in CM11 thread.
He has kept us a Christmas Surprise like last year.
Long live HOX
http://forum.xda-developers.com/showthread.php?p=56704198
Be nice to see one x get 5.0
Sent from my HTC One_M8 using XDA Free mobile app
Nice to see a serious dev (Thomy) is working on a Lollipop ROM.
Meanwhile, I updated the header files and am getting similar errors :
Code:
F/libc ( 449): Fatal signal 11 (SIGSEGV), code 1, fault addr 0x0 in tid 462 (IMCdownload)
I/DEBUG ( 152): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
I/DEBUG ( 152): Build fingerprint: 'Android/full_endeavoru/endeavoru:5.0/LRX21M/billy11140702:userdebug/test-keys'
I/DEBUG ( 152): Revision: '0'
I/DEBUG ( 152): ABI: 'arm'
I/DEBUG ( 152): pid: 449, tid: 462, name: IMCdownload >>> IMCdownload <<<
I/DEBUG ( 152): signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x0
I/DEBUG ( 152): r0 00000001 r1 00008000 r2 00008000 r3 00000000
I/DEBUG ( 152): r4 404aa1c0 r5 00008000 r6 00008000 r7 400c1094
I/DEBUG ( 152): r8 400c10f4 r9 00000000 sl 400ca5b0 fp 400c10ec
I/DEBUG ( 152): ip ffffffd4 sp 406b5d58 lr 400306cf pc 00000000 cpsr 800f0010
I/DEBUG ( 152):
I/DEBUG ( 152): backtrace:
I/DEBUG ( 152): #00 pc 00000000 <unknown>
I/DEBUG ( 152): #01 pc 0000d6cd /system/bin/IMCdownload
I/DEBUG ( 152): #02 pc 0000d7af /system/bin/IMCdownload
I/DEBUG ( 152): #03 pc 0000fdcb /system/bin/IMCdownload
I/DEBUG ( 152): #04 pc 000134ef /system/bin/IMCdownload
I/DEBUG ( 152): #05 pc 00005289 /system/bin/IMCdownload
I/DEBUG ( 152): #06 pc 000165e7 /system/lib/libc.so (__pthread_start(void*)+30)
I/DEBUG ( 152): #07 pc 000145db /system/lib/libc.so (__start_thread+6)
F/libc ( 154): Fatal signal 11 (SIGSEGV), code 1, fault addr 0x6 in tid 154 (mediaserver)
Code:
I/DEBUG ( 152): Build fingerprint: 'Android/full_endeavoru/endeavoru:5.0/LRX21M/billy11140702:userdebug/test-keys'
I/DEBUG ( 152): Revision: '0'
I/DEBUG ( 152): ABI: 'arm'
I/DEBUG ( 152): pid: 154, tid: 154, name: mediaserver >>> /system/bin/mediaserver <<<
I/DEBUG ( 152): signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x6
I/DEBUG ( 152): r0 40f010d0 r1 00000002 r2 00000002 r3 33333333
I/DEBUG ( 152): r4 40f010d0 r5 00000002 r6 40f7a180 r7 55555555
I/DEBUG ( 152): r8 33333333 r9 bed337a0 sl 00000002 fp 00000002
I/DEBUG ( 152): ip 55555555 sp bed33708 lr 4150e118 pc 4150e13c cpsr 200f0010
I/DEBUG ( 152):
I/DEBUG ( 152): backtrace:
I/DEBUG ( 152): #00 pc 0001713c /system/lib/hw/audio.primary.tegra.so
I/DEBUG ( 152): #01 pc 0001fc15 /system/lib/libaudioflinger.so
I/DEBUG ( 152): #02 pc 0001fd69 /system/lib/libaudioflinger.so
I/DEBUG ( 152): #03 pc 00009831 /system/lib/libaudiopolicyservice.so
I/DEBUG ( 152): #04 pc 00019d41 /system/lib/libaudiopolicymanagerdefault.so (android::AudioPolicyManager::AudioPolicyManager(android::AudioPolicyClientInterface*)+972)
I/DEBUG ( 152): #05 pc 0000049d /system/lib/libaudiopolicymanager.so (createAudioPolicyManager+16)
I/DEBUG ( 152): #06 pc 00006d07 /system/lib/libaudiopolicyservice.so
I/DEBUG ( 152): #07 pc 0000ec11 /system/lib/libutils.so (android::RefBase::incStrong(void const*) const+38)
I/DEBUG ( 152): #08 pc 00001d5f /system/bin/mediaserver
I/DEBUG ( 152): #09 pc 0000169d /system/bin/mediaserver
I/DEBUG ( 152): #10 pc 000128f1 /system/lib/libc.so (__libc_init+44)
I/DEBUG ( 152): #11 pc 00001938 /system/bin/mediaserver
F/libc ( 489): Fatal signal 11 (SIGSEGV), code 1, fault addr 0x6 in tid 489 (mediaserver)
The IMCdownload crash is tricky. It crashes because various radio related things fail before it is executed. The tightened security in Lollipop is the reason for this. The crash is mostly resolved now. Check the CM tegra3-commons, vendor and http://review.cyanogenmod.org/#/c/78610/.
The mediaserver crash is because you didn't update the include headers correctly. Don't just replace them. Pay attention to the HTC_TEGRA_AUDIO define. There are other, more subtle, changes. But they shouldn't cause crashes.
If you're still interested in building it from source check the CM repositories. They're mostly up to date plus some patches in Gerrit. The endeavoru specific stuff is currently here https://github.com/thoemy/android_device_htc_endeavoru/tree/cm-12.0.
Thömy said:
The IMCdownload crash is tricky. It crashes because various radio related things fail before it is executed. The tightened security in Lollipop is the reason for this. The crash is mostly resolved now. Check the CM tegra3-commons, vendor and http://review.cyanogenmod.org/#/c/78610/.
The mediaserver crash is because you didn't update the include headers correctly. Don't just replace them. Pay attention to the HTC_TEGRA_AUDIO define. There are other, more subtle, changes. But they shouldn't cause crashes.
If you're still interested in building it from source check the CM repositories. They're mostly up to date plus some patches in Gerrit. The endeavoru specific stuff is currently here https://github.com/thoemy/android_device_htc_endeavoru/tree/cm-12.0.
Click to expand...
Click to collapse
Thanks for the insight. I started building this ROM thinking it would take forever for CM to start working on my device. Seeing you're working on it, I think the best is to let you do your stuff!
Thanks again!
Hi,
Is there anything new with Android L for our HOX ?
Thanks
Hi guys,
I see on the sibling HTX One XL (evita) XDA forum they got 5.0.1 unofficial CM12 nightly, two of them.
People there mainly report it's working fine, and that phone is very similar to this one.
So I wonder, is our version really so different, can we insert Tegra 3 support to that ROM?
Thx.
nuhi said:
Hi guys,
I see on the sibling HTX One XL (evita) XDA forum they got 5.0.1 unofficial CM12 nightly, two of them.
People there mainly report it's working fine, and that phone is very similar to this one.
So I wonder, is our version really so different, can we insert Tegra 3 support to that ROM?
Thx.
Click to expand...
Click to collapse
The only thing those devices have in common is the looks. Everything else is different.
@Thömy
Do you have any news for us about android 5?

Categories

Resources