Building android-4.2.2 JellyBean on Pandaboard/Pandaboard ES

Google maintainers advise to always repo sync the master branch for panda claiming it’s the most stable , but in my opinion they should focus on stabilizing tags. Tags should represent a stable snapshot of he source tree to build and run . That’s what a tag means in Software Engineering anyway !

This post is a translated version of the Japanese post on blog.sola-dolphin-1.net reposted under permission of the main author  that describes how to build Android JB tag android-4.2.2_r1 for pandaboard, of course some patching is required to get it work, you can download all the patches required from this mirror or follow the steps to get them one by one from the main mirror.

android-4.2.2

– prepare the directory

$ mkdir ~/panda_work
$ export PANDA_WORK=~/panda_work
$ mkdir ~/panda_work/android
$ export ANDROID_ROOT=~/panda_work/android

– init the repo

$ cd $ANDROID_ROOT
$ repo init -u https://android.googlesource.com/platform/manifest -b android-4.2.2_r1
$ repo sync

notes:

  1. to save time you can use an old tree and repo init inside it’s dir , then sync will grab only the differences
  2. in case repo sync hangs use repo sync -j1 to disable multi threading also check repo sync -h for other options

– get the gpu user space binaries

$ wget https://dl.google.com/dl/android/aosp/imgtec-panda-20120807-c4e99e89.tgz
$ tar zxvf imgtec-panda-20120807-c4e99e89.tgz
$ ./extract-imgtec-panda.sh

– apply the patches

$ cd $ANDROID_ROOT/build/
$ wget http://sola-dolphin-1.net/data/Panda/0001-panda-jb4.2_build.patch
$ git apply 0001-panda-jb4.2_build.patch
$ cd $ANDROID_ROOT/device/ti/panda/
$ wget http://sola-dolphin-1.net/data/Panda/0001-panda-jb4.2_device-ti-panda.patch
$ git apply 0001-panda-jb4.2_device-ti-panda.patch
$ cd $ANDROID_ROOT/hardware/ti/omap4xxx/
$ wget http://sola-dolphin-1.net/data/Panda/0001-panda-jb4.2_hardware-ti-omap4xxx.patch
$ git apply 0001-panda-jb4.2_hardware-ti-omap4xxx.patch
$ cd $ANDROID_ROOT/hardware/ti/wpan/
$ wget http://sola-dolphin-1.net/data/Panda/0001-panda-jb4.2_hardware-ti-wpan.patch
$ git apply 0001-panda-jb4.2_hardware-ti-wpan.patch

– you can either use fastboot to format and flash the images or use this script instead

$ cd $ANDROID_ROOT
$ wget http://sola-dolphin-1.net/data/Panda/0001-add-mksdcard_pandaboard.sh.patch
$ git apply 0001-add-mksdcard_pandaboard.sh.patch

– build the tree

$ cd $ANDROID_ROOT
$ source build/envsetup.sh
$ lunch full_panda-userdebug
$ make -j4

– format and flash from a ubuntu machine, /dev/sdx is the the sdcard device

$ LANG=C sudo ./mksdcard_pandaboard.sh /dev/sdX $ANDROID_ROOT

kernel

– prepare the environment

$ export ARCH=arm
$ export CROSS_COMPILE=$ANDROID_ROOT/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/bin/arm-eabi-

– clone the repo

$ cd $PANDA_WORK
$ git clone https://android.googlesource.com/kernel/omap.git kernel
$ cd kernel
$ git checkout -b android-omap-panda-3.0 origin/android-omap-panda-3.0

– build with panda config

$ make panda_defconfig
$ make
$ cp -a arch/arm/boot/zImage $ANDROID_ROOT/device/ti/panda/kernel

note: though bootloader and xloader images are provided within device/ti/panda dir , you can build them from source using the following instructions

xloader

– build xloader

$ cd $PANDA_WORK
$ git clone git://git.omapzoom.org/repo/x-loader.git
$ cd x-loader
$ git checkout -b omap4_dev origin/omap4_dev
$ make omap4430panda_config
$ make ift
$ cp -a MLO $ANDROID_ROOT/device/ti/panda/xloader.bin

bootlader(uboot)

– clone the repo

$ cd $PANDA_WORK
$ git clone git://git.omapzoom.org/repo/u-boot.git
$ cd u-boot
$ git checkout -b omap4_dev origin/omap4_dev

– change the boot parameters

$ wget http://android-development-environment.googlecode.com/files/0001-change-bootarges.patch
$ git apply 0001-change-bootarges.patch

– build

$ make omap4430panda_config
$ make
$ cp -a u-boot.bin $ANDROID_ROOT/device/ti/panda/bootloader.bin

29 responses to “Building android-4.2.2 JellyBean on Pandaboard/Pandaboard ES”

  1. I saw your opening comment and I thought I would reply. Focusing on “TAGS” is an excellent idea, but let me elaborate.

    There are two types of developers in the world (in this context). Those that work on basic board functionality, and don’t truly care about stability. To them, a baseline that always has the latest code, has the latest changes from all the participants, and has the most recent, mosto up-to-date information built into it, is by definition stable. From their perspective, they are correct.

    From the perspective of actually creating a product, developing upon a platform, and delivering something to the end customer, using the latest main branch is a bad idea. There are many types of people who do development on a platform, from modem engineers to apps engineers, and they may not particularly care that the latest kernel improvements have now been optimized and the latest code is in the mainline. What they do care, instead, is that the baseline boots, runs, doesn’t crash for 20 days, works properly with the modem, and supports the defined APIs. Using the latest main branch would be a disaster for them.

    It’s a major problem. BSP engineers tend to be particularly confident in their baseline, want to work quickly, and are content to throw their changes into the master branch as they see fit. This is completely inappropriate for the team at large.

    Google is no exception, and while I was working with them, had no idea what stability means. They may understand now, I am sure Motorola is educating them (or maybe Motorola is so decimated they have lost their path as well).

    Like

    • Great elaboration , just saying that I had a very hard and confusing moment in building either the main branch or recent tags . Being ok with a rapidly evolving master branch but spending hours trying to stabilize a build from recent tags was very annoying , redundant and anti-productive.

      Like

  2. Hi,
    I am using pandaboard 4430 I have downloaded the code and build it successfully but I am facing the issue when ever i attempt to open the browser the board gets hanged even its not rebooting. I have enabled the watchdog timer in kernel code but there is no use can you please help me to sort out this issue

    Like

  3. i got these following errors… im follow those same steps and package.

    how to resolve it or any thing i missed????

    ERROR:

    Note: com.google.common.base.FinalizableReferenceQueue accesses a method ‘startFinalizer(java.lang.Class,java.lang.Object)’ dynamically
    frameworks/base/core/java/com/android/internal/widget/LockPatternUtils.java:1280: error 114: @deprecated tag with no explanatory comment
    DroidDoc took 284 sec. to write docs to out/target/common/docs/doc-comment-check

    Note: there were 2 accesses to class members by means of introspection.
    You should consider explicitly keeping the mentioned class members
    (using ‘-keep’ or ‘-keepclassmembers’).
    make: *** [out/target/common/docs/doc-comment-check-timestamp] Error 45
    make: *** Waiting for unfinished jobs….
    Preparing output jar [/home/test/arun/android4.2.2/out/target/common/obj/APPS/Calculator_intermediates/proguard.classes.jar]
    Copying resources from program jar [/home/test/arun/android4.2.2/out/target/common/obj/APPS/Calculator_intermediates/classes .jar]

    Like

    • Compiling SDK Stubs: out/target/common/obj/JAVA_LIBRARIES/android_stubs_current_intermediates/classes.jar
      Copying: out/target/common/obj/APPS/SystemUI_intermediates/classes-jarjar.jar
      Copying: out/target/common/obj/APPS/TelephonyProvider_intermediates/proguard.classes.dex
      frameworks/base/api/17.txt:21088: error 9: Removed public constructor SmsMessage()
      frameworks/base/api/17.txt:21089: error 9: Removed public method android.telephony.gsm.SmsMessage.calculateLength
      frameworks/base/api/17.txt:21090: error 9: Removed public method android.telephony.gsm.SmsMessage.calculateLength
      frameworks/base/api/17.txt:21091: error 9: Removed public method android.telephony.gsm.SmsMessage.createFromPdu
      frameworks/base/api/17.txt:21092: error 9: Removed public method android.telephony.gsm.SmsMessage.getDisplayMessageBody
      frameworks/base/api/17.txt:21093: error 9: Removed public method android.telephony.gsm.SmsMessage.getDisplayOriginatingAddress
      frameworks/base/api/17.txt:21094: error 9: Removed public method android.telephony.gsm.SmsMessage.getEmailBody
      frameworks/base/api/17.txt:21095: error 9: Removed public method android.telephony.gsm.SmsMessage.getEmailFrom
      frameworks/base/api/17.txt:21096: error 9: Removed public method android.telephony.gsm.SmsMessage.getIndexOnSim
      .
      .
      .
      .
      out/target/common/obj/PACKAGING/public_api.txt:21131: error 12: Class android.telephony.gsm.SmsMessage changed static qualifier

      ******************************
      You have tried to change the API from what has been previously released in
      an SDK. Please fix the errors listed above.
      ******************************

      make: *** [out/target/common/obj/PACKAGING/checkapi-last-timestamp] Error 38
      make: *** Waiting for unfinished jobs….
      out/target/common/obj/JAVA_LIBRARIES/android_stubs_current_intermediates/src/android/telephony/gsm/SmsMessage.java:3: modifier static not allowed here
      public static class SmsMessage
      ^
      out/target/common/obj/JAVA_LIBRARIES/android_stubs_current_intermediates/src/java/security/cert/PKIXBuilderParameters.java:5: warning: [unchecked] unchecked conversion
      found : java.util.Set
      required: java.util.Set

      .
      .
      .
      .

      any way all images are created and i tried to flash to memory card using mksdcard_pandaboard.sh.

      booting is happen but when i click settings or any app system goes to hang… how to solve this issue…

      any one give me some hints….

      im using default xloder,boot loader and kernel..

      Like

      • You shouldn’t be getting any errors if you followed the exact same steps, my best guess is these errors are because different JDK version . Try to downgrade to JDK 1.6

        Like

      • ya got it… but it get hang if i press any apps/setings…. some time booting time also get STUCK… any permiossion problem… ???

        and i want to know who to setup P2P ????

        can u pls give some tips … i want to run in terminal… SOFTAP and STATION mode are working fine in terminal…..

        Like

  4. This might be a silly question, but why use android-omap-panda-3.0 as a kernel?
    For me it builds 3.0.31-gcb5fc50, but I was expecting JB to use a 3.2 kernel…

    Like

    • can u please share the path , from where i need to take the Kenel 3.2 and conf fiel fro panda .

      i have some queries :
      in kernel 3.0 wl1271 firmware (Rev 6.3.0.0.77) has the capability of P2P ??

      i got some prebild image from linaro, they using kernel 3.2 and P2P supporting.

      i download the kernel 3.2 from googlesource, and applied the panda_defconfig (kernel 3.0) for building.
      it not booting in my panda board.. i need to change any thing more for that…
      can u share proper conf file and kernel source path for pandaboaed REV A2

      i got these errors

      0.728729] io scheduler cfq registered (default)
      [ 0.731170] OMAP DSS rev 4.0
      [ 0.733795] omap_hwmod: dss_core: _wait_target_disable failed
      [ 0.737823] omap_hwmod: dss_core: _wait_target_disable failed
      [ 0.740478] omap_hwmod: dss_dispc: _wait_target_disable failed
      .
      .
      .
      .
      .
      init: /dev/hw_random not found
      [ 16.974426] init: could not open /dev/keychord
      [ 16.981475] init: cannot open ‘/initlogo.rle’
      [ 36.998291] fs_mgr: Cannot mount filesystem on /dev/block/platform/omap/omap_hsmmc.0/by-name/system at /system
      [ 37.008911] init: fs_mgr_mount_all returned an error
      [ 37.023742] init: /dev/hw_random not found
      [ 37.028259] init: Unable to open persistent property directory /data/property errno: 2
      [ 37.052764] init: cannot find ‘/system/bin/servicemanager’, disabling ‘servicemanager’
      [ 37.061248] init: cannot find ‘/system/bin/vold’, disabling ‘vold’
      [ 37.068054] init: cannot find ‘/vendor/bin/pvrsrvctl’, disabling ‘pvrsrvctl’
      [ 37.073425] healthd: wakealarm_init: timerfd_create failed
      [ 37.081542] init: cannot find ‘/system/bin/setup_fs’, disabling ‘setup_fs’
      [ 37.088867] init: cannot find ‘/system/bin/uim-sysfs’, disabling ‘uim’
      [ 37.096679] init: cannot find ‘/system/bin/netd’, disabling ‘netd’
      [ 37.103302] init: cannot find ‘/system/bin/debuggerd’, disabling ‘debuggerd’
      [ 37.110839] init: cannot find ‘/system/bin/rild’, disabling ‘ril-daemon’
      [ 37.118011] init: cannot find ‘/system/bin/surfaceflinger’, disabling ‘surfaceflinger’
      [ 37.126464] init: cannot find ‘/system/bin/app_process’, disabling ‘zygote’
      [ 37.134094] init: cannot find ‘/system/bin/drmserver’, disabling ‘drm’
      [ 37.141082] init: cannot find ‘/system/bin/mediaserver’, disabling ‘media’
      [ 37.148376] init: cannot find ‘/system/bin/installd’, disabling ‘installd’
      [ 37.155731] init: cannot find ‘/system/etc/install-recovery.sh’, disabling ‘flash_recovery’
      [ 37.164642] init: cannot find ‘/system/bin/keystore’, disabling ‘keystore’
      [ 37.172454] init: property ‘ro.product.manufacturer’ doesn’t exist while expanding ‘${ro.product.manufacturer}’
      [ 37.183166] init: cannot expand ‘${ro.product.manufacturer}’ while writing to ‘/sys/class/android_usb/android0/iManufacturer’
      [ 37.195159] init: property ‘ro.product.model’ doesn’t exist while expanding ‘${ro.product.model}’
      [ 37.204559] init: cannot expand ‘${ro.product.model}’ while writing to ‘/sys/class/android_usb/android0/iProduct’
      [ 37.218933] init: property ‘sys.powerctl’ doesn’t exist while expanding ‘${sys.powerctl}’
      [ 37.227783] init: powerctl: cannot expand ‘${sys.powerctl}’
      [ 37.233703] init: property ‘sys.sysctl.extra_free_kbytes’ doesn’t exist while expanding ‘${sys.sysctl.extra_free_kbytes}’
      [ 37.245300] init: cannot expand ‘${sys.sysctl.extra_free_kbytes}’ while writing to ‘/proc/sys/vm/extra_free_kbytes’
      [ 37.256408] init: cannot find ‘/system/bin/sh’, disabling ‘console’
      [ 42.299835] healthd: wakealarm_init: timerfd_create failed
      [ 47.354461] healthd: wakealarm_init: timerfd_create failed
      [ 52.424743] healthd: wakealarm_init: timerfd_create failed
      [ 57.487243] healthd: wakealarm_init: timerfd_create failed
      [ 57.494049] init: critical process ‘healthd’ exited 4 times in 4 minutes; rebooting into recovery mode
      [ 57.505279] SysRq : Emergency Remount R/O
      [ 57.510437] Emergency Remount complete
      [ 57.536865] omap_hwmod: dss_dispc: _wait_target_disable failed
      [ 57.543518] Restarting system with command ‘recovery’.

      Like

    • Did you try it ? Did it build and boot successfully ? if yes, then please share your thoughts here. Note that these instructions will only work for JB 4.2.2 and I can’t assure it will work for any other version.

      Like

      • In the end I just stuck with the linaro 13-07 build -> http://releases.linaro.org/13.07/android/panda
        That one has a 3.2 kernel, and it boots fine on PandaBoard ES.

        I build the kernel from source (using android-ndk-r9c – I don’t even need a 64-bit machine) and replace the uImage in boot.tar.bz2.
        The rest of the images (pandaboard.img.bz2, system.tar.bz2, userdata.tar.bz2) are just copied from linaro.

        Like

      • Linaro have great builds , but you can’t ensure their builds are vanilla (not patched) . If u have no problems with that then Linaro would be a great choice.

        Like

  5. hello sir,
    I got the following error after running repo sync:

    Fetching projects: 100% (329/329), done.
    Deleting obsolete path /home/android/panda/android/art
    Deleting obsolete path /home/android/panda/android/developers/build
    Deleting obsolete path /home/android/panda/android/developers/demos
    Deleting obsolete path /home/android/panda/android/developers/docs
    Deleting obsolete path /home/android/panda/android/developers/samples/android
    Deleting obsolete path /home/android/panda/android/device/generic/mini-emulator-armv7-a-neon
    Deleting obsolete path /home/android/panda/android/device/generic/mini-emulator-mips
    Deleting obsolete path /home/android/panda/android/device/generic/mini-emulator-x86
    Deleting obsolete path /home/android/panda/android/device/linaro/arndale
    Deleting obsolete path /home/android/panda/android/device/linaro/common
    Deleting obsolete path /home/android/panda/android/device/linaro/fujitsu
    Deleting obsolete path /home/android/panda/android/device/linaro/hi4511
    Deleting obsolete path /home/android/panda/android/device/linaro/pandaboard
    Deleting obsolete path /home/android/panda/android/device/linaro/vexpress
    Deleting obsolete path /home/android/panda/android/device/samsung/proprietary-open
    Deleting obsolete path /home/android/panda/android/device/ti/proprietary-open
    Deleting obsolete path /home/android/panda/android/device/ti/uim
    Deleting obsolete path /home/android/panda/android/external/android_input_bridge
    Deleting obsolete path /home/android/panda/android/external/busybox
    Deleting obsolete path /home/android/panda/android/external/ceres-solver
    Deleting obsolete path /home/android/panda/android/external/chromium-libpac
    Deleting obsolete path /home/android/panda/android/external/chromium_org
    Deleting obsolete path /home/android/panda/android/external/droiddriver
    Deleting obsolete path /home/android/panda/android/external/ffmpeg
    error: Cannot remove project “external/gator”: uncommitted changes are present
    commit changes, then run sync again

    Like

  6. Hi aabdelfattah
    I followed the above procedure . Everything went fine but it gets hang if any application or settings is pressed.…. And also there is inconsistency in booting (As mentioned by Arun) .
    I downgraded java to 1.6 also..but still i face the same issue…

    Like

  7. Hi
    Logcat doesn’t give any output when the application/settings is clicked . The minicom terminal also freezes when it hangs.
    Inconsistent booting in the sense , sometimes the board boots completely and i am able to see the home screen in DVI monitor and sometimes only “Android” logo is getting displayed for infinite time.

    Like

    • This is wierd .. what kind of crash is that ? Even a kernel panic won’t hang minicom.

      Regarding booting issues , i encountered them for 2 instances :
      – when the graphics binaries in user space won’t match the graphics driver in kernel space but that won’t be ur case because it wouldn’t boot at all not randomly.
      – sometimes it won’t boot and reflashing the userdata partition or other partitions solves the issue.

      Try to dump logcat and minicom outputs somewhere and google them or paste them here.

      Hope that helps,
      Ahmed

      Like

      • Hi Ahmed Below is the log of minicom and logcat Minicom log *************************************************************************************** U-Boot 1.1.4-g622fcfe5-dirty (Apr 30 2014 – 13:44:39) Load address: 0x80e80000 DRAM: 1024 MB Flash: 0 kB Using default environment In: serial Out: serial Err: serial Battery not detected efi partition table: 2048 8M boot 18432 488M system 1017856 488M cache 2017280 954M userdata 3971072 953M media Net: KS8851SNL Hit any key to stop autoboot: 1 0 kernel @ 80008000 (3694868) ramdisk @ 81000000 (183334) I2C read: I/O error Starting kernel … Uncompressing Linux… done, booting the kernel. [ 0.000000] Initializing cgroup subsys cpu [ 0.000000] Linux version 3.0.31-gcb5fc50 (gcc version 4.6.x-google 20120106 (prerelease) (GCC) ) #1 SMP PREEMPT Tue Oct 15 00:10:42 IST 2013 [ 0.000000] CPU: ARMv7 Processor [411fc092] revision 2 (ARMv7), cr=10c5387d [ 0.000000] CPU: VIPT nonaliasing data cache, VIPT aliasing instruction cache [ 0.000000] Machine: OMAP4 Panda board [ 0.000000] Truncating RAM at 80000000-bfffffff to -afffffff (vmalloc region overlap). [ 0.000000] Reserving 16777216 bytes SDRAM for VRAM [ 0.000000] Memory policy: ECC disabled, Data cache writealloc [ 0.000000] OMAP4430 ES2.2 [ 0.000000] SRAM: Mapped pa 0×40300000 to va 0xfe400000 size: 0xd000 [ 0.000000] On node 0 totalpages: 190208 [ 0.000000] free_area_init_node: node 0, pgdat c07617a0, node_mem_map c08e1000 [ 0.000000] Normal zone: 1536 pages used for memmap [ 0.000000] Normal zone: 0 pages reserved [ 0.000000] Normal zone: 188672 pages, LIFO batch:31 [ 0.000000] PERCPU: Embedded 7 pages/cpu @c0eeb000 s6944 r8192 d13536 u32768 [ 0.000000] pcpu-alloc: s6944 r8192 d13536 u32768 alloc=8*4096 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 188672 [ 0.000000] Kernel command line: console=ttyO2,115200n8 mem=1G androidboot.console=ttyO2 androidboot.serialno=0A3B951B0C01300D androidboot.bootloader=U-Boot_1.1.4-g622fcfe5-dirty [ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes) [ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes) [ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes) [ 0.000000] Memory: 512MB 231MB = 743MB total [ 0.000000] Memory: 744528k/744528k available, 41904k reserved, 0K highmem [ 0.000000] Virtual kernel memory layout: [ 0.000000] vector : 0xffff0000 – 0xffff1000 ( 4 kB) [ 0.000000] fixmap : 0xfff00000 – 0xfffe0000 ( 896 kB) [ 0.000000] DMA : 0xffc00000 – 0xffe00000 ( 2 MB) [ 0.000000] vmalloc : 0xf0800000 – 0xf8000000 ( 120 MB) [ 0.000000] lowmem : 0xc0000000 – 0xf0000000 ( 768 MB) [ 0.000000] modules : 0xbf000000 – 0xc0000000 ( 16 MB) [ 0.000000] .init : 0xc0008000 – 0xc0046000 ( 248 kB) [ 0.000000] .text : 0xc0046000 – 0xc0701000 (6892 kB) [ 0.000000] .data : 0xc0702000 – 0xc0761f80 ( 384 kB) [ 0.000000] .bss : 0xc0761fa4 – 0xc08e0d10 (1532 kB) [ 0.000000] SLUB: Genslabs=13, HWalign=32, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 [ 0.000000] Preemptible hierarchical RCU implementation. [ 0.000000] NR_IRQS:410 [ 0.000000] omap_hwmod: dpll_mpu_m2_ck: missing clockdomain for dpll_mpu_m2_ck. [ 0.000000] OMAP clockevent source: GPTIMER1 at 32768 Hz [ 0.000000] sched_clock: 32 bits at 32kHz, resolution 30517ns, wraps every 131071999ms [ 0.000061] Calibrating delay loop… 1194.24 BogoMIPS (lpj=4665344) [ 0.015655] pid_max: default: 32768 minimum: 301 [ 0.070800] Mount-cache hash table entries: 512 [ 0.070800] Initializing cgroup subsys debug [ 0.070800] Initializing cgroup subsys cpuacct [ 0.070800] Initializing cgroup subsys freezer [ 0.072113] CPU: Testing write buffer coherency: ok [ 0.072387] L310 cache controller enabled [ 0.072387] l2x0: 16 ways, CACHE_ID 0x410000c4, AUX_CTRL 0x5e470000, Cache size: 1048576 B [ 0.151153] CPU1: Booted secondary processor [ 0.181884] Brought up 2 CPUs [ 0.181915] SMP: Total of 2 processors activated (2388.48 BogoMIPS). [ 0.182220] omap_hwmod: _populate_mpu_rt_base found no _mpu_rt_va for emif_fw [ 0.186248] omap_hwmod: _populate_mpu_rt_base found no _mpu_rt_va for l3_instr [ 0.186248] omap_hwmod: _populate_mpu_rt_base found no _mpu_rt_va for l3_main_1 [ 0.186279] omap_hwmod: _populate_mpu_rt_base found no _mpu_rt_va for l3_main_2 [ 0.186309] omap_hwmod: _populate_mpu_rt_base found no _mpu_rt_va for l4_abe [ 0.186309] omap_hwmod: _populate_mpu_rt_base found no _mpu_rt_va for l4_cfg [ 0.186340] omap_hwmod: _populate_mpu_rt_base found no _mpu_rt_va for l4_per [ 0.186340] omap_hwmod: _populate_mpu_rt_base found no _mpu_rt_va for l4_wkup [ 0.186370] omap_hwmod: _populate_mpu_rt_base found no _mpu_rt_va for mpu_private [ 0.186431] omap_hwmod: _populate_mpu_rt_base found no _mpu_rt_va for sl2if [ 0.186431] omap_hwmod: _populate_mpu_rt_base found no _mpu_rt_va for usbhs_ohci [ 0.186431] omap_hwmod: _populate_mpu_rt_base found no _mpu_rt_va for usbhs_ehci [ 0.186523] omap_hwmod: l3_div_ck: missing clockdomain for l3_div_ck. [ 0.195159] omap_hwmod: mcpdm: cannot be enabled (3) [ 0.198059] print_constraints: dummy: [ 0.198059] NET: Registered protocol family 16 [ 0.198059] GPMC revision 6.0 [ 0.198608] EMIF0 is enabled with IRQ142 [ 0.200073] EMIF1 is enabled with IRQ143 [ 0.200073] Last reset was cold reset (PRM_RSTST=0×1) [ 0.200073] [ 0.200134] HSI: device registered as omap_hwmod: hsi [ 0.200805] OMAP GPIO hardware version 0.1 [ 0.202514] omap_mux_init: Add partition: #1: core, flags: 2 [ 0.202514] omap_mux_init: Add partition: #2: wkup, flags: 2 [ 0.204620] ram_console: got buffer at a0000000, size 200000 [ 0.204620] ram_console: uncorrectable error in header [ 0.204864] ram_console: no valid data in buffer (sig = 0x8a83c280) [ 0.215667] console [ram-1] enabled [ 0.215728] omap_mux_get_by_name: Could not find signal uart1_cts.uart1_cts [ 0.217193] omap_hwmod_mux_init: Could not allocate device mux entry [ 0.229583] OMAP DMA hardware revision 0.0 [ 0.238494] bio: create slab at 0 [ 0.239105] print_constraints: vwl1271: 1800 mV [ 0.239105] SCSI subsystem initialized [ 0.240905] usbcore: registered new interface driver usbfs [ 0.240905] usbcore: registered new interface driver hub [ 0.241455] usbcore: registered new device driver usb [ 0.252197] omap_i2c omap_i2c.1: bus 1 rev4.0 at 400 kHz [ 0.252197] Skipping twl internal clock init and using bootloader value (unknown osc rate) [ 0.253631] twl6030: PIH (irq 39) chaining IRQs 368..387 [ 0.255767] print_constraints: VUSB: 3300 mV normal standby [ 0.458496] twl6030_usb twl6030_usb: Initialized TWL6030 USB module [ 0.459503] print_constraints: VMMC: 1200 3000 mV at 3000 mV normal standby [ 0.460174] print_constraints: VPP: 1800 2500 mV at 1900 mV normal standby [ 0.460815] print_constraints: VCXIO: 1800 mV normal standby [ 0.460998] print_constraints: VDAC: 1800 mV normal standby [ 0.461944] print_constraints: VAUX2_6030: 1200 2800 mV at 1800 mV normal standby [ 0.462707] print_constraints: VAUX3_6030: 1000 3000 mV at 1200 mV normal standby [ 0.463806] print_constraints: CLK32KG: [ 0.463806] print_constraints: VANA: 2100 mV normal standby [ 0.478790] omap_i2c omap_i2c.2: bus 2 rev4.0 at 400 kHz [ 0.494415] omap_i2c omap_i2c.3: bus 3 rev4.0 at 100 kHz [ 0.510040] omap_i2c omap_i2c.4: bus 4 rev4.0 at 400 kHz [ 0.510375] omap-rproc omap-rproc.0: dsp is available [ 0.510375] omap-rproc omap-rproc.1: ipu is available [ 0.510375] Advanced Linux Sound Architecture Driver Version 1.0.24. [ 0.510375] Bluetooth: Core ver 2.16 [ 0.512329] NET: Registered protocol family 31 [ 0.512329] Bluetooth: HCI device and connection manager initialized [ 0.512817] Bluetooth: HCI socket layer initialized [ 0.513031] Bluetooth: L2CAP socket layer initialized [ 0.513031] Bluetooth: SCO socket layer initialized [ 0.513916] cfg80211: Calling CRDA to update world regulatory domain [ 0.514190] Switching to clocksource 32k_counter [ 0.517425] musb-hdrc: version 6.0, musb-dma, peripheral [ 0.517822] Switched to NOHz mode on CPU #0 [ 0.517822] Switched to NOHz mode on CPU #1 [ 0.518432] musb-hdrc: ConfigData=0xde (UTMI-8, dyn FIFOs, bulk combine, bulk split, HB-ISO Rx, HB-ISO Tx, SoftConn) [ 0.518432] musb-hdrc: MHDRC RTL version 2.0 [ 0.518432] musb-hdrc: setup fifo_mode 4 [ 0.518768] musb-hdrc: 28/31 max ep, 16384/16384 memory [ 0.518768] musb-hdrc musb-hdrc: USB Peripheral mode controller at fc0ab000 using DMA, IRQ 124 [ 0.519744] NET: Registered protocol family 2 [ 0.519744] IP route cache hash table entries: 32768 (order: 5, 131072 bytes) [ 0.520446] TCP established hash table entries: 131072 (order: 8, 1048576 bytes) [ 0.524566] TCP bind hash table entries: 65536 (order: 8, 1572864 bytes) [ 0.526092] TCP: Hash tables configured (established 131072 bind 65536) [ 0.526092] TCP reno registered [ 0.526092] UDP hash table entries: 512 (order: 3, 32768 bytes) [ 0.529571] UDP-Lite hash table entries: 512 (order: 3, 32768 bytes) [ 0.529571] NET: Registered protocol family 1 [ 0.529571] Trying to unpack rootfs image as initramfs… [ 0.532623] Freeing initrd memory: 176K [ 0.820159] omap-iommu omap-iommu.0: ducati registered [ 0.820159] omap-iommu omap-iommu.1: tesla registered [ 0.837677] ashmem: initialized [ 0.847045] fuse init (API version 7.16) [ 0.847045] msgmni has been set to 1454 [ 0.850067] io scheduler noop registered [ 0.850189] io scheduler deadline registered [ 0.850189] io scheduler cfq registered (default) [ 0.850616] start plist test [ 0.859222] end plist test [ 0.863464] OMAP DSS rev 4.0 [ 0.872406] dsscomp: initializing. [ 0.872406] misc dsscomp: display0=generic_dpi_panel [ 0.872406] misc dsscomp: display1=hdmi_panel [ 0.872863] misc dsscomp: found 2 displays and 4 overlays [ 0.873413] could not allocate slot [ 0.873413] omap-rproc omap-rproc.1: powering up ipu [ 0.874389] virtio_rpmsg_bus virtio0: rpmsg backend virtproc probed successfully [ 0.875488] virtio_rpmsg_bus virtio1: rpmsg backend virtproc probed successfully [ 0.875488] rpmsg_virtio TX: 28 00 00 00 64 00 00 00 35 00 00 00 00 00 00 00 (…d…5……. [ 0.875488] rpmsg_virtio TX: 72 70 6d 73 67 2d 72 65 73 6d 67 72 00 00 00 00 rpmsg-resmgr…. [ 0.875488] rpmsg_virtio TX: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ……………. [ 0.875488] rpmsg_virtio TX: 64 00 00 00 00 00 00 00 d……. [ 0.876953] rpmsg_virtio TX: 28 00 00 00 64 00 00 00 35 00 00 00 00 00 00 00 (…d…5……. [ 0.876953] rpmsg_virtio TX: 72 70 6d 73 67 2d 72 65 73 6d 67 72 00 00 00 00 rpmsg-resmgr…. [ 0.876953] rpmsg_virtio TX: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ……………. [ 0.877502] rpmsg_virtio TX: 64 00 00 00 00 00 00 00 d……. [ 0.877502] omap_uart.0: ttyO0 at MMIO 0x4806a000 (irq = 104) is a OMAP UART0 [ 0.898315] omap_uart.1: ttyO1 at MMIO 0x4806c000 (irq = 105) is a OMAP UART1 [ 0.914031] omap_uart.2: ttyO2 at MMIO 0×48020000 (irq = 106) is a OMAP UART2 [ 1.965240] console [ttyO2] enabled [ 2.054046] omap_uart.3: ttyO3 at MMIO 0x4806e000 (irq = 102) is a OMAP UART3 [ 2.203247] PVR: PVRCore_Init [ 2.206909] PVR: PVRSRVDriverProbe(pDevice=ee4ade00) [ 2.212768] PVR: SGX register base: 0×56000000 [ 2.217834] PVR: SGX register size: 65535 [ 2.222351] PVR: SGX IRQ: 53 [ 2.222412] PVR: EnableSystemClocks: Enabling System Clocks [ 2.231994] PVR_K:(Warning): EnableSGXClocks: Unable to scale SGX frequency (EBUSY) [167, drivers/gpu/pvr/omap4/sysutils_linux.c] [ 2.245147] PVR_K:(Warning): EnableSGXClocks: Unable to scale SGX frequency (EBUSY) [167, drivers/gpu/pvr/omap4/sysutils_linux.c] [ 2.258209] PVR: PVRCore_Init: major device 251 [ 2.271850] brd: module loaded [ 2.279479] loop: module loaded [ 2.283294] (stk) :sysfs entries created [ 2.283294] (stk) : debugfs entries created [ 2.292419] (hci_tty): inside hci_tty_init [ 2.297546] (hci_tty): allocated 250, 0 [ 2.302246] twl: i2c_read failed to transfer all messages (addr 0x004b, reg 2, len 1) [ 2.311065] twl6040-audio: probe of twl6040-audio failed with error -121 [ 2.320007] PPP generic driver version 2.4.2 [ 2.325103] PPP Deflate Compression module registered [ 2.330780] PPP BSD Compression module registered [ 2.337158] PPP MPPE Compression module registered [ 2.342529] NET: Registered protocol family 24 [ 2.349945] usbcore: registered new interface driver asix [ 2.356140] usbcore: registered new interface driver cdc_ether [ 2.362701] usbcore: registered new interface driver smsc95xx [ 2.369354] usbcore: registered new interface driver net1080 [ 2.375762] usbcore: registered new interface driver cdc_subset [ 2.378448] usbcore: registered new interface driver zaurus [ 2.388763] cdc_ncm: 04-Aug-2011 [ 2.392578] usbcore: registered new interface driver cdc_ncm [ 2.399017] usbcore: registered new interface driver zd1201 [ 2.399017] ehci_hcd: USB 2.0 ‘Enhanced’ Host Controller (EHCI) Driver [ 2.412841] ehci-omap ehci-omap.0: OMAP-EHCI Host Controller [ 2.419433] ehci-omap ehci-omap.0: new USB bus registered, assigned bus number 1 [ 2.427795] ehci-omap ehci-omap.0: irq 109, io mem 0x4a064c00 [ 2.450042] ehci-omap ehci-omap.0: USB 2.0 started, EHCI 1.00 [ 2.456573] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002 [ 2.464202] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.472320] usb usb1: Product: OMAP-EHCI Host Controller [ 2.478271] usb usb1: Manufacturer: Linux 3.0.31-gcb5fc50 ehci_hcd [ 2.485260] usb usb1: SerialNumber: ehci-omap.0 [ 2.485321] hub 1-0:1.0: USB hub found [ 2.495208] hub 1-0:1.0: 3 ports detected [ 2.531494] usbcore: registered new interface driver cdc_acm [ 2.531494] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters [ 2.546752] Initializing USB Mass Storage driver… [ 2.552337] usbcore: registered new interface driver usb-storage [ 2.559143] USB Mass Storage support registered. [ 2.564361] usbcore: registered new interface driver usbserial [ 2.571136] usbserial: USB Serial Driver core [ 2.571197] USB Serial support registered for Keyspan – (without firmware) [ 2.583862] USB Serial support registered for Keyspan 1 port adapter [ 2.591003] USB Serial support registered for Keyspan 2 port adapter [ 2.598205] USB Serial support registered for Keyspan 4 port adapter [ 2.605590] usbcore: registered new interface driver keyspan [ 2.611907] keyspan: v1.1.5:Keyspan USB to Serial Converter Driver [ 2.620727] android_usb gadget: Mass Storage Function, version: 2009/09/11 [ 2.628417] android_usb gadget: Number of LUNs=1 [ 2.633666] lun0: LUN: removable file: (no medium) [ 2.639160] android_usb gadget: android_usb ready [ 2.645080] mousedev: PS/2 mouse device common for all mice [ 2.651672] input: gpio-keys as /devices/platform/gpio-keys/input/input0 [ 2.659881] i2c /dev entries driver [ 2.664794] lirc_dev: IR Remote Control driver registered, major 248 [ 2.672729] IR NEC protocol handler initialized [ 2.672790] IR RC5(x) protocol handler initialized [ 2.683227] IR RC6 protocol handler initialized [ 2.688415] IR JVC protocol handler initialized [ 2.688476] IR Sony protocol handler initialized [ 2.698638] IR RC5 (streamzap) protocol handler initialized [ 2.704986] IR LIRC bridge handler initialized [ 2.705108] dmm: probe base: fd300000, irq 145 [ 2.715209] device-mapper: uevent: version 1.0.3 [ 2.723937] device-mapper: ioctl: 4.20.0-ioctl (2011-02-02) initialised: dm-devel@redhat.com [ 2.733428] Bluetooth: HCI UART driver ver 2.2 [ 2.738433] Bluetooth: HCI H4 protocol initialized [ 2.743896] Bluetooth: Bluetooth Driver for TI WiLink – Version 1.0 [ 2.752410] (stc): st_register(2) [ 2.752532] cpuidle: using governor ladder [ 2.752563] cpuidle: using governor menu [ 2.765411] (stc): chnl_id list empty :2 [ 2.769958] (stk) : st_kim_start [ 2.777160] usbcore: registered new interface driver usbhid [ 2.784362] usbhid: USB HID core driver [ 2.789337] logger: created 256K log ‘log_main’ [ 2.794525] logger: created 256K log ‘log_events’ [ 2.800079] logger: created 256K log ‘log_radio’ [ 2.805389] logger: created 256K log ‘log_system’ [ 2.811767] OMAP HSI: HSI DRIVER Version 0.4.1 [ 2.817047] omap_hsi omap_hsi.0: Registering IRQ mpu_p1 (99) [ 2.823394] omap_hsi omap_hsi.0: Registering IRQ mpu_dma (103) [ 2.830017] usb 1-1: new high speed USB device number 2 using ehci-omap [ 2.837554] omap_hsi omap_hsi.0: HSI Hardware REVISION 0×50043101 [ 2.848663] SDP4430 SoC init [ 2.867736] asoc: hdmi-audio-codec hdmi-audio-dai mapping ok [ 2.875061] ALSA device list: [ 2.878417] #0: OMAP4HDMI [ 2.881713] GACT probability NOT on [ 2.885650] Mirror/redirect action on [ 2.886413] (stk) :ldisc_install = 1 [ 2.893676] u32 classifier [ 2.897003] Actions configured [ 2.900909] Netfilter messages via NETLINK v0.30. [ 2.906555] nf_conntrack version 0.5.0 (11636 buckets, 46544 max) [ 2.914855] ctnetlink v0.93: registering with nfnetlink. [ 2.920867] NF_TPROXY: Transparent proxy support initialized, version 4.1.0 [ 2.928710] NF_TPROXY: Copyright (c) 2006-2007 BalaBit IT Ltd. [ 2.935638] xt_time: kernel timezone is -0000 [ 2.943298] ip_tables: (C) 2000-2006 Netfilter Core Team [ 2.949554] arp_tables: (C) 2002 David S. Miller [ 2.954864] TCP cubic registered [ 2.959533] NET: Registered protocol family 10 [ 2.971710] Mobile IPv6 [ 2.974548] ip6_tables: (C) 2000-2006 Netfilter Core Team [ 2.981109] IPv6 over IPv4 tunneling driver [ 2.992980] NET: Registered protocol family 17 [ 2.998046] NET: Registered protocol family 15 [ 3.003143] Bluetooth: RFCOMM TTY layer initialized [ 3.003601] usb 1-1: New USB device found, idVendor=0424, idProduct=9514 [ 3.003631] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 [ 3.004486] hub 1-1:1.0: USB hub found [ 3.004608] hub 1-1:1.0: 5 ports detected [ 3.032440] Bluetooth: RFCOMM socket layer initialized [ 3.038208] Bluetooth: RFCOMM ver 1.11 [ 3.042419] Bluetooth: BNEP (Ethernet Emulation) ver 1.3 [ 3.047058] mmc0: host does not support reading read-only switch. assuming write-enable. [ 3.057373] NET: Registered protocol family 35 [ 3.062408] mmc0: new high speed SDHC card at address aaaa [ 3.063018] lib80211: common routines for IEEE802.11 drivers [ 3.063018] lib80211_crypt: registered algorithm ‘NULL’ [ 3.063018] VFP support v0.3: implementor 41 architecture 3 part 30 variant 9 rev 1 [ 3.089416] ThumbEE CPU extension supported. [ 3.089477] mmcblk0: mmc0:aaaa SU08G 7.40 GiB [ 3.098999] mmcblk0: p1 p2 p3 p4 p5 [ 3.103210] Registering SWP/SWPB emulation handler [ 3.113983] Reprogramming LPDDR2 timings to 400000000 Hz [ 3.126525] Power Management for TI OMAP4. [ 3.131439] OMAP4 PM: Static dependency added between MPUSS EMIF, MPUSS L4_PER/CFG MPUSS L3_MAIN_1. [ 3.142883] OMAP4 PM: Static dependency added between DUCATI L4_PER/CFG and DUCATI L3. [ 3.153198] sr_init: No PMIC hook to init smartreflex [ 3.158905] smartreflex smartreflex.0: omap_sr_probe: SmartReflex driver initialized [ 3.167968] smartreflex smartreflex.1: omap_sr_probe: SmartReflex driver initialized [ 3.177276] smartreflex smartreflex.2: omap_sr_probe: SmartReflex driver initialized [ 3.186401] SmartReflex class 1.5 driver: initialized (86400000ms) [ 3.205688] clock: disabling unused clocks to save power [ 3.211883] sr_class1p5_calib_work: mpu: Calibration complete: Voltage:Nominal=1200000,Calib=1126780,margin=0 [ 3.224792] sr_class1p5_calib_work: iva: Calibration complete: Voltage:Nominal=1114000,Calib=1050820,margin=0 [ 3.230987] mmc1: card claims to support voltages below the defined range. These will be ignored. [ 3.245910] sr_class1p5_calib_work: core: Calibration complete: Voltage:Nominal=1127000,Calib=1088800,margin=0 [ 3.247680] mmc1: queuing unknown CIS tuple 0×91 (3 bytes) [ 3.249176] mmc1: new SDIO card at address 0001 [ 3.304870] usb 1-1.1: new high speed USB device number 3 using ehci-omap [ 3.469116] usb 1-1.1: New USB device found, idVendor=0424, idProduct=ec00 [ 3.476776] usb 1-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 [ 3.487518] smsc95xx v1.0.4 [ 3.578521] smsc95xx 1-1.1:1.0: eth0: register ‘smsc95xx’ at usb-ehci-omap.0-1.1, smsc95xx USB 2.0 Ethernet, 06:0b:f9:7d:42:af [ 3.632019] cannot apply mgr(lcd) on inactive device [ 3.637908] omapfb omapfb: failed to apply dispc config [ 3.647064] cannot apply mgr(tv) on inactive device [ 3.652740] omapfb omapfb: failed to apply dispc config [ 3.661956] cannot apply mgr(lcd2) on inactive device [ 3.667663] omapfb omapfb: failed to apply dispc config [ 3.676757] usb 1-1.2: new low speed USB device number 4 using ehci-omap [ 3.684417] omapdss DPI: Could not find exact pixel clock. Requested 74250 kHz, got 76800 kHz [ 3.696899] regulator_init_complete: VANA: incomplete constraints, leaving on [ 3.705718] regulator_init_complete: VDAC: incomplete constraints, leaving on [ 3.714172] regulator_init_complete: VCXIO: incomplete constraints, leaving on [ 3.723358] drivers/rtc/hctosys.c: unable to open rtc device (rtc0) [ 3.731445] Freeing init memory: 248K [ 3.743103] init (1): /proc/1/oom_adj is deprecated, please use /proc/1/oom_score_adj instead. [ 3.757873] sr_class1p5_calib_work: mpu: Calibration complete: Voltage:Nominal=1388000,Calib=1266040,margin=0 [ 3.818908] usb 1-1.2: New USB device found, idVendor=045e, idProduct=0084 [ 3.827789] usb 1-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 3.835937] usb 1-1.2: Product: Basic Optical Mouse [ 3.841613] usb 1-1.2: Manufacturer: Microsoft [ 3.846435] keychord: using input dev gpio-keys for fevent [ 3.857330] input: Microsoft Basic Optical Mouse as /devices/platform/omap/usbhs_omap/ehci-omap.0/usb1/1-1/1-1.2/1-1.2:1.0/input/input1 [ 3.872741] keychord: using input dev Microsoft Basic Optical Mouse for fevent [ 3.881072] generic-usb 0003:045E:0084.0001: input: USB HID v1.10 Mouse [Microsoft Basic Optical Mouse] on usb-ehci-omap.0-1.2/input0 [ 3.957153] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null) [ 4.046539] (stk) :ldisc installation timeout [ 4.051666] (stk) :ldisc_install = 0 [ 4.195373] sr_class1p5_calib_work: core: Calibration complete: Voltage:Nominal=962000,Calib=936880,margin=0 [ 4.207672] sr_class1p5_calib_work: mpu: Calibration complete: Voltage:Nominal=1025000,Calib=962200,margin=0 [ 4.297637] EXT4-fs (mmcblk0p3): mounted filesystem with ordered data mode. Opts: nomblk_io_submit,errors=panic [ 4.331420] wl1271: loaded [ 4.331420] wl1271: initialized [ 4.519256] EXT4-fs (mmcblk0p4): mounted filesystem with ordered data mode. Opts: nomblk_io_submit,errors=panic [ 4.573364] init: cannot find ‘/system/bin/rild’, disabling ‘ril-daemon’ [ 4.583679] init: cannot find ‘/system/etc/install-recovery.sh’, disabling ‘flash_recovery’ [ 4.598449] android_usb: already disabled [ 4.604644] android_usb: already disabled [ 4.609405] android_usb: already disabled [ 4.618621] warning: `adbd’ uses 32-bit capabilities (legacy support in use) [ 4.627288] adb_open [ 4.630920] adb_bind_config [ 4.645446] omap-rproc omap-rproc.1: rproc_loader_cont: failed to load ducati-m3.bin shell@android:/ $ [ 4.900207] PVR: Installing MISR with cookie c07d674c [ 4.908203] PVR: Installing device LISR SGX ISR on IRQ 53 with cookie ee496f00 [ 4.916870] PVR: OSUnMapPhysToLin: unmapping 65535 bytes from f0b20000 [ 4.924316] PVR: SysFinalise: Version string: SGX revision = 1.2.0 [ 5.211029] (stk) : timed out waiting for ldisc to be un-installed [ 5.489776] (stk) :ldisc_install = 1 [ 5.555267] (stc): st_tty_open [ 5.559417] (stk) :line discipline installed [ 5.579193] (stk) :TIInit_7.2.31.bts [ 6.037933] misc dsscomp: [edef5c00] ignoring set failure -22 [ 6.644073] (stc): add_channel_to_table: id 2 [ 6.650238] (stc): st_register(3) [ 6.654571] (stc): add_channel_to_table: id 3 [ 6.660797] (stc): st_register(4) [ 6.664550] (stc): add_channel_to_table: id 4 [ 7.734313] sr_class1p5_calib_work: mpu: Calibration complete: Voltage:Nominal=1325000,Calib=1215400,margin=0 [ 8.721374] (stc): remove_channel_from_table: id 2 [ 8.727020] (stc): remove_channel_from_table: id 3 [ 8.731445] (stc): remove_channel_from_table: id 4 [ 8.740081] (stc): all chnl_ids unregistered [ 8.746063] (stk) :ldisc_install = 0 [ 8.751007] (stc): st_tty_close [ 8.755035] (stc): 2 not un-registered [ 8.759429] (stc): 3 not un-registered [ 8.763793] (stc): 4 not un-registered [ 18.293243] alarm_set_rtc: no RTC, time will be lost on reboot [ 22.906036] request_suspend_state: wakeup (3->0) at 22890594485 (1970-01-02 00:00:04.612792970 UTC) [ 25.069061] acc_open [ 25.072479] acc_release [ 33.101959] init: sys_prop: permission denied uid:1003 name:service.bootanim.exit [ 35.109405] eth0: no IPv6 routers present [ 54.392456] android_work: sent uevent USB_STATE=CONNECTED [ 54.400115] android_work: sent uevent USB_STATE=DISCONNECTED [ 54.482208] android_work: sent uevent USB_STATE=CONNECTED [ 54.488677] android_usb gadget: high speed config #1: android [ 54.496093] android_work: sent uevent USB_STATE=CONFIGURED [ 99.057373] binder: release 785:785 transaction 6177 out, still active [ 105.197387] request_suspend_state: sleep (0->3) at 105181945803 (1970-01-02 00:01:26.904144288 UTC) [ 105.209625] DSSCOMP: dsscomp_early_suspend [ 105.228973] DSSCOMP: blanked screen [ 113.132019] binder: 97:694 transaction failed 29189, size 12-0 [ 113.138763] binder: send failed reply for transaction 6177, target dead [ 126.378662] request_suspend_state: wakeup (3->0) at 126363220219 (1970-01-02 00:01:48.085296633 UTC) [ 126.395111] DSSCOMP: dsscomp_late_resume ************************************************************************************ Logcat Log ********************************************************************************* ——— beginning of /dev/log/main I/installd( 98): installd firing up E/uim-sysfs( 91): uim: Inside main E/uim-sysfs( 91): uim:ST built into the kernel ? E/uim-sysfs( 91): uim:BT driver module un-available… E/uim-sysfs( 91): uim:BT driver built into the kernel ? E/uim-sysfs( 91): uim:FM driver module un-available… E/uim-sysfs( 91): uim:FM driver built into the kernel ? E/uim-sysfs( 91): uim:GPS driver module un-available… E/uim-sysfs( 91): uim:GPS driver built into the kernel ? E/uim-sysfs( 91): uim:FM V4L2 driver module un-available… E/uim-sysfs( 91): uim:FM V4L2 driver built into the kernel ? E/uim-sysfs( 91): uim:found bluetooth rfkill entry @ 0 E/uim-sysfs( 91): E/uim-sysfs( 91): uim:changed permissions for /sys/class/rfkill/rfkill0/state(0) E/uim-sysfs( 91): I/DEBUG ( 93): debuggerd: Apr 30 2014 14:05:31 ——— beginning of /dev/log/system I/Vold ( 88): Vold 2.1 (the revenge) firing up E/Vold ( 88): Error reading configuration (No such file or directory)… continuing anyways E/IMGSRV ( 89): :0: SetupuKernel : EDM status value DevVAddr: 0x0F004000 pvLinAddrKM: 0xF0983000 I/Netd ( 92): Netd 1.0 starting W/InterfaceController( 92): Warning (Cannot load library: load_library(linker.cpp:745): library “/system/lib/libnetcmdiface.so” not found) while opening the net interface command library I/SurfaceFlinger( 94): SurfaceFlinger is starting I/SurfaceFlinger( 94): SurfaceFlinger’s main thread ready to run. Initializing graphics H/W… D/libEGL ( 94): loaded /vendor/lib/egl/libEGL_POWERVR_SGX540_120.so E/uim-sysfs( 91): uim: Inside st_uart_config E/uim-sysfs( 91): uim:install set to 1 E/uim-sysfs( 91): uim:opening /dev/ttyO1, while already open E/uim-sysfs( 91): uim:cleanup E/uim-sysfs( 91): uim: Inside set_baud_rate E/uim-sysfs( 91): uim: set_baud_rate() done E/uim-sysfs( 91): uim: Setting speed to 3686400 E/uim-sysfs( 91): uim: Inside read_command_complete E/uim-sysfs( 91): uim: Command complete started E/uim-sysfs( 91): uim: Inside read_hci_event E/uim-sysfs( 91): uim: read_hci_event D/libEGL ( 94): loaded /vendor/lib/egl/libGLESv1_CM_POWERVR_SGX540_120.so D/libEGL ( 94): loaded /vendor/lib/egl/libGLESv2_POWERVR_SGX540_120.so E/uim-sysfs( 91): uim: Command complete done E/uim-sysfs( 91): uim: Speed changed to 3686400 E/uim-sysfs( 91): uim: Inside set_custom_baud_rate E/uim-sysfs( 91): uim: Changing baud rate to 3686400, flow control to 1 E/uim-sysfs( 91): uim: set_custom_baud_rate() done E/uim-sysfs( 91): uim: Installed N_TI_WL Line displine E/ti_hwc ( 94): x resolution or the height is not populated setting lcd_xpy to 1.0 I/ti_hwc ( 94): clone region is set to (0,0) to (1280,720) I/ti_hwc ( 94): external display changed (state=0, mirror={disabled tform=0deg}, dock={disabled tform=0deg}, tv=0 I/ti_hwc ( 94): omap4_hwc_device_open(rgb_order=1 nv12_only=0) I/SurfaceFlinger( 94): Using composer version 1.0 W/SurfaceFlinger( 94): getting VSYNC period from fb HAL: 14646649 W/SurfaceFlinger( 94): no suitable EGLConfig found, trying without EGL_FRAMEBUFFER_TARGET_ANDROID E/Trace ( 94): error opening trace file: No such file or directory (2) D/AndroidRuntime( 95): D/AndroidRuntime( 95): >>>>>> AndroidRuntime START com.android.internal.os.ZygoteInit <<<<<< D/AndroidRuntime( 95): CheckJNI is OFF I/SurfaceFlinger( 94): EGL informations: I/SurfaceFlinger( 94): vendor : Android I/SurfaceFlinger( 94): version : 1.4 Android META-EGL I/SurfaceFlinger( 94): extensions: EGL_KHR_image EGL_KHR_image_base EGL_KHR_gl_texture_2D_image EGL_KHR_gl_texture_cubemap_image EGL_KHR_gl_renderbuffer_image EGL_KHR_fence_sync EGL_ANDROID_image_native_buffer I/SurfaceFlinger( 94): Client API: OpenGL_ES I/SurfaceFlinger( 94): EGLSurface: 8-8-8-8, config=0×2 I/SurfaceFlinger( 94): OpenGL ES informations: I/SurfaceFlinger( 94): vendor : Imagination Technologies I/SurfaceFlinger( 94): renderer : PowerVR SGX 540 I/SurfaceFlinger( 94): version : OpenGL ES-CM 1.1 I/SurfaceFlinger( 94): extensions: GL_EXT_debug_marker GL_OES_byte_coordinates GL_OES_fixed_point GL_OES_single_precision GL_OES_matrix_get GL_OES_read_format GL_OES_compressed_paletted_texture GL_OES_point_sprite GL_OES_point_size_array GL_OES_matrix_palette GL_OES_draw_texture GL_OES_query_matrix GL_OES_texture_env_crossbar GL_OES_texture_mirrored_repeat GL_OES_texture_cube_map GL_OES_blend_subtract GL_OES_blend_func_separate GL_OES_blend_equation_separate GL_OES_stencil_wrap GL_OES_extended_matrix_palette GL_OES_framebuffer_object GL_OES_rgb8_rgba8 GL_OES_depth24 GL_OES_stencil8 GL_OES_compressed_ETC1_RGB8_texture GL_OES_mapbuffer GL_OES_EGL_image GL_OES_EGL_image_external GL_EXT_multi_draw_arrays GL_OES_required_internalformat GL_IMG_read_format GL_IMG_texture_compression_pvrtc GL_IMG_texture_format_BGRA8888 GL_EXT_texture_format_BGRA8888 GL_OES_egl_sync GL_IMG_vertex_array_object I/SurfaceFlinger( 94): GL_MAX_TEXTURE_SIZE = 2048 I/SurfaceFlinger( 94): GL_MAX_VIEWPORT_DIMS = 2048 x 2048 D/SurfaceFlinger( 94): Screen acquired, type=0 flinger=0x41ba5318 I/mediaserver( 97): ServiceManager: 0x40a50ee8 I/AudioFlinger( 97): Using default 3000 mSec as standby time. I/CameraService( 97): CameraService started (pid=97) D/libEGL ( 217): loaded /vendor/lib/egl/libEGL_POWERVR_SGX540_120.so D/libEGL ( 217): loaded /vendor/lib/egl/libGLESv1_CM_POWERVR_SGX540_120.so D/libEGL ( 217): loaded /vendor/lib/egl/libGLESv2_POWERVR_SGX540_120.so E/Trace ( 217): error opening trace file: No such file or directory (2) I/AudioPolicyManagerBase( 97): loadAudioPolicyConfig() loaded /system/etc/audio_policy.conf E/audio_hw_primary( 97): Unable to locate all mixer controls, aborting. E/AudioFlinger( 97): int android::load_audio_interface(char const*, audio_hw_device_t**) couldn't open audio hw device in audio.primary (Invalid argument) I/AudioFlinger( 97): loadHwModule() error -22 loading module primary W/AudioPolicyManagerBase( 97): could not open HW module primary I/audio_a2dp_hw( 97): adev_open: adev_open in A2dp_hw module I/AudioFlinger( 97): loadHwModule() Loaded a2dp audio interface from A2DP Audio HW HAL (audio) handle 1 E/AudioPolicyManagerBase( 97): Not output found for attached devices 00000003 E/AudioPolicyManagerBase( 97): Failed to open primary output E/AudioPolicyManagerBase( 97): getDeviceForStrategy() speaker device not found for STRATEGY_SONIFICATION E/AudioPolicyManagerBase( 97): getDeviceForStrategy() speaker device not found for STRATEGY_SONIFICATION E/AudioPolicyService( 97): couldn't init_check the audio policy (No such device) D/dalvikvm( 95): Trying to load lib libjavacore.so 0×0 D/dalvikvm( 95): Added shared lib libjavacore.so 0×0 D/dalvikvm( 95): Trying to load lib libnativehelper.so 0×0 D/dalvikvm( 95): Added shared lib libnativehelper.so 0×0 D/MDnsDS ( 92): MDnsSdListener::Hander starting up D/MDnsDS ( 92): MDnsSdListener starting to monitor D/MDnsDS ( 92): Going to poll with pollCount 1 I/SamplingProfilerIntegration( 95): Profiling disabled. I/Zygote ( 95): Preloading classes… D/dalvikvm( 95): GC_EXPLICIT freed 36K, 9% free 420K/460K, paused 0ms+0ms, total 6ms D/dalvikvm( 95): GC_EXPLICIT freed 4K, 5% free 490K/512K, paused 0ms+0ms, total 6ms D/dalvikvm( 95): Note: class Landroid/app/ActivityManagerNative; has 157 unimplemented (abstract) methods D/dalvikvm( 95): GC_EXPLICIT freed 21K, 5% free 529K/556K, paused 0ms+0ms, total 6ms D/dalvikvm( 95): GC_EXPLICIT freed 27K, 6% free 557K/588K, paused 0ms+3ms, total 9ms W/Zygote ( 95): Class not found for preloading: android.bluetooth.BluetoothAudioGateway W/Zygote ( 95): Class not found for preloading: android.bluetooth.HeadsetBase W/Zygote ( 95): Class not found for preloading: undroid.content.AbstractThreadedSyncAdapter$SyncThread D/dalvikvm( 95): GC_EXPLICIT freed 24K, 5% free 606K/632K, paused 0ms+0ms, total 9ms D/dalvikvm( 95): GC_EXPLICIT freed 26K, 5% free 633K/664K, paused 0ms+1ms, total 13ms D/dalvikvm( 95): GC_EXPLICIT freed 60K, 8% free 725K/788K, paused 1ms+1ms, total 12ms D/dalvikvm( 95): GC_EXPLICIT freed 31K, 5% free 750K/788K, paused 1ms+5ms, total 14ms D/TextLayoutCache( 95): Using debug level = 0 – Debug Enabled = 0 D/dalvikvm( 95): GC_EXPLICIT freed 18K, 3% free 787K/808K, paused 1ms+2ms, total 13ms I/dalvikvm( 95): threadid=1: recursive native library load attempt (/system/lib/libmedia_jni.so) D/MtpDeviceJNI( 95): register_android_mtp_MtpDevice I/dalvikvm( 95): threadid=1: recursive native library load attempt (/system/lib/libmedia_jni.so) I/dalvikvm( 95): threadid=1: recursive native library load attempt (/system/lib/libmedia_jni.so) D/dalvikvm( 95): GC_EXPLICIT freed 15K, 3% free 829K/848K, paused 1ms+0ms, total 16ms D/dalvikvm( 95): GC_FOR_ALLOC freed 220K, 17% free 1122K/1344K, paused 22ms, total 23ms E/uim-sysfs( 91): uim: Inside st_uart_config E/uim-sysfs( 91): uim: Un-Installed N_TI_WL Line displine E/uim-sysfs( 91): uim:cleanup D/dalvikvm( 95): GC_EXPLICIT freed 260K, 18% free 1273K/1540K, paused 2ms+2ms, total 29ms D/dalvikvm( 95): GC_EXPLICIT freed 29K, 16% free 1299K/1540K, paused 1ms+1ms, total 26ms D/dalvikvm( 95): GC_EXPLICIT freed 12K, 12% free 1355K/1540K, paused 0ms+0ms, total 27ms W/Zygote ( 95): Class not found for preloading: android.server.BluetoothA2dpService W/Zygote ( 95): Class not found for preloading: android.server.BluetoothEventLoop W/Zygote ( 95): Class not found for preloading: android.server.BluetoothService D/TelephonyManager( 95): No /proc/cmdline exception=java.io.FileNotFoundException: /proc/cmdline: open failed: EACCES (Permission denied) D/TelephonyManager( 95): /proc/cmdline= D/dalvikvm( 95): GC_EXPLICIT freed 29K, 10% free 1417K/1572K, paused 0ms+0ms, total 31ms D/dalvikvm( 95): GC_EXPLICIT freed 47K, 3% free 1698K/1748K, paused 1ms+0ms, total 31ms W/Zygote ( 95): Class not found for preloading: android.util.LocaleUtil D/dalvikvm( 95): GC_EXPLICIT freed 36K, 3% free 1733K/1776K, paused 0ms+4ms, total 33ms D/dalvikvm( 95): GC_EXPLICIT freed 31K, 3% free 1755K/1792K, paused 2ms+8ms, total 35ms W/Zygote ( 95): Class not found for preloading: android.view.ViewRootImpl$ResizedInfo W/Zygote ( 95): Class not found for preloading: android.view.Window$LocalWindowManager W/Zygote ( 95): Class not found for preloading: android.view.WindowManagerImpl$CompatModeWrapper D/dalvikvm( 95): GC_EXPLICIT freed 30K, 2% free 1778K/1812K, paused 1ms+7ms, total 38ms I/dalvikvm( 95): threadid=1: recursive native library load attempt (/system/lib/libwebcore.so) D/dalvikvm( 95): No JNI_OnLoad found in /system/lib/libchromium_net.so 0×0, skipping init D/dalvikvm( 95): GC_EXPLICIT freed 21K, 2% free 1812K/1836K, paused 2ms+0ms, total 40ms D/dalvikvm( 95): GC_EXPLICIT freed 26K, 2% free 1839K/1868K, paused 0ms+6ms, total 36ms D/dalvikvm( 95): GC_EXPLICIT freed 30K, 2% free 1870K/1904K, paused 2ms+7ms, total 37ms D/dalvikvm( 95): GC_EXPLICIT freed 26K, 2% free 1897K/1928K, paused 0ms+3ms, total 37ms D/dalvikvm( 95): GC_EXPLICIT freed 31K, 2% free 1920K/1956K, paused 2ms+4ms, total 37ms D/dalvikvm( 95): GC_EXPLICIT freed 28K, 2% free 1947K/1980K, paused 0ms+3ms, total 40ms D/dalvikvm( 95): GC_EXPLICIT freed 29K, 2% free 1973K/2004K, paused 2ms+8ms, total 40ms D/dalvikvm( 95): GC_EXPLICIT freed 39K, 3% free 1990K/2032K, paused 0ms+3ms, total 39ms W/Zygote ( 95): Class not found for preloading: java.text.DecimalFormat$1 D/dalvikvm( 95): GC_EXPLICIT freed 41K, 3% free 2004K/2048K, paused 0ms+6ms, total 43ms W/Zygote ( 95): Class not found for preloading: java.util.concurrent.FutureTask$Sync W/Zygote ( 95): Class not found for preloading: java.util.concurrent.atomic.UnsafeAccess W/Zygote ( 95): Class not found for preloading: java.util.concurrent.locks.UnsafeAccess D/dalvikvm( 95): GC_EXPLICIT freed 41K, 3% free 2017K/2064K, paused 2ms+5ms, total 39ms W/Zygote ( 95): Class not found for preloading: libcore.icu.ErrorCode I/System ( 95): Loaded time zone names for in 193ms (190ms in ICU) I/System ( 95): Loaded time zone names for en_US in 118ms (115ms in ICU) D/dalvikvm( 95): GC_EXPLICIT freed 332K, 14% free 2096K/2432K, paused 2ms+5ms, total 51ms D/dalvikvm( 95): GC_EXPLICIT freed 15K, 12% free 2157K/2436K, paused 0ms+1ms, total 42ms D/dalvikvm( 95): GC_EXPLICIT freed 52K, 11% free 2189K/2436K, paused 0ms+6ms, total 47ms D/dalvikvm( 95): GC_EXPLICIT freed 29K, 10% free 2216K/2440K, paused 2ms+0ms, total 46ms D/dalvikvm( 95): GC_EXPLICIT freed 38K, 9% free 2232K/2440K, paused 0ms+0ms, total 50ms D/dalvikvm( 95): GC_EXPLICIT freed 32K, 8% free 2255K/2440K, paused 2ms+9ms, total 50ms I/Zygote ( 95): …preloaded 2541 classes in 4163ms. D/dalvikvm( 95): GC_EXPLICIT freed 23K, 8% free 2260K/2440K, paused 3ms+2ms, total 48ms I/Zygote ( 95): Preloading resources… D/dalvikvm( 95): GC_EXPLICIT freed 60K, 10% free 2289K/2528K, paused 0ms+3ms, total 49ms D/dalvikvm( 95): GC_EXPLICIT freed 49K, 9% free 2308K/2528K, paused 0ms+0ms, total 52ms D/dalvikvm( 95): GC_EXPLICIT freed 49K, 9% free 2326K/2548K, paused 3ms+0ms, total 51ms D/dalvikvm( 95): GC_EXPLICIT freed 49K, 9% free 2345K/2576K, paused 0ms+3ms, total 49ms D/dalvikvm( 95): GC_EXPLICIT freed 49K, 9% free 2363K/2596K, paused 0ms+4ms, total 53ms D/dalvikvm( 95): WAIT_FOR_CONCURRENT_GC blocked 2ms D/dalvikvm( 95): GC_EXPLICIT freed 49K, 9% free 2382K/2616K, paused 2ms+8ms, total 50ms D/dalvikvm( 95): GC_EXPLICIT freed 49K, 9% free 2400K/2636K, paused 2ms+3ms, total 49ms D/dalvikvm( 95): GC_EXPLICIT freed 33K, 9% free 2416K/2636K, paused 0ms+1ms, total 50ms D/dalvikvm( 95): GC_EXPLICIT freed 50K, 9% free 2438K/2676K, paused 3ms+10ms, total 53ms D/dalvikvm( 95): GC_EXPLICIT freed 49K, 9% free 2456K/2696K, paused 2ms+3ms, total 49ms D/dalvikvm( 95): WAIT_FOR_CONCURRENT_GC blocked 2ms D/dalvikvm( 95): GC_EXPLICIT freed 49K, 9% free 2475K/2716K, paused 2ms+4ms, total 49ms D/dalvikvm( 95): GC_EXPLICIT freed 49K, 10% free 2493K/2744K, paused 2ms+3ms, total 52ms D/dalvikvm( 95): GC_EXPLICIT freed 49K, 10% free 2512K/2764K, paused 1ms+7ms, total 51ms D/dalvikvm( 95): GC_EXPLICIT freed 49K, 10% free 2530K/2784K, paused 3ms+4ms, total 51ms D/dalvikvm( 95): GC_EXPLICIT freed 46K, 9% free 2548K/2800K, paused 1ms+0ms, total 49ms D/dalvikvm( 95): GC_EXPLICIT freed 40K, 9% free 2563K/2800K, paused 3ms+0ms, total 52ms D/dalvikvm( 95): WAIT_FOR_CONCURRENT_GC blocked 1ms D/dalvikvm( 95): GC_EXPLICIT freed 40K, 8% free 2579K/2800K, paused 0ms+6ms, total 49ms D/dalvikvm( 95): GC_EXPLICIT freed 40K, 8% free 2594K/2800K, paused 0ms+4ms, total 50ms D/dalvikvm( 95): GC_EXPLICIT freed 49K, 8% free 2617K/2820K, paused 1ms+8ms, total 53ms D/dalvikvm( 95): GC_EXPLICIT freed 50K, 8% free 2635K/2840K, paused 1ms+2ms, total 52ms D/dalvikvm( 95): GC_EXPLICIT freed 50K, 8% free 2655K/2868K, paused 0ms+7ms, total 49ms D/dalvikvm( 95): GC_EXPLICIT freed 49K, 8% free 2676K/2888K, paused 0ms+3ms, total 50ms D/dalvikvm( 95): WAIT_FOR_CONCURRENT_GC blocked 1ms D/dalvikvm( 95): GC_EXPLICIT freed 49K, 8% free 2694K/2908K, paused 2ms+0ms, total 52ms D/dalvikvm( 95): GC_EXPLICIT freed 49K, 8% free 2713K/2928K, paused 0ms+0ms, total 49ms D/dalvikvm( 95): GC_EXPLICIT freed 46K, 8% free 2734K/2944K, paused 4ms+4ms, total 51ms D/dalvikvm( 95): WAIT_FOR_CONCURRENT_GC blocked 2ms D/dalvikvm( 95): GC_EXPLICIT freed 40K, 7% free 2749K/2944K, paused 1ms+0ms, total 53ms D/dalvikvm( 95): GC_EXPLICIT freed 40K, 7% free 2765K/2944K, paused 8ms+4ms, total 55ms D/dalvikvm( 95): GC_EXPLICIT freed 40K, 6% free 2781K/2952K, paused 6ms+2ms, total 54ms D/dalvikvm( 95): GC_EXPLICIT freed 40K, 6% free 2796K/2968K, paused 2ms+4ms, total 52ms D/dalvikvm( 95): GC_EXPLICIT freed 40K, 6% free 2812K/2984K, paused 2ms+1ms, total 50ms D/dalvikvm( 95): GC_EXPLICIT freed 40K, 6% free 2828K/2992K, paused 6ms+3ms, total 52ms D/dalvikvm( 95): GC_EXPLICIT freed 134K, 8% free 2890K/3128K, paused 1ms+3ms, total 52ms D/dalvikvm( 95): GC_EXPLICIT freed 134K, 8% free 2944K/3184K, paused 5ms+0ms, total 57ms D/dalvikvm( 95): GC_EXPLICIT freed 44K, 9% free 2960K/3244K, paused 2ms+1ms, total 51ms D/dalvikvm( 95): GC_EXPLICIT freed 43K, 9% free 2976K/3260K, paused 2ms+3ms, total 50ms D/dalvikvm( 95): GC_EXPLICIT freed 48K, 9% free 2996K/3276K, paused 2ms+0ms, total 54ms D/dalvikvm( 95): GC_EXPLICIT freed 43K, 8% free 3021K/3276K, paused 1ms+2ms, total 54ms D/dalvikvm( 95): GC_EXPLICIT freed 43K, 8% free 3040K/3276K, paused 0ms+10ms, total 54ms D/dalvikvm( 95): GC_EXPLICIT freed 62K, 8% free 3062K/3316K, paused 3ms+2ms, total 53ms D/dalvikvm( 95): GC_EXPLICIT freed 64K, 8% free 3086K/3352K, paused 2ms+3ms, total 53ms D/dalvikvm( 95): GC_EXPLICIT freed 98K, 10% free 3121K/3452K, paused 2ms+3ms, total 54ms D/dalvikvm( 95): GC_FOR_ALLOC freed <1K, 10% free 3121K/3452K, paused 45ms, total 47ms D/dalvikvm( 95): GC_FOR_ALLOC freed 0K, 8% free 4222K/4556K, paused 63ms, total 63ms D/dalvikvm( 95): WAIT_FOR_CONCURRENT_GC blocked 5ms D/dalvikvm( 95): GC_EXPLICIT freed 1101K, 30% free 3517K/4956K, paused 3ms+5ms, total 56ms D/dalvikvm( 95): GC_EXPLICIT freed 45K, 29% free 3535K/4956K, paused 2ms+0ms, total 54ms D/dalvikvm( 95): WAIT_FOR_CONCURRENT_GC blocked 4ms D/dalvikvm( 95): GC_EXPLICIT freed 36K, 29% free 3548K/4956K, paused 0ms+7ms, total 52ms D/dalvikvm( 95): GC_EXPLICIT freed 90K, 28% free 3581K/4956K, paused 1ms+0ms, total 52ms D/dalvikvm( 95): WAIT_FOR_CONCURRENT_GC blocked 2ms D/dalvikvm( 95): GC_EXPLICIT freed 90K, 28% free 3614K/4956K, paused 2ms+7ms, total 55ms D/dalvikvm( 95): GC_FOR_ALLOC freed 776K, 22% free 3901K/4956K, paused 48ms, total 53ms D/dalvikvm( 95): GC_EXPLICIT freed 457K, 19% free 4063K/4956K, paused 0ms+0ms, total 47ms D/dalvikvm( 95): GC_EXPLICIT freed 60K, 18% free 4102K/4956K, paused 1ms+0ms, total 54ms D/dalvikvm( 95): GC_EXPLICIT freed 51K, 17% free 4115K/4956K, paused 2ms+1ms, total 52ms D/dalvikvm( 95): GC_EXPLICIT freed 46K, 17% free 4133K/4956K, paused 2ms+6ms, total 53ms D/dalvikvm( 95): WAIT_FOR_CONCURRENT_GC blocked 2ms D/dalvikvm( 95): GC_EXPLICIT freed 45K, 17% free 4151K/4956K, paused 0ms+8ms, total 56ms D/dalvikvm( 95): GC_EXPLICIT freed 45K, 16% free 4171K/4956K, paused 3ms+0ms, total 57ms D/dalvikvm( 95): GC_EXPLICIT freed 48K, 16% free 4194K/4956K, paused 3ms+8ms, total 58ms D/dalvikvm( 95): WAIT_FOR_CONCURRENT_GC blocked 4ms D/dalvikvm( 95): GC_EXPLICIT freed 50K, 16% free 4211K/4956K, paused 2ms+0ms, total 54ms D/dalvikvm( 95): GC_EXPLICIT freed 49K, 15% free 4231K/4956K, paused 3ms+5ms, total 62ms D/dalvikvm( 95): WAIT_FOR_CONCURRENT_GC blocked 3ms D/dalvikvm( 95): GC_EXPLICIT freed 49K, 15% free 4250K/4956K, paused 0ms+4ms, total 53ms D/dalvikvm( 95): GC_EXPLICIT freed 59K, 14% free 4275K/4956K, paused 1ms+5ms, total 56ms D/dalvikvm( 95): GC_EXPLICIT freed 50K, 14% free 4293K/4956K, paused 2ms+3ms, total 55ms D/dalvikvm( 95): WAIT_FOR_CONCURRENT_GC blocked 1ms D/dalvikvm( 95): GC_EXPLICIT freed 66K, 13% free 4317K/4956K, paused 0ms+8ms, total 54ms D/dalvikvm( 95): GC_EXPLICIT freed 60K, 13% free 4339K/4956K, paused 0ms+7ms, total 53ms D/dalvikvm( 95): GC_EXPLICIT freed 60K, 12% free 4362K/4956K, paused 7ms+7ms, total 63ms D/dalvikvm( 95): GC_EXPLICIT freed 48K, 12% free 4380K/4956K, paused 4ms+0ms, total 57ms D/dalvikvm( 95): GC_EXPLICIT freed 66K, 12% free 4404K/4956K, paused 3ms+0ms, total 55ms D/dalvikvm( 95): GC_EXPLICIT freed 35K, 11% free 4419K/4956K, paused 0ms+4ms, total 61ms D/dalvikvm( 95): GC_EXPLICIT freed 40K, 11% free 4438K/4956K, paused 1ms+1ms, total 59ms D/dalvikvm( 95): WAIT_FOR_CONCURRENT_GC blocked 3ms D/dalvikvm( 95): GC_EXPLICIT freed 37K, 11% free 4453K/4956K, paused 0ms+8ms, total 55ms D/dalvikvm( 95): GC_EXPLICIT freed 37K, 10% free 4468K/4956K, paused 2ms+4ms, total 56ms D/dalvikvm( 95): WAIT_FOR_CONCURRENT_GC blocked 1ms D/dalvikvm( 95): GC_EXPLICIT freed 56K, 10% free 4497K/4956K, paused 0ms+1ms, total 56ms D/dalvikvm( 95): GC_EXPLICIT freed 87K, 9% free 4529K/4956K, paused 6ms+8ms, total 64ms D/dalvikvm( 95): GC_EXPLICIT freed 85K, 8% free 4559K/4956K, paused 3ms+8ms, total 57ms D/dalvikvm( 95): WAIT_FOR_CONCURRENT_GC blocked 3ms D/dalvikvm( 95): GC_EXPLICIT freed 85K, 8% free 4593K/4956K, paused 2ms+5ms, total 57ms D/dalvikvm( 95): WAIT_FOR_CONCURRENT_GC blocked 2ms D/dalvikvm( 95): GC_EXPLICIT freed 85K, 7% free 4623K/4956K, paused 0ms+2ms, total 56ms D/dalvikvm( 95): WAIT_FOR_CONCURRENT_GC blocked 3ms D/dalvikvm( 95): GC_EXPLICIT freed 52K, 6% free 4660K/4956K, paused 1ms+10ms, total 59ms I/Zygote ( 95): …preloaded 270 resources in 6262ms. D/dalvikvm( 95): GC_EXPLICIT freed 35K, 6% free 4676K/4956K, paused 1ms+9ms, total 61ms I/Zygote ( 95): …preloaded 31 resources in 73ms. D/dalvikvm( 95): GC_EXPLICIT freed 9K, 6% free 4682K/4956K, paused 2ms+6ms, total 58ms D/dalvikvm( 95): GC_EXPLICIT freed 6K, 6% free 4675K/4956K, paused 1ms+3ms, total 56ms D/dalvikvm( 95): GC_EXPLICIT freed <1K, 6% free 4675K/4956K, paused 0ms+11ms, total 58ms I/dalvikvm( 95): System server process 337 has been created I/Zygote ( 95): Accepting command socket connections D/SystemClock( 337): Setting time of day to sec=86400 W/SystemServer( 337): System clock is before 1970; setting to 1970. E/BatteryService( 337): acOnlinePath not found E/BatteryService( 337): usbOnlinePath not found E/BatteryService( 337): wirelessOnlinePath not found E/BatteryService( 337): batteryStatusPath not found E/BatteryService( 337): batteryHealthPath not found E/BatteryService( 337): batteryPresentPath not found E/BatteryService( 337): batteryCapacityPath not found E/BatteryService( 337): batteryVoltagePath not found E/BatteryService( 337): batteryTemperaturePath not found E/BatteryService( 337): batteryTechnologyPath not found I/sysproc ( 337): Entered system_init() I/sysproc ( 337): ServiceManager: 0x589d6308 D/SensorService( 337): nuSensorService starting… E/SensorService( 337): couldn't load sensors module (No such file or directory) I/sysproc ( 337): System server: starting Android runtime. I/sysproc ( 337): System server: starting Android services. I/sysproc ( 337): System server: entering thread pool. I/SystemServer( 337): Entered the Android system server! I/installd( 98): new connection I/SystemServer( 337): Waiting for installd to be ready. I/SystemServer( 337): Enabled StrictMode logging for UI Looper I/Installer( 337): connecting… I/SystemServer( 337): Entropy Mixer I/SystemServer( 337): Enabled StrictMode logging for WM Looper I/SystemServer( 337): Power Manager I/SystemServer( 337): Activity Manager I/ActivityManager( 337): Memory class: 48 W/UsageStats( 337): Usage stats version changed; dropping I/SystemServer( 337): Display Manager I/ActivityManager( 337): Enabled StrictMode logging for AThread's Looper I/SystemServer( 337): Telephony Registry I/SystemServer( 337): Scheduling Policy I/DisplayManagerService( 337): Display device added: DisplayDeviceInfo{"Built-in Screen": 1280 x 720, 68.275 fps, density 192, 361.24445 x 338.66666 dpi, touch INTERNAL, FLAG_DEFAULT_DISPLAY, FLAG_ROTATES_WITH_CONTENT, FLAG_SECURE, FLAG_SUPPORTS_PROTECTED_BUFFERS, rotation 0, type BUILT_IN, address null} I/SystemServer( 337): Package Manager D/dalvikvm( 337): GC_CONCURRENT freed 282K, 9% free 4902K/5372K, paused 7ms+5ms, total 59ms D/dalvikvm( 337): WAIT_FOR_CONCURRENT_GC blocked 11ms D/dalvikvm( 337): GC_CONCURRENT freed 305K, 9% free 5032K/5520K, paused 4ms+6ms, total 53ms W/PackageParser( 337): No actions in intent filter at /system/app/Bluetooth.apk Binary XML file line #199 D/dalvikvm( 337): GC_CONCURRENT freed 161K, 7% free 5257K/5600K, paused 5ms+6ms, total 66ms W/PackageParser( 337): No actions in intent filter at /system/app/Contacts.apk Binary XML file line #533 W/ResourceType( 337): Failure getting entry for 0x7f040018 (t=3 e=24) in package 0 (error -75) W/ResourceType( 337): Failure getting entry for 0x7f040018 (t=3 e=24) in package 0 (error -75) W/PackageParser( 337): Unknown element under : permission at /system/app/Gallery2.apk Binary XML file line #219 W/PackageParser( 337): Unknown element under : permission at /system/app/Gallery2.apk Binary XML file line #222 W/PackageManager( 337): Package com.android.gallery3d desires unavailable shared library com.google.android.media.effects; ignoring! D/dalvikvm( 337): GC_CONCURRENT freed 215K, 7% free 5447K/5844K, paused 5ms+7ms, total 72ms D/dalvikvm( 337): GC_CONCURRENT freed 249K, 7% free 5711K/6140K, paused 9ms+8ms, total 78ms D/dalvikvm( 337): WAIT_FOR_CONCURRENT_GC blocked 21ms D/PackageManager( 337): No files in app dir /vendor/app I/PackageManager( 337): Time to scan packages: 1.88 seconds W/PackageManager( 337): Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH.mail in package com.android.contacts W/PackageManager( 337): Unknown permission android.permission.ADD_SYSTEM_SERVICE in package com.android.phone W/PackageManager( 337): Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH in package com.android.providers.calendar W/PackageManager( 337): Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH.cl in package com.android.providers.calendar W/PackageManager( 337): Unknown permission com.google.android.gallery3d.permission.GALLERY_PROVIDER in package com.android.bluetooth W/PackageManager( 337): Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH.mail in package com.android.calendar W/PackageManager( 337): Not granting permission android.permission.SEND_DOWNLOAD_COMPLETED_INTENTS to package com.android.browser (protectionLevel=2 flags=0x9be45) W/PackageManager( 337): Unknown permission com.google.android.gallery3d.permission.PICASA_STORE in package com.android.dreams.phototable W/PackageManager( 337): Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH in package com.android.settings W/PackageManager( 337): Unknown permission com.google.android.gallery3d.permission.GALLERY_PROVIDER in package com.android.exchange W/PackageManager( 337): Unknown permission com.google.android.gallery3d.permission.GALLERY_PROVIDER in package com.android.email W/PackageManager( 337): Not granting permission android.permission.DEVICE_POWER to package com.android.deskclock (protectionLevel=2 flags=0x8be45) D/dalvikvm( 337): WAIT_FOR_CONCURRENT_GC blocked 1ms D/dalvikvm( 337): GC_EXPLICIT freed 387K, 10% free 5708K/6276K, paused 4ms+9ms, total 121ms I/SystemServer( 337): User Service I/SystemServer( 337): Account Manager I/SystemServer( 337): Content Manager I/SystemServer( 337): System Content Providers I/SystemServer( 337): Lights Service I/SystemServer( 337): Battery Service I/SystemServer( 337): Vibrator Service I/libsuspend( 337): Selected early suspend I/libsuspend( 337): Starting early suspend unblocker thread D/PermissionCache( 94): checking android.permission.ACCESS_SURFACE_FLINGER for uid=1000 => granted (1068 us) D/SurfaceFlinger( 94): Screen acquired, type=0 flinger=0x41ba5318 D/SurfaceFlinger( 94): screen was previously acquired I/SystemServer( 337): Alarm Manager I/SystemServer( 337): Init Watchdog I/SystemServer( 337): Input Manager I/InputManager( 337): Initializing input manager, mUseDevInputEventForAudioJack=false I/SystemServer( 337): Window Manager E/WVMExtractor( 97): Failed to open libwvm.so E/Trace ( 97): error opening trace file: No such file or directory (2) E/WVMExtractor( 97): Failed to open libwvm.so D/dalvikvm( 337): GC_CONCURRENT freed 359K, 9% free 5856K/6408K, paused 7ms+20ms, total 116ms D/dalvikvm( 337): WAIT_FOR_CONCURRENT_GC blocked 63ms I/InputManager( 337): Starting input manager D/EventHub( 337): No input device configuration file found for device ‘Microsoft Basic Optical Mouse’. I/EventHub( 337): New device: id=1, fd=85, path=’/dev/input/event1′, name=’Microsoft Basic Optical Mouse’, classes=0×80000008, configuration=”, keyLayout=”, keyCharacterMap=”, builtinKeyboard=false, usingSuspendBlockIoctl=true, usingClockIoctl=false E/EventHub( 337): could not get driver version for /dev/input/mouse0, Not a typewriter D/BluetoothManagerService( 337): Loading stored name and address I/SystemServer( 337): Bluetooth Manager Service D/BluetoothManagerService( 337): Stored bluetooth Name=Panda Nexus,Address=10:2E:AF:EC:97:76 I/SystemServer( 337): Input Method Service W/InputMethodManagerService( 337): Couldn’t create dir.: /data/system/inputmethod W/ResourceType( 337): Failure getting entry for 0x7f060000 (t=5 e=0) in package 0 (error -75) I/SystemServer( 337): Accessibility Manager E/EventHub( 337): could not get driver version for /dev/input/mice, Not a typewriter E/Trace ( 337): error opening trace file: No such file or directory (2) I/ActivityManager( 337): Config changes=15f8 {1.0 ?mcc?mnc en_US ldltr sw600dp w1066dp h526dp 192dpi lrg long land ?uimode ?night -touch -keyb/v/h -nav/h s.2} I/SystemServer( 337): Mount Service D/MountService( 337): got storage path: /storage/sdcard0 description: Internal storage primary: true removable: false emulated: true mtpReserve: 100 allowMassStorage: false maxFileSize: 0 D/MountService( 337): addVolumeLocked() StorageVolume [mStorageId=65537 mPath=/storage/emulated/0 mDescriptionId=17040613 mPrimary=true mRemovable=false mEmulated=true mMtpReserveSpace=100 mAllowMassStorage=false mMaxFileSize=0 mOwner=UserHandle{0}] I/SystemServer( 337): LockSettingsService I/SystemServer( 337): Device Policy I/SystemServer( 337): Status Bar I/PackageManager( 337): No secure containers on sdcard I/SystemServer( 337): Clipboard Service I/SystemServer( 337): NetworkManagement Service I/SystemServer( 337): Text Service Manager Service W/PackageManager( 337): Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH.mail in package com.android.contacts W/PackageManager( 337): Unknown permission android.permission.ADD_SYSTEM_SERVICE in package com.android.phone W/PackageManager( 337): Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH in package com.android.providers.calendar W/PackageManager( 337): Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH.cl in package com.android.providers.calendar W/PackageManager( 337): Unknown permission com.google.android.gallery3d.permission.GALLERY_PROVIDER in package com.android.bluetooth W/PackageManager( 337): Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH.mail in package com.android.calendar W/PackageManager( 337): Not granting permission android.permission.SEND_DOWNLOAD_COMPLETED_INTENTS to package com.android.browser (protectionLevel=2 flags=0x89be45) W/PackageManager( 337): Unknown permission com.google.android.gallery3d.permission.PICASA_STORE in package com.android.dreams.phototable W/PackageManager( 337): Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH in package com.android.settings W/PackageManager( 337): Unknown permission com.google.android.gallery3d.permission.GALLERY_PROVIDER in package com.android.exchange W/PackageManager( 337): Unknown permission com.google.android.gallery3d.permission.GALLERY_PROVIDER in package com.android.email W/PackageManager( 337): Not granting permission android.permission.DEVICE_POWER to package com.android.deskclock (protectionLevel=2 flags=0x88be45) D/EventHub( 337): No input device configuration file found for device ‘gpio-keys’. I/EventHub( 337): New device: id=2, fd=104, path=’/dev/input/event0′, name=’gpio-keys’, classes=0×1, configuration=”, keyLayout=’/system/usr/keylayout/gpio-keys.kl’, keyCharacterMap=’/system/usr/keychars/Generic.kcm’, builtinKeyboard=false, usingSuspendBlockIoctl=true, usingClockIoctl=false I/InputReader( 337): Device added: id=-1, name=’Virtual’, sources=0×00000301 I/InputReader( 337): Device added: id=2, name=’gpio-keys’, sources=0×00000101 D/dalvikvm( 337): GC_CONCURRENT freed 373K, 9% free 5984K/6548K, paused 7ms+7ms, total 83ms D/dalvikvm( 337): WAIT_FOR_CONCURRENT_GC blocked 43ms I/InputReader( 337): Device added: id=1, name=’Microsoft Basic Optical Mouse’, sources=0×00002002 I/InputReader( 337): Reconfiguring input devices. changes=0×00000004 I/ActivityManager( 337): Config changes=1400 {1.0 ?mcc?mnc en_US ldltr sw600dp w1066dp h526dp 192dpi lrg long land ?uimode ?night -touch -keyb/v/h -nav/h s.3} I/SystemServer( 337): NetworkStats Service I/SystemServer( 337): NetworkPolicy Service I/SystemServer( 337): Wi-Fi P2pService I/SystemServer( 337): Wi-Fi Service I/SystemServer( 337): Connectivity Service D/ConnectivityService( 337): ConnectivityService starting up E/ConnectivityService( 337): Ignoring protectedNetwork 10 E/ConnectivityService( 337): Ignoring protectedNetwork 11 E/ConnectivityService( 337): Ignoring protectedNetwork 12 D/CommandListener( 92): Setting iface cfg D/CommandListener( 92): Trying to bring up eth0 I/WifiService( 337): WifiService starting up with Wi-Fi disabled D/WifiWatchdogStateMachine( 337): Disabling poor network avoidance for wi-fi only device I/SystemServer( 337): Network Service Discovery Service D/NsdService( 337): Network service discovery enabled true I/SystemServer( 337): Throttle Service I/SystemServer( 337): UpdateLock Service I/SystemServer( 337): Notification Manager I/SystemServer( 337): Device Storage Monitor I/SystemServer( 337): Location Manager D/dalvikvm( 337): GC_CONCURRENT freed 323K, 8% free 6127K/6640K, paused 7ms+6ms, total 106ms I/SystemServer( 337): Country Detector I/SystemServer( 337): Search Service I/SystemServer( 337): DropBox Service I/SystemServer( 337): Wallpaper Service I/SystemServer( 337): Audio Service E/AudioPolicyManagerBase( 97): getDeviceForStrategy() speaker device not found for STRATEGY_SONIFICATION E/AudioPolicyManagerBase( 97): getDeviceForStrategy() speaker device not found for STRATEGY_SONIFICATION E/AudioPolicyManagerBase( 97): getDeviceForStrategy() speaker device not found for STRATEGY_SONIFICATION E/AudioPolicyManagerBase( 97): getDeviceForStrategy() speaker device not found for STRATEGY_SONIFICATION E/AudioPolicyManagerBase( 97): getDeviceForStrategy() speaker device not found for STRATEGY_SONIFICATION E/AudioPolicyManagerBase( 97): getDeviceForStrategy() speaker device not found for STRATEGY_SONIFICATION E/AudioPolicyManagerBase( 97): getDeviceForStrategy() speaker device not found for STRATEGY_SONIFICATION E/AudioPolicyManagerBase( 97): getDeviceForStrategy() speaker device not found for STRATEGY_SONIFICATION I/AudioService( 337): Remote Control registerMediaButtonIntent() for PendingIntent{413734d0: PendingIntentRecord{41362c38 android broadcastIntent}} I/SystemServer( 337): Dock Observer W/DockObserver( 337): This kernel does not have dock station support I/SystemServer( 337): Wired Accessory Manager W/WiredAccessoryManager( 337): This kernel does not have wired headset support W/WiredAccessoryManager( 337): This kernel does not have usb audio support I/SystemServer( 337): USB Service I/SystemServer( 337): Serial Service I/SystemServer( 337): Twilight Service I/SystemServer( 337): UI Mode Manager Service I/SystemServer( 337): Backup Service V/BackupManagerService( 337): No ancestral data D/dalvikvm( 337): GC_CONCURRENT freed 330K, 8% free 6237K/6756K, paused 5ms+6ms, total 86ms I/BackupManagerService( 337): Found stale backup journal, scheduling I/BackupManagerService( 337): android I/BackupManagerService( 337): com.android.browser I/BackupManagerService( 337): com.android.calendar I/BackupManagerService( 337): com.android.inputmethod.latin I/BackupManagerService( 337): com.android.providers.settings I/BackupManagerService( 337): com.android.providers.userdictionary I/BackupManagerService( 337): com.android.sharedstoragebackup I/BackupManagerService( 337): Backup enabled => false I/SystemServer( 337): AppWidget Service I/SystemServer( 337): Recognition Service I/SystemServer( 337): DiskStats Service I/SystemServer( 337): SamplingProfiler Service I/SystemServer( 337): NetworkTimeUpdateService I/SystemServer( 337): CommonTimeManagementService I/SystemServer( 337): CertBlacklister I/WindowManager( 337): SAFE MODE not enabled D/dalvikvm( 337): JIT started for system_server I/SystemServer( 337): Dreams Service I/ActivityManager( 337): System now ready I/Zygote ( 337): Process: zygote socket opened I/SystemServer( 337): Making services ready I/ActivityManager( 337): Start proc com.android.systemui for service com.android.systemui/.SystemUIService: pid=418 uid=10036 gids={50036, 1028, 1015, 3002, 3001} D/NetworkManagementService( 337): enabling bandwidth control W/MountService( 337): Duplicate state transition (mounted -> mounted) for /storage/emulated/0 E/Trace ( 418): error opening trace file: No such file or directory (2) D/SystemUIService( 418): loading: class com.android.systemui.statusbar.phone.PhoneStatusBar D/SystemUIService( 418): running: com.android.systemui.statusbar.phone.PhoneStatusBar@412ba3c8 I/StatusBarManagerService( 337): registerStatusBar bar=com.android.internal.statusbar.IStatusBar$Stub$Proxy@414ae0c8 D/dalvikvm( 337): GC_CONCURRENT freed 207K, 6% free 6531K/6928K, paused 10ms+11ms, total 127ms D/dalvikvm( 337): WAIT_FOR_CONCURRENT_GC blocked 118m LikeLike
  8. Dear Kushari,
    For repo sync is failing again & again for last 15 days. Kindly provide me the tar/zip of repo sync. It will be a great help of yours.
    Regards
    Abhay

    Like

Leave a comment