[Q] Is ADB blocked ? I can't access it

Search This thread

GameX2

Senior Member
Jun 28, 2011
84
7
QC
Hi,


I am trying to fix a faulty device, which bootloop very frequently, due to a faulty kernel / audio driver. I've found the problem checking logcats, as well as logcats during the boot sequence.
If anyone know how to fix the audio driver, here's the thread: http://xdaforums.com/showthread.php?p=50961786

I would like to access ADB from this device, this might help, but I cannot get the device detected at all.

USB debugging is definitely enabled, and the device driver is also installed (Not even sure if I had to install a driver for this 2011 device in first place. Device is detected by computer without a problem).

If I type:

Code:
adb devices

The output is just: "List of devices attached" with a blank line.

If I try:

Code:
adb shell

This show up:

Code:
error: device not found

I can tell that ADB is working for another device - I had a LG-P500, and ADB is succesfully working for this phone.

The faulty device is a Creative ZEN Touch 2, but the name won't be of any help. Let's just pretend it's a generic Android device (Even thought no such Android exists) and forget about the name. The ROM installed on it (Froyo, 2.2.1) was customized by Creative, the manufacturer, since it's not a phone, just a multimedia device.

I was wondering if Creative "blocked" any access to ADB, if that's possible. I do know that Creative "does not encourage self-repair", according to the forums.

I also tried ADB wireless, I pressed the grey button that turned green, and then typed adb connect xxx.xxx.x.108 (IP). On the shell, I got the error:

Code:
unable to connect to xxx.xxx.x.108:5555

Altought I wasn't able to connect wirelessly to ADB using my LG phone, neither.

On the ZEN Touch 2, I found the file default.prop, which contain this:

Code:
#
# ADDITIONAL_DEFAULT_PROPERTIES
#
ro.secure=1
ro.allow.mock.location=0
ro.debuggable=0
persist.service.adb.enable=0

I honnestly don't know what the default.prop file is about, but I was wondering if the line "persist.service.adb.enable" being equal to 0 / false, could block the access to ADB shell, in some way (if that's possible).
I've read that this file is hard to modify, other than flash a new boot image.


What could I do to access ADB on this device ? Yes, the device is rooted.

EDIT: I have access to a Linux operating system, if that can make the detection easier. Although I do not have ADB installed on this OS, yet.

Thank you
 
Last edited:

lion567

Senior Member
Oct 3, 2013
190
158
Altought I wasn't able to connect wirelessly to ADB using my LG phone, neither.

On the ZEN Touch 2, I found the file default.prop, which contain this:

Code:
#
# ADDITIONAL_DEFAULT_PROPERTIES
#
ro.secure=1
ro.allow.mock.location=0
ro.debuggable=0
persist.service.adb.enable=0

I honnestly don't know what the default.prop file is about, but I was wondering if the line "persist.service.adb.enable" being equal to 0 / false, could block the access to ADB shell, in some way (if that's possible).
I've read that this file is hard to modify, other than flash a new boot image.


What could I do to access ADB on this device ? Yes, the device is rooted.

EDIT: I have access to a Linux operating system, if that can make the detection easier. Although I do not have ADB installed on this OS, yet.

Thank you

You should edit default.prop in this way
Code:
ro.secure=1
ro.allow.mock.location=0
ro.debuggable=1
persist.sys.usb.config=mass_storage,adb
persist.service.adb.enable=1

Also you should look through your /init.rc for lines like this
Code:
service adbd /sbin/adbd recovery
    disabled
    socket adbd stream 660 system system 

# Always start adbd on userdebug and eng builds
on property:ro.debuggable=1
    write /sys/class/android_usb/android0/enable 1
    start adbd
    setprop service.adb.root 1

# Restart adbd so it can run as root
on property:service.adb.root=1
    write /sys/class/android_usb/android0/enable 0
    restart adbd
    write /sys/class/android_usb/android0/enable 1

And also you should have adbd binary in /sbin
Code:
C:\1\MtkDroidTools2.5.3\adb>adb shell
root@android:/ # ls -al /sbin/adbd
ls -al /sbin/adbd
-rwxr-x--- root      root        141212 2013-09-27 14:37 adbd
root@android:/ #
 
Last edited:

GameX2

Senior Member
Jun 28, 2011
84
7
QC
You should edit default.prop in this way
Code:
ro.secure=1
ro.allow.mock.location=0
ro.debuggable=1
persist.sys.usb.config=mass_storage,adb
persist.service.adb.enable=1

Also you should look through your /init.rc for lines like this
Code:
service adbd /sbin/adbd recovery
    disabled
    socket adbd stream 660 system system 

# Always start adbd on userdebug and eng builds
on property:ro.debuggable=1
    write /sys/class/android_usb/android0/enable 1
    start adbd
    setprop service.adb.root 1

# Restart adbd so it can run as root
on property:service.adb.root=1
    write /sys/class/android_usb/android0/enable 0
    restart adbd
    write /sys/class/android_usb/android0/enable 1

And also you should have adbd binary in /sbin
Code:
C:\1\MtkDroidTools2.5.3\adb>adb shell
root@android:/ # ls -al /sbin/adbd
ls -al /sbin/adbd
-rwxr-x--- root      root        141212 2013-09-27 14:37 adbd
root@android:/ #

Hi,

Thanks for the reply;
I've checked, and adbd does exists in /sbin, with the correct permissions.

Here's the contain of my init.rc file. I don't see the lines you've mentionned, althought there are a few lines related to ADB. Where should I paste your lines ?

Code:
on init

sysclktz 0

loglevel 3

# setup the global environment
    export PATH /sbin:/system/sbin:/system/bin:/system/xbin
    export LD_LIBRARY_PATH /system/lib
    export ANDROID_BOOTLOGO 1
    export ANDROID_ROOT /system
    export ANDROID_ASSETS /system/app
    export ANDROID_DATA /data
    export EXTERNAL_STORAGE /mnt/sdcard
    export EXTERNAL_STORAGE_SD /mnt/sdcard
    export EXTERNAL_STORAGE_UDISK /mnt/udisk
    export EXTERNAL_STORAGE_EXTSD /mnt/extsd
    export ASEC_MOUNTPOINT /mnt/asec
    export SHM_MOUNTPOINT /mnt/shm
    export BOOTCLASSPATH /system/framework/core.jar:/system/framework/ext.jar:/system/framework/framework.jar:/system/framework/android.policy.jar:/system/framework/services.jar

    export BACKLIGHT_PATH /sys/class/backlight/tps60250/brightness
    export MAX_BACKLIGHT_PATH /sys/class/backlight/tps60250/max_brightness
    export VPU_FW_PATH /system/lib/firmware/vpu
    export CODEC_SHM_PATH /mnt/shm
    export GST_PLUGIN_PATH /system/lib/gst_plugins
    export CORE_REGISTER_FILE /system/etc/core_register
    export COMPONENT_REGISTER_FILE /system/etc/component_register
    export CONTENTPIPE_REGISTER_FILE /system/etc/contentpipe_register

    export BUILD_TARGET earlgrey

    export LOG_LEVEL 0
   
# Backward compatibility
    symlink /system/etc /etc
    symlink /sys/kernel/debug /d

# create mountpoints
#    mkdir /mnt 0775 root system
#    mkdir /mnt/sdcard 0000 system system
#    mkdir /mnt/udisk 0000 system system
#    mkdir /mnt/extsd 0000 system system

# Create cgroup mount point for cpu accounting
    mkdir /acct
    mount cgroup none /acct cpuacct
    mkdir /acct/uid

# Backwards Compat - XXX: Going away in G*
    symlink /mnt/sdcard /sdcard
    symlink /mnt/extsd /extsd
    symlink /mnt/udisk /udisk


#    mkdir /system
#    mkdir /data 0771 system system
    mkdir /cache 0770 system cache
    mkdir /config 0500 root root

    # Directory for putting things only root should see.
    mkdir /mnt/secure 0700 root root

    # Directory for staging bindmounts
    mkdir /mnt/secure/staging 0700 root root

    # Directory-target for where the secure container
    # imagefile directory will be bind-mounted
    mkdir /mnt/secure/asec  0700 root root

    # Secure container public mount points.
    mkdir /mnt/asec  0700 root system
    mount tmpfs tmpfs /mnt/asec mode=0755,gid=1000

    # shared memory used by middleware
    mkdir /mnt/shm  0777 system graphics
    mount tmpfs tmpfs /mnt/shm mode=0777,uid=1000,gid=1003,size=1m

    #mount rootfs rootfs / ro remount

    #mkdir /factory 0751 system system
    mount tmpfs tmpfs /factory size=131072

    write /proc/sys/kernel/panic_on_oops 1
    write /proc/sys/kernel/hung_task_timeout_secs 0
    write /proc/cpu/alignment 4
    write /proc/sys/kernel/sched_latency_ns 10000000
    write /proc/sys/kernel/sched_wakeup_granularity_ns 2000000
    write /proc/sys/kernel/sched_compat_yield 1
    write /proc/sys/kernel/sched_child_runs_first 0

# Create cgroup mount points for process groups
    mkdir /dev/cpuctl
    mount cgroup none /dev/cpuctl cpu
    chown system system /dev/cpuctl
    chown system system /dev/cpuctl/tasks
    chmod 0777 /dev/cpuctl/tasks
    write /dev/cpuctl/cpu.shares 1024

    mkdir /dev/cpuctl/fg_boost
    chown system system /dev/cpuctl/fg_boost/tasks
    chmod 0777 /dev/cpuctl/fg_boost/tasks
    write /dev/cpuctl/fg_boost/cpu.shares 1024

    mkdir /dev/cpuctl/bg_non_interactive
    chown system system /dev/cpuctl/bg_non_interactive/tasks
    chmod 0777 /dev/cpuctl/bg_non_interactive/tasks
    # 5.0 %
    write /dev/cpuctl/bg_non_interactive/cpu.shares 52

# Set permission for FSL device node
    chmod 0777 /dev/mxc_vpu
# allow access to uart port for gps module
    chmod 0777 /dev/ttymxc0
    chmod 0777 /dev/ttymxc1
    chmod 0777 /dev/ttymxc2

# for lcd driver work mode control
    chown system system /dev/ili9481
    chmod 0771 /dev/ili9481

# mount ext4 partitions
    # Mount /system rw first to give the filesystem a chance to save a checkpoint
    mount ext4 /dev/block/mmcblk0p2 /system
    mount ext4 /dev/block/mmcblk0p2 /system rw remount

    chmod 0555 /system/etc/install-recovery.sh

    mount ext4 /dev/block/mmcblk0p5 /data nosuid nodev
    chown system system /data
    chmod 0771 /data

    exec /system/etc/init.first_time.sh

    mount ext4 /dev/block/mmcblk0p2 /system ro remount

    # We chown/chmod /data again so because mount is run as root + defaults
    mount ext4 /dev/block/mmcblk0p5 /data nosuid nodev
    chown system system /data
    chmod 0771 /data

    # Create dump dir and collect dumps.
    # Do this before we mount cache so eventually we can use cache for
    # storing dumps on platforms which do not have a dedicated dump partition.
  
    mkdir /data/dontpanic
    chown root log /data/dontpanic
    chmod 0750 /data/dontpanic

    mkdir /data/synergy
    chown root log /data/synergy
    chmod 0777 /data/synergy

    # Collect apanic data, free resources and re-arm trigger
    copy /proc/apanic_console /data/dontpanic/apanic_console
    chown root log /data/dontpanic/apanic_console
    chmod 0640 /data/dontpanic/apanic_console

    copy /proc/apanic_threads /data/dontpanic/apanic_threads
    chown root log /data/dontpanic/apanic_threads
    chmod 0640 /data/dontpanic/apanic_threads

    write /proc/apanic_console 1

    # Same reason as /data above
    mount ext4 /dev/block/mmcblk0p6 /cache nosuid nodev
    chown system cache /cache
    chmod 0770 /cache

    # This may have been created by the recovery system with odd permissions
    chown system cache /cache/recovery
    chmod 0770 /cache/recovery

    #change permissions on vmallocinfo so we can grab it from bugreports
    chown root log /proc/vmallocinfo
    chmod 0440 /proc/vmallocinfo

    #change permissions on kmsg & sysrq-trigger so bugreports can grab kthread stacks
    chown root system /proc/kmsg
    chmod 0400 /proc/kmsg
    chown root system /proc/sysrq-trigger
    chmod 0220 /proc/sysrq-trigger

# create basic filesystem structure
    mkdir /data/misc 01771 system misc
    mkdir /data/misc/bluetoothd 0770 bluetooth bluetooth
    mkdir /data/misc/bluetooth 0770 system system
    mkdir /data/misc/keystore 0700 keystore keystore
    mkdir /data/misc/vpn 0770 system system
    mkdir /data/misc/systemkeys 0700 system system
    mkdir /data/misc/vpn/profiles 0770 system system
    # give system access to wpa_supplicant.conf for backup and restore
    mkdir /data/misc/wifi 0770 wifi wifi
    chmod 0770 /data/misc/wifi
    chmod 0660 /data/misc/wifi/wpa_supplicant.conf
    mkdir /data/local 0771 shell shell
    mkdir /data/local/tmp 0771 shell shell
    mkdir /data/data 0771 system system
    mkdir /data/app-private 0771 system system
    mkdir /data/app 0771 system system
    mkdir /data/property 0700 root root
    mkdir /data/version 0770 root root

    # create dalvik-cache and double-check the perms
    mkdir /data/dalvik-cache 0771 system system
    chown system system /data/dalvik-cache
    chmod 0771 /data/dalvik-cache

    # create the lost+found directories, so as to enforce our permissions
    mkdir /data/lost+found 0770
    mkdir /cache/lost+found 0770

    # double check the perms, in case lost+found already exists, and set owner
    chown root root /data/lost+found
    chmod 0770 /data/lost+found
    chown root root /cache/lost+found
    chmod 0770 /cache/lost+found

    # change permission for keymap file temporarily
    # should be removed when working out keymap later
    chmod 0777 /system/usr/keychars/qwerty.kcm.bin
    chmod 0777 /system/usr/keychars/Dell_Dell_USB_Keyboard.kcm.bin
    chmod 0777 /system/usr/keychars/mxckpd.kcm.bin
    chmod 0777 /system/usr/keychars/gpio-keys.kcm.bin
    chmod 0777 /system/usr/keychars/mxc_ts-keypad.kcm.bin
    chmod 0777 /system/usr/keychars/mxc_power_key.kcm.bin
    chmod 0777 /system/usr/keychars/AVRCP.kcm.bin

    chmod 0777 /sys/class/graphics/fb0/fsl_disp_property
    chmod 0777 /sys/class/graphics/fb1/fsl_disp_property

on boot
# basic network init
    ifup lo
    hostname localhost
    domainname localdomain

    mkdir /data/system 0775 system system
    #exec /sbin/ts_calibrator
    exec system/xbin/flash.dump.sh
   
# set RLIMIT_NICE to allow priorities from 19 to -20
    setrlimit 13 40 40

# Define the oom_adj values for the classes of processes that can be
# killed by the kernel.  These are used in ActivityManagerService.
    setprop ro.FOREGROUND_APP_ADJ 0
    setprop ro.VISIBLE_APP_ADJ 1
    setprop ro.SECONDARY_SERVER_ADJ 2
    setprop ro.BACKUP_APP_ADJ 2
    setprop ro.HOME_APP_ADJ 4
    setprop ro.HIDDEN_APP_MIN_ADJ 7
    setprop ro.CONTENT_PROVIDER_ADJ 14
    setprop ro.EMPTY_APP_ADJ 15

# Define the memory thresholds at which the above process classes will
# be killed.  These numbers are in pages (4k).
    setprop ro.FOREGROUND_APP_MEM 1536
    setprop ro.VISIBLE_APP_MEM 2048
    setprop ro.SECONDARY_SERVER_MEM 4096
    setprop ro.BACKUP_APP_MEM 4096
    setprop ro.HOME_APP_MEM 4096
    setprop ro.HIDDEN_APP_MEM 5120
    setprop ro.CONTENT_PROVIDER_MEM 5632
    setprop ro.EMPTY_APP_MEM 6144

# Write value must be consistent with the above properties.
# Note that the driver only supports 6 slots, so we have HOME_APP at the
# same memory level as services.
    write /sys/module/lowmemorykiller/parameters/adj 0,1,2,7,14,15

    write /proc/sys/vm/lowmem_reserve_ratio 1
    write /proc/sys/vm/overcommit_memory 1
    write /proc/sys/vm/min_free_order_shift 4
    write /sys/module/lowmemorykiller/parameters/minfree 1536,2048,4096,5120,5632,6144

    # Set init its forked children's oom_adj.
    write /proc/1/oom_adj -16

    # Tweak background writeout
    write /proc/sys/vm/dirty_expire_centisecs 200
    write /proc/sys/vm/dirty_background_ratio  5

    # Permissions for System Server and daemons.
    chown radio system /sys/android_power/state
    chown radio system /sys/android_power/request_state
    chown radio system /sys/android_power/acquire_full_wake_lock
    chown radio system /sys/android_power/acquire_partial_wake_lock
    chown radio system /sys/android_power/release_wake_lock
    chown radio system /sys/power/state
    chown radio system /sys/power/wake_lock
    chown radio system /sys/power/wake_unlock
    chmod 0660 /sys/power/state
    chmod 0660 /sys/power/wake_lock
    chmod 0660 /sys/power/wake_unlock
    #chown system system /sys/class/timed_output/vibrator/enable
    chown system system /sys/class/leds/keyboard-backlight/brightness
    chown system system /sys/class/leds/lcd-backlight/brightness
    chown system system /sys/class/leds/button-backlight/brightness
    chown system system /sys/class/leds/jogball-backlight/brightness
    chown system system /sys/class/leds/red/brightness
    chown system system /sys/class/leds/green/brightness
    chown system system /sys/class/leds/blue/brightness
    chown system system /sys/class/leds/red/device/grpfreq
    chown system system /sys/class/leds/red/device/grppwm
    chown system system /sys/class/leds/red/device/blink
    chown system system /sys/class/leds/red/brightness
    chown system system /sys/class/leds/green/brightness
    chown system system /sys/class/leds/blue/brightness
    chown system system /sys/class/leds/red/device/grpfreq
    chown system system /sys/class/leds/red/device/grppwm
    chown system system /sys/class/leds/red/device/blink
    #chown system system /sys/class/timed_output/vibrator/enable
    chown system system /sys/class/haptic/oneshot
    chown system system /sys/module/sco/parameters/disable_esco
    chown system system /sys/kernel/ipv4/tcp_wmem_min
    chown system system /sys/kernel/ipv4/tcp_wmem_def
    chown system system /sys/kernel/ipv4/tcp_wmem_max
    chown system system /sys/kernel/ipv4/tcp_rmem_min
    chown system system /sys/kernel/ipv4/tcp_rmem_def
    chown system system /sys/kernel/ipv4/tcp_rmem_max
    chown root radio /proc/cmdline
# Chmod/chown FSL specific sys entry
    chown radio system /sys/devices/platform/mxc_dvfs_core.0/enable
    chown radio system /sys/devices/platform/busfreq.0/enable
    chown system system /sys/class/backlight/tps60250/brightness
    chmod 0660 /sys/devices/platform/mxc_dvfs_core.0/enable
    chmod 0660 /sys/devices/platform/busfreq.0/enable
    chmod 0660 /sys/class/backlight/tps60250/brightness

    write /sys/devices/platform/busfreq.0/enable 1
    write /sys/devices/platform/mxc_dvfs_core.0/enable 1   

# allow control power for ecompass and gsensor
    chown system system /sys/class/i2c-adapter/i2c-0/0-001c/akm8973_ctl
    chmod 0777 /sys/class/i2c-adapter/i2c-0/0-001c/akm8973_ctl
    #chown system system /sys/class/i2c-adapter/i2c-0/0-001d/power_ctl
    #chmod 0777 /sys/class/i2c-adapter/i2c-0/0-001d/power_ctl

# for GPS gpio driver for gps power and bootmode control
    chown system system    /dev/gps_gpio
    chown system system /sys/devices/virtual/gps/gps_gpio/gps_power
    chown system system /sys/devices/virtual/gps/gps_gpio/gps_bootmode
    chmod 0771 /dev/gps_gpio
    chmod 0660 /sys/devices/virtual/gps/gps_gpio/gps_power
    chmod 0771 /sys/devices/virtual/gps/gps_gpio/gps_bootmode

# for Sensor HAL
    chown system system /dev/accel
    chown system system /dev/akm8973_dev
    chown system system /dev/akm8973_aot
    chmod 0777 /dev/accel
    chmod 0777 /dev/akm8973_dev
    chmod 0777 /dev/akm8973_aot

# Define TCP buffer sizes for various networks
#   ReadMin, ReadInitial, ReadMax, WriteMin, WriteInitial, WriteMax,
    setprop net.tcp.buffersize.default 4096,87380,110208,4096,16384,110208
    setprop net.tcp.buffersize.wifi    4095,87380,110208,4096,16384,110208
    setprop net.tcp.buffersize.umts    4094,87380,110208,4096,16384,110208
    setprop net.tcp.buffersize.edge    4093,26280,35040,4096,16384,35040
    setprop net.tcp.buffersize.gprs    4092,8760,11680,4096,8760,11680

# Set property for FSL specific feature
# Init second display connection state
    setprop rw.SECOND_DISPLAY_CONNECTED 0
     
# Define gst player property
   setprop media.gstreamer.enable-player 0

# Comment the usage of stageflight media framework
   setprop  media.stagefright.enable-scan 0
   setprop  media.stagefright.enable-player 0
   setprop  media.stagefright.enable-record 0
   setprop  media.stagefright.enable-http 0
   setprop  media.stagefright.enable-meta 0

# Define fsl avi/aac/asf/mkv/flv/flac format support
    setprop ro.FSL_AVI_PARSER 1
    setprop ro.FSL_AAC_PARSER 1
    setprop ro.FSL_ASF_PARSER 1
    setprop ro.FSL_FLV_PARSER 1
    setprop ro.FSL_MKV_PARSER 1
    setprop ro.FSL_FLAC_PARSER 1


# Define fsl display init mode
    setprop ro.FSL_LANDSCAPE_MODE 1

# Define fsl xec mode
    setprop xec.dls.enabled 1
    setprop xec.aa.enabled 1
    setprop xec.dls.rate 0
    setprop xec.aa.rate 100

# Define fsl dvfs property
    setprop ro.dvfs.enabled 1

# Define UI to TVOUT,change this setting to 1 and uncomment below write commands
    setprop ro.UI_TVOUT_DISPLAY 0
    #write /sys/class/graphics/fb0/blank 1
    #write /sys/class/graphics/fb1/blank 1
    #write /sys/class/graphics/fb2/blank 1
    #write /sys/class/graphics/fb0/fsl_disp_property 1-layer-fb
    #write /sys/class/graphics/fb1/mode U:720x480i-60\n
    #write /sys/class/graphics/fb1/blank 0
    chown system system /sys/class/graphics/fb1/blank
    chmod 0644 /sys/class/graphics/fb1/blank
    chown system system /sys/class/graphics/fb1/mode
    chmod 0644 /sys/class/graphics/fb1/mode
    #chown system system /sys/devices/platform/mxc_sdc_fb.0/graphics/fb0/blank
    #chmod 0644 /sys/devices/platform/mxc_sdc_fb.0/graphics/fb0/blank

# Define default notification_sound
    setprop ro.config.notification_sound OnTheHunt.ogg

# for switch on/off framebuffer
    chown system system /sys/devices/platform/mxc_sdc_fb.0/graphics/fb0/blank
    chown system system /sys/devices/platform/mxc_sdc_fb.1/graphics/fb1/blank
    chown system system /sys/devices/platform/mxc_sdc_fb.2/graphics/fb2/blank
    chmod 0644 /sys/devices/platform/mxc_sdc_fb.0/graphics/fb0/blank
    chmod 0644 /sys/devices/platform/mxc_sdc_fb.1/graphics/fb1/blank
    chmod 0644 /sys/devices/platform/mxc_sdc_fb.2/graphics/fb2/blank

# ALSA mixer naming define
    setprop alsa.mixer.playback.master Playback
    setprop alsa.mixer.capture.master Capture
    setprop alsa.mixer.playback.speaker Playback
    setprop alsa.mixer.playback.headset Headphone
    setprop alsa.mixer.capture.headset Capture

# Prepare for wifi
    setprop wifi.interface wlan0
    mkdir /data/misc/wifi/sockets 0770 wifi wifi
    mkdir /data/misc/dhcp 0770 dhcp dhcp
    chown dhcp dhcp /data/misc/dhcp

# DD partitions for diversity and ECD key region for access
    chmod 0751 /factory
    chown system system /factory
    chmod 0777 /dev/block/mmcblk0
    chmod 6777 /system/bin/dd
    chown system system /system/bin/toolbox
    exec /system/xbin/init.diversity.ecd.sh

# mount calibration data region
    chown system system /dev/block/mmcblk0
    chmod 0777 /dev/block/mmcblk0
    chmod 0777 /sys/module/pd_ts13892/parameters/calibration
    exec /system/xbin/init.calibration.sh
    exec /system/bin/ts13892_calibrator

    chmod 751 /system/xbin/flash_sync

# Prepare for bluetooth
#    chown bluetooth bluetooth /sys/class/rfkill/rfkill0/type
#    chmod 666 /sys/class/rfkill/rfkill0/state
#    chown bluetooth bluetooth /sys/class/rfkill/rfkill0/state
#    write /sys/class/rfkill/rfkill0/state 0

# Enable USB host1'remote wakeup event wakeup android system
#    write /sys/bus/platform/drivers/fsl-ehci/fsl-ehci.1/power/wakeup enabled

# Prepare for RIL
    setprop gsm.ril.delay 15

#change file permission for synergy
    chown root shell /system/etc/synergy_fts.sh
    chmod 0550 /system/etc/synergy_fts.sh

    class_start default

## Daemon processes to be run by init.
##
service console /system/bin/sh
    console

# adbd is controlled by the persist.service.adb.enable system property
service adbd /sbin/adbd
    user root
    group root
    disabled

# adbd on at boot in emulator
#on property:ro.kernel.qemu=1
#    start adbd

on property:persist.service.adb.enable=1
    start adbd

on property:persist.service.adb.enable=0
    stop adbd

service servicemanager /system/bin/servicemanager
    user system
    critical
    onrestart restart zygote
    onrestart restart media

service vold /system/bin/vold
    socket vold stream 0660 root mount
    ioprio be 2

service netd /system/bin/netd
    socket netd stream 0660 root system

service dispd /system/bin/dispd
    socket dispd stream 0660 root system

service debuggerd /system/bin/debuggerd

service ril-daemon /system/bin/rild -l /system/lib/libreference-ril.so -- -d /dev/ttyUSB3 -u /dev/ttyUSB0
    socket rild stream 660 root radio
    socket rild-debug stream 660 radio system
    user root
    group radio cache inet misc audio

service zygote /system/bin/app_process -Xzygote /system/bin --zygote --start-system-server
    socket zygote stream 666
    onrestart write /sys/android_power/request_state wake
    onrestart write /sys/power/state on
    onrestart restart media

service media /system/bin/mediaserver
    user media
    group system audio camera graphics inet net_bt net_bt_admin net_raw
    ioprio rt 4

service bootanim /system/bin/bootanimation
    user graphics
    group graphics
    disabled
    oneshot

service dbus /system/bin/dbus-daemon --system --nofork
    socket dbus stream 666 bluetooth bluetooth
    user bluetooth
    group bluetooth net_bt_admin

service bluetoothd /system/bin/bluetoothd -n
    socket bluetooth stream 660 bluetooth bluetooth
    socket dbus_bluetooth stream 660 bluetooth bluetooth
    # init.rc does not yet support applying capabilities, so run as root and
    # let bluetoothd drop uid to bluetooth with the right linux capabilities
    group bluetooth net_bt_admin misc
    disabled

service hcid /system/bin/hcid -s -n -f /etc/bluez/hcid.conf
    socket bluetooth stream 660 bluetooth bluetooth
    socket dbus_bluetooth stream 660 bluetooth bluetooth
    # init.rc does not yet support applying capabilities, so run as root and
    # let hcid drop uid to bluetooth with the right linux capabilities
    group bluetooth net_bt_admin misc
    disabled
service hciattach /system/bin/logwrapper /system/bin/sh /system/etc/mxc_bt.sh
    user bluetooth
    group bluetooth net_bt_admin
    disabled
    oneshot
service hfag /system/bin/sdptool add --channel=10 HFAG
    user bluetooth
    group bluetooth net_bt_admin
    disabled
    oneshot

service hsag /system/bin/sdptool add --channel=11 HSAG
    user bluetooth
    group bluetooth net_bt_admin
    disabled
    oneshot

service opush /system/bin/sdptool add --channel=12 OPUSH
    user bluetooth
    group bluetooth net_bt_admin
    disabled
    oneshot

service pbap /system/bin/sdptool add --channel=19 PBAP
    user bluetooth
    group bluetooth net_bt_admin
    disabled
    oneshot

service synergy_fts_init /system/etc/synergy_fts.sh
    user root
    group sdcard_rw
    oneshot

service synergysdpops /system/etc/synergy_sdptool.sh 12 0x1105 ReservedOPPS
    user root
    disabled
    oneshot

#service hidloopback /system/etc/insert-hiddrv.sh
#    user root
#    oneshot

service installd /system/bin/installd
    socket installd stream 600 system system

service flash_recovery /system/etc/install-recovery.sh
    oneshot

service racoon /system/bin/racoon
    socket racoon stream 600 system system
    # racoon will setuid to vpn after getting necessary resources.
    group net_admin
    disabled
    oneshot

service mtpd /system/bin/mtpd
    socket mtpd stream 600 system system
    user vpn
    group vpn net_admin net_raw
    disabled
    oneshot

service keystore /system/bin/keystore /data/misc/keystore
    user keystore
    group keystore
    socket keystore stream 666

service dumpstate /system/bin/dumpstate -s
    socket dumpstate stream 0660 shell log
    disabled
    oneshot


#service dhcpcd /system/bin/logwrapper /system/bin/dhcpcd -d -B wlan0
service dhcpcd /system/bin/dhcpcd -d -B wlan0
    disabled
    oneshot

service wpa_supplicant /system/bin/logwrapper /system/bin/wpa_supplicant \
    -Dwext -iwlan0 -c/data/misc/wifi/wpa_supplicant.conf
    user root
    group wifi inet
    socket wpa_wlan0 dgram 660 wifi wifi
    oneshot

#service pppd_gprs /etc/init.gprs-pppd
    #user root
    #group radio cache inet misc
    #disabled
    #oneshot

service akmd2 /system/bin/akmd2
    user system
    group system
    oneshot

# save diversity.bin from memory to emmc
service div_restore_m /system/bin/dd if=/factory/diversity.bin of=/dev/block/mmcblk0 obs=512 seek=14337 count=1
    user root
    group system
    disabled
    oneshot

# restore diversity.bin from diversity data
service div_restore_w /system/bin/dd if=/factory/diversity.master of=/dev/block/mmcblk0 obs=512 seek=14336 count=1
    user root
    group system
    disabled
    oneshot

# flash sync
service flash_sync /system/xbin/flash_sync
    user root
    group system

service synergy_exe /system/xbin/synergy_exe
    user root

service a2dp_adapter /system/bin/csr_liba2dp_process
    user root
    group system audio camera graphics inet net_bt net_bt_admin

service flash_wifi /system/xbin/flash_wifi
    disabled
    oneshot

service wlan0_check /system/xbin/wlan0_check
    disabled
    oneshot

As for the default.prop file, should I just delete the contain, and simply replace it by yours? The file will save properly? Additionally, may I ask what defaut.prop is used for ?

Thank you
 

lion567

Senior Member
Oct 3, 2013
190
158
Hi,

Thanks for the reply;
I've checked, and adbd does exists in /sbin, with the correct permissions.

Here's the contain of my init.rc file. I don't see the lines you've mentionned, althought there are a few lines related to ADB. Where should I paste your lines ?

Code:
on init

sysclktz 0

loglevel 3

# setup the global environment
    export PATH /sbin:/system/sbin:/system/bin:/system/xbin
    export LD_LIBRARY_PATH /system/lib
    export ANDROID_BOOTLOGO 1
    export ANDROID_ROOT /system
    export ANDROID_ASSETS /system/app
    export ANDROID_DATA /data
    export EXTERNAL_STORAGE /mnt/sdcard
    export EXTERNAL_STORAGE_SD /mnt/sdcard
    export EXTERNAL_STORAGE_UDISK /mnt/udisk
    export EXTERNAL_STORAGE_EXTSD /mnt/extsd
    export ASEC_MOUNTPOINT /mnt/asec
    export SHM_MOUNTPOINT /mnt/shm
    export BOOTCLASSPATH /system/framework/core.jar:/system/framework/ext.jar:/system/framework/framework.jar:/system/framework/android.policy.jar:/system/framework/services.jar

    export BACKLIGHT_PATH /sys/class/backlight/tps60250/brightness
    export MAX_BACKLIGHT_PATH /sys/class/backlight/tps60250/max_brightness
    export VPU_FW_PATH /system/lib/firmware/vpu
    export CODEC_SHM_PATH /mnt/shm
    export GST_PLUGIN_PATH /system/lib/gst_plugins
    export CORE_REGISTER_FILE /system/etc/core_register
    export COMPONENT_REGISTER_FILE /system/etc/component_register
    export CONTENTPIPE_REGISTER_FILE /system/etc/contentpipe_register

    export BUILD_TARGET earlgrey

    export LOG_LEVEL 0
   
# Backward compatibility
    symlink /system/etc /etc
    symlink /sys/kernel/debug /d

# create mountpoints
#    mkdir /mnt 0775 root system
#    mkdir /mnt/sdcard 0000 system system
#    mkdir /mnt/udisk 0000 system system
#    mkdir /mnt/extsd 0000 system system

# Create cgroup mount point for cpu accounting
    mkdir /acct
    mount cgroup none /acct cpuacct
    mkdir /acct/uid

# Backwards Compat - XXX: Going away in G*
    symlink /mnt/sdcard /sdcard
    symlink /mnt/extsd /extsd
    symlink /mnt/udisk /udisk


#    mkdir /system
#    mkdir /data 0771 system system
    mkdir /cache 0770 system cache
    mkdir /config 0500 root root

    # Directory for putting things only root should see.
    mkdir /mnt/secure 0700 root root

    # Directory for staging bindmounts
    mkdir /mnt/secure/staging 0700 root root

    # Directory-target for where the secure container
    # imagefile directory will be bind-mounted
    mkdir /mnt/secure/asec  0700 root root

    # Secure container public mount points.
    mkdir /mnt/asec  0700 root system
    mount tmpfs tmpfs /mnt/asec mode=0755,gid=1000

    # shared memory used by middleware
    mkdir /mnt/shm  0777 system graphics
    mount tmpfs tmpfs /mnt/shm mode=0777,uid=1000,gid=1003,size=1m

    #mount rootfs rootfs / ro remount

    #mkdir /factory 0751 system system
    mount tmpfs tmpfs /factory size=131072

    write /proc/sys/kernel/panic_on_oops 1
    write /proc/sys/kernel/hung_task_timeout_secs 0
    write /proc/cpu/alignment 4
    write /proc/sys/kernel/sched_latency_ns 10000000
    write /proc/sys/kernel/sched_wakeup_granularity_ns 2000000
    write /proc/sys/kernel/sched_compat_yield 1
    write /proc/sys/kernel/sched_child_runs_first 0

# Create cgroup mount points for process groups
    mkdir /dev/cpuctl
    mount cgroup none /dev/cpuctl cpu
    chown system system /dev/cpuctl
    chown system system /dev/cpuctl/tasks
    chmod 0777 /dev/cpuctl/tasks
    write /dev/cpuctl/cpu.shares 1024

    mkdir /dev/cpuctl/fg_boost
    chown system system /dev/cpuctl/fg_boost/tasks
    chmod 0777 /dev/cpuctl/fg_boost/tasks
    write /dev/cpuctl/fg_boost/cpu.shares 1024

    mkdir /dev/cpuctl/bg_non_interactive
    chown system system /dev/cpuctl/bg_non_interactive/tasks
    chmod 0777 /dev/cpuctl/bg_non_interactive/tasks
    # 5.0 %
    write /dev/cpuctl/bg_non_interactive/cpu.shares 52

# Set permission for FSL device node
    chmod 0777 /dev/mxc_vpu
# allow access to uart port for gps module
    chmod 0777 /dev/ttymxc0
    chmod 0777 /dev/ttymxc1
    chmod 0777 /dev/ttymxc2

# for lcd driver work mode control
    chown system system /dev/ili9481
    chmod 0771 /dev/ili9481

# mount ext4 partitions
    # Mount /system rw first to give the filesystem a chance to save a checkpoint
    mount ext4 /dev/block/mmcblk0p2 /system
    mount ext4 /dev/block/mmcblk0p2 /system rw remount

    chmod 0555 /system/etc/install-recovery.sh

    mount ext4 /dev/block/mmcblk0p5 /data nosuid nodev
    chown system system /data
    chmod 0771 /data

    exec /system/etc/init.first_time.sh

    mount ext4 /dev/block/mmcblk0p2 /system ro remount

    # We chown/chmod /data again so because mount is run as root + defaults
    mount ext4 /dev/block/mmcblk0p5 /data nosuid nodev
    chown system system /data
    chmod 0771 /data

    # Create dump dir and collect dumps.
    # Do this before we mount cache so eventually we can use cache for
    # storing dumps on platforms which do not have a dedicated dump partition.
  
    mkdir /data/dontpanic
    chown root log /data/dontpanic
    chmod 0750 /data/dontpanic

    mkdir /data/synergy
    chown root log /data/synergy
    chmod 0777 /data/synergy

    # Collect apanic data, free resources and re-arm trigger
    copy /proc/apanic_console /data/dontpanic/apanic_console
    chown root log /data/dontpanic/apanic_console
    chmod 0640 /data/dontpanic/apanic_console

    copy /proc/apanic_threads /data/dontpanic/apanic_threads
    chown root log /data/dontpanic/apanic_threads
    chmod 0640 /data/dontpanic/apanic_threads

    write /proc/apanic_console 1

    # Same reason as /data above
    mount ext4 /dev/block/mmcblk0p6 /cache nosuid nodev
    chown system cache /cache
    chmod 0770 /cache

    # This may have been created by the recovery system with odd permissions
    chown system cache /cache/recovery
    chmod 0770 /cache/recovery

    #change permissions on vmallocinfo so we can grab it from bugreports
    chown root log /proc/vmallocinfo
    chmod 0440 /proc/vmallocinfo

    #change permissions on kmsg & sysrq-trigger so bugreports can grab kthread stacks
    chown root system /proc/kmsg
    chmod 0400 /proc/kmsg
    chown root system /proc/sysrq-trigger
    chmod 0220 /proc/sysrq-trigger

# create basic filesystem structure
    mkdir /data/misc 01771 system misc
    mkdir /data/misc/bluetoothd 0770 bluetooth bluetooth
    mkdir /data/misc/bluetooth 0770 system system
    mkdir /data/misc/keystore 0700 keystore keystore
    mkdir /data/misc/vpn 0770 system system
    mkdir /data/misc/systemkeys 0700 system system
    mkdir /data/misc/vpn/profiles 0770 system system
    # give system access to wpa_supplicant.conf for backup and restore
    mkdir /data/misc/wifi 0770 wifi wifi
    chmod 0770 /data/misc/wifi
    chmod 0660 /data/misc/wifi/wpa_supplicant.conf
    mkdir /data/local 0771 shell shell
    mkdir /data/local/tmp 0771 shell shell
    mkdir /data/data 0771 system system
    mkdir /data/app-private 0771 system system
    mkdir /data/app 0771 system system
    mkdir /data/property 0700 root root
    mkdir /data/version 0770 root root

    # create dalvik-cache and double-check the perms
    mkdir /data/dalvik-cache 0771 system system
    chown system system /data/dalvik-cache
    chmod 0771 /data/dalvik-cache

    # create the lost+found directories, so as to enforce our permissions
    mkdir /data/lost+found 0770
    mkdir /cache/lost+found 0770

    # double check the perms, in case lost+found already exists, and set owner
    chown root root /data/lost+found
    chmod 0770 /data/lost+found
    chown root root /cache/lost+found
    chmod 0770 /cache/lost+found

    # change permission for keymap file temporarily
    # should be removed when working out keymap later
    chmod 0777 /system/usr/keychars/qwerty.kcm.bin
    chmod 0777 /system/usr/keychars/Dell_Dell_USB_Keyboard.kcm.bin
    chmod 0777 /system/usr/keychars/mxckpd.kcm.bin
    chmod 0777 /system/usr/keychars/gpio-keys.kcm.bin
    chmod 0777 /system/usr/keychars/mxc_ts-keypad.kcm.bin
    chmod 0777 /system/usr/keychars/mxc_power_key.kcm.bin
    chmod 0777 /system/usr/keychars/AVRCP.kcm.bin

    chmod 0777 /sys/class/graphics/fb0/fsl_disp_property
    chmod 0777 /sys/class/graphics/fb1/fsl_disp_property

on boot
# basic network init
    ifup lo
    hostname localhost
    domainname localdomain

    mkdir /data/system 0775 system system
    #exec /sbin/ts_calibrator
    exec system/xbin/flash.dump.sh
   
# set RLIMIT_NICE to allow priorities from 19 to -20
    setrlimit 13 40 40

# Define the oom_adj values for the classes of processes that can be
# killed by the kernel.  These are used in ActivityManagerService.
    setprop ro.FOREGROUND_APP_ADJ 0
    setprop ro.VISIBLE_APP_ADJ 1
    setprop ro.SECONDARY_SERVER_ADJ 2
    setprop ro.BACKUP_APP_ADJ 2
    setprop ro.HOME_APP_ADJ 4
    setprop ro.HIDDEN_APP_MIN_ADJ 7
    setprop ro.CONTENT_PROVIDER_ADJ 14
    setprop ro.EMPTY_APP_ADJ 15

# Define the memory thresholds at which the above process classes will
# be killed.  These numbers are in pages (4k).
    setprop ro.FOREGROUND_APP_MEM 1536
    setprop ro.VISIBLE_APP_MEM 2048
    setprop ro.SECONDARY_SERVER_MEM 4096
    setprop ro.BACKUP_APP_MEM 4096
    setprop ro.HOME_APP_MEM 4096
    setprop ro.HIDDEN_APP_MEM 5120
    setprop ro.CONTENT_PROVIDER_MEM 5632
    setprop ro.EMPTY_APP_MEM 6144

# Write value must be consistent with the above properties.
# Note that the driver only supports 6 slots, so we have HOME_APP at the
# same memory level as services.
    write /sys/module/lowmemorykiller/parameters/adj 0,1,2,7,14,15

    write /proc/sys/vm/lowmem_reserve_ratio 1
    write /proc/sys/vm/overcommit_memory 1
    write /proc/sys/vm/min_free_order_shift 4
    write /sys/module/lowmemorykiller/parameters/minfree 1536,2048,4096,5120,5632,6144

    # Set init its forked children's oom_adj.
    write /proc/1/oom_adj -16

    # Tweak background writeout
    write /proc/sys/vm/dirty_expire_centisecs 200
    write /proc/sys/vm/dirty_background_ratio  5

    # Permissions for System Server and daemons.
    chown radio system /sys/android_power/state
    chown radio system /sys/android_power/request_state
    chown radio system /sys/android_power/acquire_full_wake_lock
    chown radio system /sys/android_power/acquire_partial_wake_lock
    chown radio system /sys/android_power/release_wake_lock
    chown radio system /sys/power/state
    chown radio system /sys/power/wake_lock
    chown radio system /sys/power/wake_unlock
    chmod 0660 /sys/power/state
    chmod 0660 /sys/power/wake_lock
    chmod 0660 /sys/power/wake_unlock
    #chown system system /sys/class/timed_output/vibrator/enable
    chown system system /sys/class/leds/keyboard-backlight/brightness
    chown system system /sys/class/leds/lcd-backlight/brightness
    chown system system /sys/class/leds/button-backlight/brightness
    chown system system /sys/class/leds/jogball-backlight/brightness
    chown system system /sys/class/leds/red/brightness
    chown system system /sys/class/leds/green/brightness
    chown system system /sys/class/leds/blue/brightness
    chown system system /sys/class/leds/red/device/grpfreq
    chown system system /sys/class/leds/red/device/grppwm
    chown system system /sys/class/leds/red/device/blink
    chown system system /sys/class/leds/red/brightness
    chown system system /sys/class/leds/green/brightness
    chown system system /sys/class/leds/blue/brightness
    chown system system /sys/class/leds/red/device/grpfreq
    chown system system /sys/class/leds/red/device/grppwm
    chown system system /sys/class/leds/red/device/blink
    #chown system system /sys/class/timed_output/vibrator/enable
    chown system system /sys/class/haptic/oneshot
    chown system system /sys/module/sco/parameters/disable_esco
    chown system system /sys/kernel/ipv4/tcp_wmem_min
    chown system system /sys/kernel/ipv4/tcp_wmem_def
    chown system system /sys/kernel/ipv4/tcp_wmem_max
    chown system system /sys/kernel/ipv4/tcp_rmem_min
    chown system system /sys/kernel/ipv4/tcp_rmem_def
    chown system system /sys/kernel/ipv4/tcp_rmem_max
    chown root radio /proc/cmdline
# Chmod/chown FSL specific sys entry
    chown radio system /sys/devices/platform/mxc_dvfs_core.0/enable
    chown radio system /sys/devices/platform/busfreq.0/enable
    chown system system /sys/class/backlight/tps60250/brightness
    chmod 0660 /sys/devices/platform/mxc_dvfs_core.0/enable
    chmod 0660 /sys/devices/platform/busfreq.0/enable
    chmod 0660 /sys/class/backlight/tps60250/brightness

    write /sys/devices/platform/busfreq.0/enable 1
    write /sys/devices/platform/mxc_dvfs_core.0/enable 1   

# allow control power for ecompass and gsensor
    chown system system /sys/class/i2c-adapter/i2c-0/0-001c/akm8973_ctl
    chmod 0777 /sys/class/i2c-adapter/i2c-0/0-001c/akm8973_ctl
    #chown system system /sys/class/i2c-adapter/i2c-0/0-001d/power_ctl
    #chmod 0777 /sys/class/i2c-adapter/i2c-0/0-001d/power_ctl

# for GPS gpio driver for gps power and bootmode control
    chown system system    /dev/gps_gpio
    chown system system /sys/devices/virtual/gps/gps_gpio/gps_power
    chown system system /sys/devices/virtual/gps/gps_gpio/gps_bootmode
    chmod 0771 /dev/gps_gpio
    chmod 0660 /sys/devices/virtual/gps/gps_gpio/gps_power
    chmod 0771 /sys/devices/virtual/gps/gps_gpio/gps_bootmode

# for Sensor HAL
    chown system system /dev/accel
    chown system system /dev/akm8973_dev
    chown system system /dev/akm8973_aot
    chmod 0777 /dev/accel
    chmod 0777 /dev/akm8973_dev
    chmod 0777 /dev/akm8973_aot

# Define TCP buffer sizes for various networks
#   ReadMin, ReadInitial, ReadMax, WriteMin, WriteInitial, WriteMax,
    setprop net.tcp.buffersize.default 4096,87380,110208,4096,16384,110208
    setprop net.tcp.buffersize.wifi    4095,87380,110208,4096,16384,110208
    setprop net.tcp.buffersize.umts    4094,87380,110208,4096,16384,110208
    setprop net.tcp.buffersize.edge    4093,26280,35040,4096,16384,35040
    setprop net.tcp.buffersize.gprs    4092,8760,11680,4096,8760,11680

# Set property for FSL specific feature
# Init second display connection state
    setprop rw.SECOND_DISPLAY_CONNECTED 0
     
# Define gst player property
   setprop media.gstreamer.enable-player 0

# Comment the usage of stageflight media framework
   setprop  media.stagefright.enable-scan 0
   setprop  media.stagefright.enable-player 0
   setprop  media.stagefright.enable-record 0
   setprop  media.stagefright.enable-http 0
   setprop  media.stagefright.enable-meta 0

# Define fsl avi/aac/asf/mkv/flv/flac format support
    setprop ro.FSL_AVI_PARSER 1
    setprop ro.FSL_AAC_PARSER 1
    setprop ro.FSL_ASF_PARSER 1
    setprop ro.FSL_FLV_PARSER 1
    setprop ro.FSL_MKV_PARSER 1
    setprop ro.FSL_FLAC_PARSER 1


# Define fsl display init mode
    setprop ro.FSL_LANDSCAPE_MODE 1

# Define fsl xec mode
    setprop xec.dls.enabled 1
    setprop xec.aa.enabled 1
    setprop xec.dls.rate 0
    setprop xec.aa.rate 100

# Define fsl dvfs property
    setprop ro.dvfs.enabled 1

# Define UI to TVOUT,change this setting to 1 and uncomment below write commands
    setprop ro.UI_TVOUT_DISPLAY 0
    #write /sys/class/graphics/fb0/blank 1
    #write /sys/class/graphics/fb1/blank 1
    #write /sys/class/graphics/fb2/blank 1
    #write /sys/class/graphics/fb0/fsl_disp_property 1-layer-fb
    #write /sys/class/graphics/fb1/mode U:720x480i-60\n
    #write /sys/class/graphics/fb1/blank 0
    chown system system /sys/class/graphics/fb1/blank
    chmod 0644 /sys/class/graphics/fb1/blank
    chown system system /sys/class/graphics/fb1/mode
    chmod 0644 /sys/class/graphics/fb1/mode
    #chown system system /sys/devices/platform/mxc_sdc_fb.0/graphics/fb0/blank
    #chmod 0644 /sys/devices/platform/mxc_sdc_fb.0/graphics/fb0/blank

# Define default notification_sound
    setprop ro.config.notification_sound OnTheHunt.ogg

# for switch on/off framebuffer
    chown system system /sys/devices/platform/mxc_sdc_fb.0/graphics/fb0/blank
    chown system system /sys/devices/platform/mxc_sdc_fb.1/graphics/fb1/blank
    chown system system /sys/devices/platform/mxc_sdc_fb.2/graphics/fb2/blank
    chmod 0644 /sys/devices/platform/mxc_sdc_fb.0/graphics/fb0/blank
    chmod 0644 /sys/devices/platform/mxc_sdc_fb.1/graphics/fb1/blank
    chmod 0644 /sys/devices/platform/mxc_sdc_fb.2/graphics/fb2/blank

# ALSA mixer naming define
    setprop alsa.mixer.playback.master Playback
    setprop alsa.mixer.capture.master Capture
    setprop alsa.mixer.playback.speaker Playback
    setprop alsa.mixer.playback.headset Headphone
    setprop alsa.mixer.capture.headset Capture

# Prepare for wifi
    setprop wifi.interface wlan0
    mkdir /data/misc/wifi/sockets 0770 wifi wifi
    mkdir /data/misc/dhcp 0770 dhcp dhcp
    chown dhcp dhcp /data/misc/dhcp

# DD partitions for diversity and ECD key region for access
    chmod 0751 /factory
    chown system system /factory
    chmod 0777 /dev/block/mmcblk0
    chmod 6777 /system/bin/dd
    chown system system /system/bin/toolbox
    exec /system/xbin/init.diversity.ecd.sh

# mount calibration data region
    chown system system /dev/block/mmcblk0
    chmod 0777 /dev/block/mmcblk0
    chmod 0777 /sys/module/pd_ts13892/parameters/calibration
    exec /system/xbin/init.calibration.sh
    exec /system/bin/ts13892_calibrator

    chmod 751 /system/xbin/flash_sync

# Prepare for bluetooth
#    chown bluetooth bluetooth /sys/class/rfkill/rfkill0/type
#    chmod 666 /sys/class/rfkill/rfkill0/state
#    chown bluetooth bluetooth /sys/class/rfkill/rfkill0/state
#    write /sys/class/rfkill/rfkill0/state 0

# Enable USB host1'remote wakeup event wakeup android system
#    write /sys/bus/platform/drivers/fsl-ehci/fsl-ehci.1/power/wakeup enabled

# Prepare for RIL
    setprop gsm.ril.delay 15

#change file permission for synergy
    chown root shell /system/etc/synergy_fts.sh
    chmod 0550 /system/etc/synergy_fts.sh

    class_start default

## Daemon processes to be run by init.
##
service console /system/bin/sh
    console

# adbd is controlled by the persist.service.adb.enable system property
service adbd /sbin/adbd
    user root
    group root
    disabled

# adbd on at boot in emulator
#on property:ro.kernel.qemu=1
#    start adbd

on property:persist.service.adb.enable=1
    start adbd

on property:persist.service.adb.enable=0
    stop adbd

service servicemanager /system/bin/servicemanager
    user system
    critical
    onrestart restart zygote
    onrestart restart media

service vold /system/bin/vold
    socket vold stream 0660 root mount
    ioprio be 2

service netd /system/bin/netd
    socket netd stream 0660 root system

service dispd /system/bin/dispd
    socket dispd stream 0660 root system

service debuggerd /system/bin/debuggerd

service ril-daemon /system/bin/rild -l /system/lib/libreference-ril.so -- -d /dev/ttyUSB3 -u /dev/ttyUSB0
    socket rild stream 660 root radio
    socket rild-debug stream 660 radio system
    user root
    group radio cache inet misc audio

service zygote /system/bin/app_process -Xzygote /system/bin --zygote --start-system-server
    socket zygote stream 666
    onrestart write /sys/android_power/request_state wake
    onrestart write /sys/power/state on
    onrestart restart media

service media /system/bin/mediaserver
    user media
    group system audio camera graphics inet net_bt net_bt_admin net_raw
    ioprio rt 4

service bootanim /system/bin/bootanimation
    user graphics
    group graphics
    disabled
    oneshot

service dbus /system/bin/dbus-daemon --system --nofork
    socket dbus stream 666 bluetooth bluetooth
    user bluetooth
    group bluetooth net_bt_admin

service bluetoothd /system/bin/bluetoothd -n
    socket bluetooth stream 660 bluetooth bluetooth
    socket dbus_bluetooth stream 660 bluetooth bluetooth
    # init.rc does not yet support applying capabilities, so run as root and
    # let bluetoothd drop uid to bluetooth with the right linux capabilities
    group bluetooth net_bt_admin misc
    disabled

service hcid /system/bin/hcid -s -n -f /etc/bluez/hcid.conf
    socket bluetooth stream 660 bluetooth bluetooth
    socket dbus_bluetooth stream 660 bluetooth bluetooth
    # init.rc does not yet support applying capabilities, so run as root and
    # let hcid drop uid to bluetooth with the right linux capabilities
    group bluetooth net_bt_admin misc
    disabled
service hciattach /system/bin/logwrapper /system/bin/sh /system/etc/mxc_bt.sh
    user bluetooth
    group bluetooth net_bt_admin
    disabled
    oneshot
service hfag /system/bin/sdptool add --channel=10 HFAG
    user bluetooth
    group bluetooth net_bt_admin
    disabled
    oneshot

service hsag /system/bin/sdptool add --channel=11 HSAG
    user bluetooth
    group bluetooth net_bt_admin
    disabled
    oneshot

service opush /system/bin/sdptool add --channel=12 OPUSH
    user bluetooth
    group bluetooth net_bt_admin
    disabled
    oneshot

service pbap /system/bin/sdptool add --channel=19 PBAP
    user bluetooth
    group bluetooth net_bt_admin
    disabled
    oneshot

service synergy_fts_init /system/etc/synergy_fts.sh
    user root
    group sdcard_rw
    oneshot

service synergysdpops /system/etc/synergy_sdptool.sh 12 0x1105 ReservedOPPS
    user root
    disabled
    oneshot

#service hidloopback /system/etc/insert-hiddrv.sh
#    user root
#    oneshot

service installd /system/bin/installd
    socket installd stream 600 system system

service flash_recovery /system/etc/install-recovery.sh
    oneshot

service racoon /system/bin/racoon
    socket racoon stream 600 system system
    # racoon will setuid to vpn after getting necessary resources.
    group net_admin
    disabled
    oneshot

service mtpd /system/bin/mtpd
    socket mtpd stream 600 system system
    user vpn
    group vpn net_admin net_raw
    disabled
    oneshot

service keystore /system/bin/keystore /data/misc/keystore
    user keystore
    group keystore
    socket keystore stream 666

service dumpstate /system/bin/dumpstate -s
    socket dumpstate stream 0660 shell log
    disabled
    oneshot


#service dhcpcd /system/bin/logwrapper /system/bin/dhcpcd -d -B wlan0
service dhcpcd /system/bin/dhcpcd -d -B wlan0
    disabled
    oneshot

service wpa_supplicant /system/bin/logwrapper /system/bin/wpa_supplicant \
    -Dwext -iwlan0 -c/data/misc/wifi/wpa_supplicant.conf
    user root
    group wifi inet
    socket wpa_wlan0 dgram 660 wifi wifi
    oneshot

#service pppd_gprs /etc/init.gprs-pppd
    #user root
    #group radio cache inet misc
    #disabled
    #oneshot

service akmd2 /system/bin/akmd2
    user system
    group system
    oneshot

# save diversity.bin from memory to emmc
service div_restore_m /system/bin/dd if=/factory/diversity.bin of=/dev/block/mmcblk0 obs=512 seek=14337 count=1
    user root
    group system
    disabled
    oneshot

# restore diversity.bin from diversity data
service div_restore_w /system/bin/dd if=/factory/diversity.master of=/dev/block/mmcblk0 obs=512 seek=14336 count=1
    user root
    group system
    disabled
    oneshot

# flash sync
service flash_sync /system/xbin/flash_sync
    user root
    group system

service synergy_exe /system/xbin/synergy_exe
    user root

service a2dp_adapter /system/bin/csr_liba2dp_process
    user root
    group system audio camera graphics inet net_bt net_bt_admin

service flash_wifi /system/xbin/flash_wifi
    disabled
    oneshot

service wlan0_check /system/xbin/wlan0_check
    disabled
    oneshot

As for the default.prop file, should I just delete the contain, and simply replace it by yours? The file will save properly? Additionally, may I ask what defaut.prop is used for ?

Thank you

You does already have commands for starting adbd in your init.rc. Here they are.
Code:
# adbd is controlled by the [B]persist.service.adb.enable[/B] system property
service adbd /sbin/adbd
    user root
    group root
    disabled

# adbd on at boot in emulator
#on property:ro.kernel.qemu=1
#    start adbd

on property:persist.service.adb.enable=1
    start adbd

on property:persist.service.adb.enable=0
    stop adbd
You have to change
Code:
persist.service.adb.enable=1
in your deafult.prop and add (or change if alredy exist) for USB adb connection
Code:
persist.sys.usb.config=mass_storage,adb

And yes, to modify your default.prop file you have to unpack your boot.img, edit the file, then pack it back and flash modified boot.img to your device.
 
Last edited:

GameX2

Senior Member
Jun 28, 2011
84
7
QC
You does already have commands for starting adbd in your init.rc. Here they are.
Code:
# adbd is controlled by the [B]persist.service.adb.enable[/B] system property
service adbd /sbin/adbd
    user root
    group root
    disabled

# adbd on at boot in emulator
#on property:ro.kernel.qemu=1
#    start adbd

on property:persist.service.adb.enable=1
    start adbd

on property:persist.service.adb.enable=0
    stop adbd
You have to change
Code:
persist.service.adb.enable=1
in your deafult.prop and add (or change if alredy exist) for USB adb connection
Code:
persist.sys.usb.config=mass_storage,adb

And yes, to modify your default.prop file you have to unpack your boot.img, edit the file, then pack it back and flash modified boot.img to your device.

Thank you, I will do that.

I already dumped my ROM with romdump, but I don't have my boot.img yet. I will do ressearch on how to back it up.
I have a problem related to this, I'm not sure if I'll be able to restore it, as it's currently impossible to flash ClockworkMod to this device (No image exist. Same for custom ROMs).

The only thing I have, is Android Recovery 3e, which does not support by default flashing unsigned update.zip. I did applied a patch here, which is supposed to bypass this limitation, but have not tested it yet.

So I should have my boot.img packed as a update.zip, I believe, then give it a try, and flash it through Android Recovery 3e ?
 

lion567

Senior Member
Oct 3, 2013
190
158
Thank you, I will do that.

I already dumped my ROM with romdump, but I don't have my boot.img yet. I will do ressearch on how to back it up.
I have a problem related to this, I'm not sure if I'll be able to restore it, as it's currently impossible to flash ClockworkMod to this device (No image exist. Same for custom ROMs).

Different devices have different ROM layout, you shoud try to find more infirmation about it.
IMHO the easiest way to get image of your boot partition is via dd. You should have busybox and terminal emulator installed on device to do this:
Code:
root@android:/ # dd if=/dev/bootimg of=/mnt/sdcard/boot.img bs=<your boot size> count=1

The only thing I have, is Android Recovery 3e, which does not support by default flashing unsigned update.zip. I did applied a patch here, which is supposed to bypass this limitation, but have not tested it yet.

So I should have my boot.img packed as a update.zip, I believe, then give it a try, and flash it through Android Recovery 3e ?

Yes of course you may create update.zip for flashing new boot.img, but you have to sing it, AFAIK stock recovery check update.zip signature before flashing it.
 
Last edited:

GameX2

Senior Member
Jun 28, 2011
84
7
QC
Different devices have different ROM layout, you shoud try to find more infirmation about it.
IMHO the easiest way to get image of your boot partition is via dd. You should have busybox and terminal emulator installed on device to do this:
Code:
root@android:/ # dd if=/dev/bootimg of=/mnt/sdcard/boot.img bs=<your boot size> count=1



Yes of course you may create update.zip for flashing new boot.img, but you have to sing it, AFAIK stock recovery check update.zip signature before flashing it.

There is hardly any way to get more information/help on this device, that's the sad thing. You just have to try according to your Android experience, without relying much on external help.

I will check for dd to dump the partition, as well as the boot size (Boot size of boot.img, most probably), the device is rooted so has busybox and a terminal emulator as well.
Creating an update.zip might be the only way I have to flash it back in, tell me if I'm wrong. Since I can't install CWM without compiling a custom one for my device (Never done that before), I just have access to Android Recovery 3e. You're right, I does check the signature, and block it for most of the files.

I've done this, which is supposed to bypass the signature check. I have not tested the flashing, but Android Recovery 3e was not damaged and is still accessible.
http://xdaforums.com/showthread.php?p=10624454#post10624454

Will keep you updated, thanks.
 
Last edited:

lion567

Senior Member
Oct 3, 2013
190
158
There is hardly any way to get more information/help on this device, that's the sad thing. You just have to try according to your Android experience, without relying much on external help.

I will check for dd to dump the partition, as well as the boot size (Boot size of boot.img, most probably), the device is rooted so has busybox and a terminal emulator as well.
Creating an update.zip might be the only way I have to flash it back in, tell me if I'm wrong. Since I can't install CWM without compiled a custom one for my device (Never done that before), I just have access to Android Recovery 3e. You're right, I does check the signature, and block it for most of the files.

I've done this, which is supposed to bypass the signature check. I have not tested the flashing, but Android Recovery 3e was not damaged and is still accessible.
http://xdaforums.com/showthread.php?p=10624454#post10624454

Will keep you updated, thanks.
For dd command you should use full size of boot partition or partition, where boot ramdisk lives (on some devices it can live separately from kernel). And corresponding device file (eg /dev/bootimg in my example).
If you succeed with boot.img dump via dd, you could use the same dd command, swapping if = and of= files, like this
Code:
dd if=/mnt/sdcard/new-boot.img of=/dev/bootimg bs=<size of boot partition> count=1
In this case "bs=<size of boot partition> count=1" protect you from overwriting data in partition next to bootimg in case new-boot.img exceeds the size of boot partition.

By the way, you can look in /system/build.prop file to find some information about device.

Does any ROM flashing tool exist for this device, like ODIN for Samsung, NVFlash for Tegra devices and SP FlashTool for MTK devices?
 
Last edited:

GameX2

Senior Member
Jun 28, 2011
84
7
QC
For dd command you should use full size of boot partition or partition, where boot ramdisk lives (on some devices it can live separately from kernel). And corresponding device file (eg /dev/bootimg in my example).
If you succeed with boot.img dump via dd, you could use the same dd command, swapping if = and of= files, like this
Code:
dd if=/mnt/sdcard/new-boot.img of=/dev/bootimg bs=<size of boot partition> count=1
In this case "bs=<size of boot partition> count=1" protect you from overwriting data in partition next to bootimg in case new-boot.img exceeds the size of boot partition.

By the way, you can look in /system/build.prop file to find some information about device.

Does any ROM flashing tool exist for this device, like ODIN for Samsung, NVFlash for Tegra devices and SP FlashTool for MTK devices?

Thanks;

I'm trying to find the size of my /Boot partition, for now. Here's the terminal output of cat /proc/partitions:

Code:
$cat /proc/mtd
dev:    size   erasesize  name
$cat /proc/partitions
major minor  #blocks  name

 179        0    7815168 mmcblk0
 179        1    4309200 mmcblk0p1
 179        2     154035 mmcblk0p2
 179        3          1 mmcblk0p3
 179        4      10395 mmcblk0p4
 179        5    3145873 mmcblk0p5
 179        6      41076 mmcblk0p6
$

According to the app "Storage Analyser", I would have these partitions visibles:

/sdcard : 4.1 GB total (Internal storage);
/system: 128.68 MB total;
/data: 2.95GB total;
/cache (No info, but I assume there is one!);

And /boot, which I don't know where it's located yet.
Just a guess, the partitition 179 3 1 mmcblk0p3 might refer to /extsd. Note that the ZEN Touch 2 has an internal storage, which is /sdcard, and also an external slot for a microSD card (being /extsd). Which I believe, would make sense that the 1MB partition would be /extsd (I have no external SD card inserted at this point).

I noted a few SPECs from the device, in Elixir, myself:

ARMv7 Processor rev 5 )v7l) 800MHz (200 MHz-800 MHz)
Android ID : 65d3e923b8b46272
Model number: Creative Earlgrey 2.2.1
Kernel: SDK 8 Linux Version 2.6.31

Here's the build.prop file:

Code:
# begin build properties
# autogenerated by buildinfo.sh
ro.build.id=FRF85B
ro.build.display.id=FRF85B
ro.build.version.incremental=eng.20110408.110506
ro.build.version.sdk=8
ro.build.version.codename=REL
ro.build.version.release=2.2.1
ro.build.date=Fri Apr  8 11:15:22 HKT 2011
ro.build.date.utc=1302232522
ro.build.type=user
ro.build.user=Creative
ro.build.host=localhost.localdomain
ro.build.tags=test-keys
ro.product.model=earlgrey
ro.product.brand=Creative
ro.product.name=earlgrey
ro.product.device=earlgrey
ro.product.board=earlgrey
ro.product.cpu.abi=armeabi-v7a
ro.product.cpu.abi2=armeabi
ro.product.manufacturer=Creative
ro.product.locale.language=en
ro.product.locale.region=US
ro.wifi.channels=
ro.board.platform=earlgrey
# ro.build.product is obsolete; use ro.product.device
ro.build.product=earlgrey
# Do not try to parse ro.build.description or .fingerprint
ro.build.description=earlgrey-user 2.2.1 FRF85B eng.20110408.110506 test-keys
ro.build.fingerprint=Creative/earlgrey/earlgrey/earlgrey:2.2.1/FRF85B/eng.20110408.110506:user/test-keys
# end build properties
#
# system.prop for ZEN Touch 2
#
# density in DPI of the LCD of this board. This is used to scale the UI
# appropriately. If this property is not defined, the default value is 160 dpi. 
ro.sf.lcd_density = 160

#
# ADDITIONAL_BUILD_PROPERTIES
#
dalvik.vm.heapsize=32m
dalvik.vm.checkjni=false
net.bt.name=Android
dalvik.vm.stack-trace-file=/data/anr/traces.txt

Does any ROM flashing tool exist for this device, like ODIN for Samsung, NVFlash for Tegra devices and SP FlashTool for MTK devices?

I never used ODIN, but I can tell that ROM Manager is useless, because the device is unlisted - officially, no ROM flashing tool was developped at all, for this specific device. I've checked, usually all those who ask these questions never got replies.

Thank for the help, I appreciate it.
 

lion567

Senior Member
Oct 3, 2013
190
158
Thanks;

I'm trying to find the size of my /Boot partition, for now. Here's the terminal output of cat /proc/partitions:

Code:
$cat /proc/mtd
dev:    size   erasesize  name
$cat /proc/partitions
major minor  #blocks  name

 179        0    7815168 mmcblk0
 179        1    4309200 mmcblk0p1
 179        2     154035 mmcblk0p2
 179        3          1 mmcblk0p3
 179        4      10395 mmcblk0p4
 179        5    3145873 mmcblk0p5
 179        6      41076 mmcblk0p6
$

According to the app "Storage Analyser", I would have these partitions visibles:

/sdcard : 4.1 GB total (Internal storage);
/system: 128.68 MB total;
/data: 2.95GB total;
/cache (No info, but I assume there is one!);

And /boot, which I don't know where it's located yet.
Just a guess, the partitition 179 3 1 mmcblk0p3 might refer to /extsd. Note that the ZEN Touch 2 has an internal storage, which is /sdcard, and also an external slot for a microSD card (being /extsd). Which I believe, would make sense that the 1MB partition would be /extsd (I have no external SD card inserted at this point).

I noted a few SPECs from the device, in Elixir, myself:

ARMv7 Processor rev 5 )v7l) 800MHz (200 MHz-800 MHz)
Android ID : 65d3e923b8b46272
Model number: Creative Earlgrey 2.2.1
Kernel: SDK 8 Linux Version 2.6.31

Here's the build.prop file:

Code:
# begin build properties
# autogenerated by buildinfo.sh
ro.build.id=FRF85B
ro.build.display.id=FRF85B
ro.build.version.incremental=eng.20110408.110506
ro.build.version.sdk=8
ro.build.version.codename=REL
ro.build.version.release=2.2.1
ro.build.date=Fri Apr  8 11:15:22 HKT 2011
ro.build.date.utc=1302232522
ro.build.type=user
ro.build.user=Creative
ro.build.host=localhost.localdomain
ro.build.tags=test-keys
ro.product.model=earlgrey
ro.product.brand=Creative
ro.product.name=earlgrey
ro.product.device=earlgrey
ro.product.board=earlgrey
ro.product.cpu.abi=armeabi-v7a
ro.product.cpu.abi2=armeabi
ro.product.manufacturer=Creative
ro.product.locale.language=en
ro.product.locale.region=US
ro.wifi.channels=
ro.board.platform=earlgrey
# ro.build.product is obsolete; use ro.product.device
ro.build.product=earlgrey
# Do not try to parse ro.build.description or .fingerprint
ro.build.description=earlgrey-user 2.2.1 FRF85B eng.20110408.110506 test-keys
ro.build.fingerprint=Creative/earlgrey/earlgrey/earlgrey:2.2.1/FRF85B/eng.20110408.110506:user/test-keys
# end build properties
#
# system.prop for ZEN Touch 2
#
# density in DPI of the LCD of this board. This is used to scale the UI
# appropriately. If this property is not defined, the default value is 160 dpi. 
ro.sf.lcd_density = 160

#
# ADDITIONAL_BUILD_PROPERTIES
#
dalvik.vm.heapsize=32m
dalvik.vm.checkjni=false
net.bt.name=Android
dalvik.vm.stack-trace-file=/data/anr/traces.txt



I never used ODIN, but I can tell that ROM Manager is useless, because the device is unlisted - officially, no ROM flashing tool was developped at all, for this specific device. I've checked, usually all those who ask these questions never got replies.

Thank for the help, I appreciate it.
Try to look for /proc/dumchar_info file. If it exist, you coud find useful information in it about partitions on device. But it specific to MTK platform. If you don't find it, look for /proc/emmc.
Also look in /proc/cpuinfo for CPU information.

As for ODINand others - i asked about desktop flash tool for Windows, which can be used to flash device via USB cabel. And ROM Manager is Android tool.
 

GameX2

Senior Member
Jun 28, 2011
84
7
QC
Try to look for /proc/dumchar_info file. If it exist, you coud find useful information in it about partitions on device. But it specific to MTK platform. If you don't find it, look for /proc/emmc.
Also look in /proc/cpuinfo for CPU information.

As for ODINand others - i asked about desktop flash tool for Windows, which can be used to flash device via USB cabel. And ROM Manager is Android tool.

Both the files /proc/dumchar_info and /proc/emmc doesn't exists - but here's the contain of /proc/cpuinfo:

Code:
Processor	: ARMv7 Processor rev 5 (v7l)
BogoMIPS	: 799.53
Features	: swp half thumb fastmult vfp edsp neon vfpv3 
CPU implementer	: 0x41
CPU architecture: 7
CPU variant	: 0x2
CPU part	: 0xc08
CPU revision	: 5

Hardware	: ZEN Touch 2
Revision	: 51030
Serial		: 0000000000000000

Using the app "DiskInfo", I believe I've found which partition was /Boot. Here's what I see:


SD Card:
Mount points: /mnt/sdcard, /mnt/secure/asec
Partition name: mmcblk0p1
Total Space: 4.1GB

System:
Mount point: /system (ext4)
Partition Name: mmcblk0p2
Total Space: 128MB (17,8MB free. Is that too low for a normal device usage?)

???: (I assume this is /sdext)
Not mounted;
Partition name: mmcblk0p3
Total space: 1KB

???: (Is this /Boot ? )
Not mounted;
Partition name: mmcblk0p4
Total space: 10,2MB


Data:
Mount point: /data (ext4)
Partition name: mmcblk0p5
Total space: 3GB (2,6GB free)

Cache:
Mount point: /cache (ext4)
Partition name: mmcblk0p6
Total space: 38,7MB (32,3 MB free)

TMPFS MOUNT POINTS:

/dev: Total space: 91,6MB, 12KB used
/mnt/asec: Total space: 91,6MB, 0KB used
/mnt/shm: Total space: 1MB, used: 20KB
/factory: Total space: 128KB, used: 64KB
/mnt/sdcard/.android_secure: Unknow size

***

Using this information, I guess /Boot is mmcblk0p4 ?
 

lion567

Senior Member
Oct 3, 2013
190
158
Both the files /proc/dumchar_info and /proc/emmc doesn't exists - but here's the contain of /proc/cpuinfo:

Code:
Processor	: ARMv7 Processor rev 5 (v7l)
BogoMIPS	: 799.53
Features	: swp half thumb fastmult vfp edsp neon vfpv3 
CPU implementer	: 0x41
CPU architecture: 7
CPU variant	: 0x2
CPU part	: 0xc08
CPU revision	: 5

Hardware	: ZEN Touch 2
Revision	: 51030
Serial		: 0000000000000000

Using the app "DiskInfo", I believe I've found which partition was /Boot. Here's what I see:


SD Card:
Mount points: /mnt/sdcard, /mnt/secure/asec
Partition name: mmcblk0p1
Total Space: 4.1GB

System:
Mount point: /system (ext4)
Partition Name: mmcblk0p2
Total Space: 128MB (17,8MB free. Is that too low for a normal device usage?)

???: (I assume this is /sdext)
Not mounted;
Partition name: mmcblk0p3
Total space: 1KB

???: (Is this /Boot ? )
Not mounted;
Partition name: mmcblk0p4
Total space: 10,2MB


Data:
Mount point: /data (ext4)
Partition name: mmcblk0p5
Total space: 3GB (2,6GB free)

Cache:
Mount point: /cache (ext4)
Partition name: mmcblk0p6
Total space: 38,7MB (32,3 MB free)

TMPFS MOUNT POINTS:

/dev: Total space: 91,6MB, 12KB used
/mnt/asec: Total space: 91,6MB, 0KB used
/mnt/shm: Total space: 1MB, used: 20KB
/factory: Total space: 128KB, used: 64KB
/mnt/sdcard/.android_secure: Unknow size

***

Using this information, I guess /Boot is mmcblk0p4 ?

May be yes. Try to dump it and unpack. If you succeded - then you are right.
But there can be different varianrs, some SoC manufactures put all non-mountable partitions, such as preloader, nvram, uboot, boot and recovery, in single partition mmcblk0p0.
It seems, that your device built on Creative's own SoC with non-standart NAND partitioning.

Here you can find info about unpacking
http://android-dls.com/wiki/index.php?title=HOWTO:_Unpack,_Edit,_and_Re-Pack_Boot_Images
or here together with scripts
http://xdaforums.com/showthread.php?t=443994
 
Last edited:
  • Like
Reactions: GameX2

Top Liked Posts

  • There are no posts matching your filters.
  • 1
    Both the files /proc/dumchar_info and /proc/emmc doesn't exists - but here's the contain of /proc/cpuinfo:

    Code:
    Processor	: ARMv7 Processor rev 5 (v7l)
    BogoMIPS	: 799.53
    Features	: swp half thumb fastmult vfp edsp neon vfpv3 
    CPU implementer	: 0x41
    CPU architecture: 7
    CPU variant	: 0x2
    CPU part	: 0xc08
    CPU revision	: 5
    
    Hardware	: ZEN Touch 2
    Revision	: 51030
    Serial		: 0000000000000000

    Using the app "DiskInfo", I believe I've found which partition was /Boot. Here's what I see:


    SD Card:
    Mount points: /mnt/sdcard, /mnt/secure/asec
    Partition name: mmcblk0p1
    Total Space: 4.1GB

    System:
    Mount point: /system (ext4)
    Partition Name: mmcblk0p2
    Total Space: 128MB (17,8MB free. Is that too low for a normal device usage?)

    ???: (I assume this is /sdext)
    Not mounted;
    Partition name: mmcblk0p3
    Total space: 1KB

    ???: (Is this /Boot ? )
    Not mounted;
    Partition name: mmcblk0p4
    Total space: 10,2MB


    Data:
    Mount point: /data (ext4)
    Partition name: mmcblk0p5
    Total space: 3GB (2,6GB free)

    Cache:
    Mount point: /cache (ext4)
    Partition name: mmcblk0p6
    Total space: 38,7MB (32,3 MB free)

    TMPFS MOUNT POINTS:

    /dev: Total space: 91,6MB, 12KB used
    /mnt/asec: Total space: 91,6MB, 0KB used
    /mnt/shm: Total space: 1MB, used: 20KB
    /factory: Total space: 128KB, used: 64KB
    /mnt/sdcard/.android_secure: Unknow size

    ***

    Using this information, I guess /Boot is mmcblk0p4 ?

    May be yes. Try to dump it and unpack. If you succeded - then you are right.
    But there can be different varianrs, some SoC manufactures put all non-mountable partitions, such as preloader, nvram, uboot, boot and recovery, in single partition mmcblk0p0.
    It seems, that your device built on Creative's own SoC with non-standart NAND partitioning.

    Here you can find info about unpacking
    http://android-dls.com/wiki/index.php?title=HOWTO:_Unpack,_Edit,_and_Re-Pack_Boot_Images
    or here together with scripts
    http://xdaforums.com/showthread.php?t=443994