MeeGo 1.1 for NexusOne status and how to work(Using microSD and Boot vi fastboot).

Updated on 20101107(kernel build, kickstart file, dialer screenshot, fdisk /dev/mmcblk0)

Part2. Single boot: http://blog.mitsutaka.org/2010/11/meego-11-for-nexusone-status-part2-and.html

As you know, MeeGo could be worked on the NexusOne. It was v1.1 development release that time. Then I tried if MeeGo 1.1 final release could work on it. Of course, It could be work. and We've made it more responsive to running.














1. Linux kernel
zImage is loaded from PC via fastboot command. It uses the Android kernel for MSM. This tree is tagged "android-msm-2.6.29-nexusone". We can use it. android-msm-2.6.32, android-msm-2.6.35 branches could be worked. Here is case of android-msm-2.6.32
$ git clone git://android.git.kernel.org/kernel/msm.git -b android-msm-2.6.32 android-msm-2.6.32
$ cd android-msm-2.6.32

Then We use a mahimahi_defconfig using as the base kernel configuration.
$ cp arch/arm/configs/mahimahi_defconfig .config
And customize it. When it boots via fastboot, we don't need initrd.
-CONFIG_BLK_DEV_INITRD=y
+# CONFIG_BLK_DEV_INITRD is not set

If you want to use wifi. You need to change the firmware path.
-CONFIG_BCM4329_FW_PATH="/system/etc/firmware/fw_bcm4329.bin"
+CONFIG_BCM4329_FW_PATH="/lib/firmware/fw_bcm4329.bin"

Any linux distribution uses X.Org as the X Window System. So we can need the Virtual Terminal.
-# CONFIG_VT is not set
+CONFIG_VT=y
+CONFIG_CONSOLE_TRANSLATIONS=y
+CONFIG_VT_CONSOLE=y
+CONFIG_VT_HW_CONSOLE_BINDING=y

Then, Preparing cross compiler. cross compiler uses prebuilt.git from Android git tree.
$ export PATH=$PATH:/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin

Final is compiling.
$ make oldconfig ARCH=arm CROSS_COMPILE=arm-eabi-
$ make zImage modules ARCH=arm CROSS_COMPILE=arm-eabi-

2. Root Filesystem.
Of course, We use the MeeGo as a root filesystem. I created a kickstart file of NexusOne for using the mic2(Image Creator).

$ vi meego-handset-armv7l-nexusone-1.1.ks
lang en_US.UTF-8
keyboard us
timezone --utc America/Los_Angeles
auth --useshadow --enablemd5
part / --size=1600  --ondisk mmcblk0p --fstype=ext3

rootpw meego

xconfig --startxonboot
desktop --autologinuser=meego  --defaultdesktop=DUI --session=/usr/bin/mcompositor
user --name meego  --groups audio,video --password meego

repo --name=core     --baseurl=http://repo.meego.com/MeeGo/releases/1.1/core/repos/armv7l/packages/ --save --debuginfo --source --gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-meego01
repo --name=handset  --baseurl=http://repo.meego.com/MeeGo/releases/1.1/handset/repos/armv7l/packages/ --save --debuginfo --source --gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-meego01
repo --name=non-oss  --baseurl=http://repo.meego.com/MeeGo/releases/1.1/non-oss/repos/armv7l/packages/ --save --debuginfo --source --gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-meego01
repo --name=updates-core     --baseurl=http://repo.meego.com/MeeGo/updates/1.1/core/repos/armv7l/packages/ --save --debuginfo --source --gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-meego01
repo --name=updates-handset  --baseurl=http://repo.meego.com/MeeGo/updates/1.1/handset/repos/armv7l/packages/ --save --debuginfo --source --gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-meego01
repo --name=updates-non-oss  --baseurl=http://repo.meego.com/MeeGo/updates/1.1/non-oss/repos/armv7l/packages/ --save --debuginfo --source --gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-meego01


%packages
@MeeGo Core
@MeeGo Base
@Minimal MeeGo X Window System
@MeeGo Compliance
@MeeGo Handset Desktop
@MeeGo Handset Applications
@MeeGo Handset Applications Branding
@X for Handsets
@MeeGo Handset Base Support

# Some development tools
openssh-server
wget
strace
bootchart
gdb
gdb-gdbserver

# Some extra tools/libs
connman-test
xorg-x11-utils-xev

# http://bugs.meego.com/show_bug.cgi?id=5651
-meegotouch-inputmethodbridges
-meegotouch-inputmethodframework
-meegotouch-inputmethodkeyboard
-meegotouch-inputmethodengine

# For nexusone
xorg-x11-drv-fbdev
mesa-dri-swrast-driver
yum
yum-utils
tar
%end

%post
set -x
# Prelink not included because of following bug
# http://bugs.meego.com/show_bug.cgi?id=5217

# make sure there aren't core files lying around
rm -f /core*

# open serial line console for embedded system
echo "s0:235:respawn:/sbin/agetty -L 115200 ttyS2 vt100" >> /etc/inittab

# work around for poor key import UI in PackageKit
rm -f /var/lib/rpm/__db*
rpm --rebuilddb

# Set up sane defaults for mthemedaemon settings
Config_Src=`gconftool-2 --get-default-source`
gconftool-2 --direct --config-source $Config_Src \
  -s -t string /meegotouch/theme/target NexusOne

# By default N900 has different value than Aava for showStatusBar
sed -i 's!showStatusBar=false!showStatusBar=true!g' /etc/meegotouch/devices.conf

# Temporary fix to the meego-handset-fixup rpm package
sed -i 's!N900!NexusOne!g' /etc/gconf/gconf.xml.defaults/%gconf-tree.xml

#sed -i 's!\/usr\/sbin\/meego-dm!\/usr\/bin\/xinit \/usr\/bin\/startdui!' /etc/inittab
echo "#x:5:respawn:/usr/bin/xinit /usr/bin/startdui" >>/etc/inittab

cat >>/etc/meegotouch/devices.conf <
 

[NexusOne]
resolutionX=480
resolutionY=800
ppiX=256
ppiY=256
showStatusBar=false
EOF

cat >/usr/bin/startdui <
#!/bin/sh
/usr/bin/mthemedaemon &
/usr/bin/sysuid -software -remote-theme &
/usr/bin/meego-im-uiserver -software -remote-theme &
/usr/bin/mdecorator -software -remote-theme &
/usr/bin/startphonesim
exec /usr/bin/duihome --desktop -software -remote-theme

EOF
chmod +x /usr/bin/startdui


cat >>/etc/rc.d/rc.sysinit <
# Power Management
echo 245000 >/sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq
echo 998400 >/sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq
echo ondemand >/sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
echo 40000 >/sys/devices/system/cpu/cpufreq/ondemand/sampling_rate
  
# Wakelock debug
echo 7 >/sys/module/wakelock/parameters/debug_mask
  
echo 1 >/proc/sys/kernel/panic_on_oops
echo 0 >/proc/sys/kernel/hung_task_timeout_secs
echo 4 >/proc/cpu/alignment
echo 10000000 >/proc/sys/kernel/sched_latency_ns
echo 2000000 >/proc/sys/kernel/sched_wakeup_granularity_ns
echo 1 >/proc/sys/kernel/sched_compat_yield
echo 0 >/proc/sys/kernel/sched_child_runs_first
  
# 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.
echo 0,1,2,7,14,15 >/sys/module/lowmemorykiller/parameters/adj
  
echo 1 >/proc/sys/vm/overcommit_memory
echo 4 >/proc/sys/vm/min_free_order_shift
echo 1536,2048,4096,5120,5632,6144 >/sys/module/lowmemorykiller/parameters/minfree
  
# Set init its forked children's oom_adj.
echo -16 >/proc/1/oom_adj
  
# Tweak background writeout
echo 200 >/proc/sys/vm/dirty_expire_centisecs
echo 5 >/proc/sys/vm/dirty_background_ratio
  
mkdir -p /mnt/sdcard /mnt/system /mnt/cache /mnt/userdata
(sleep 5; /sbin/adbd) &
EOF

mkdir -p /system/bin
ln -s /bin/bash /system/bin/sh

swprogs="
/usr/share/applications/dialer.desktop
/usr/share/applications/duicontrolpanel.desktop
/usr/share/applications/meego-handset-calendar.desktop
/usr/share/applications/meego-handset-chat.desktop
/usr/share/applications/meego-handset-people.desktop
/usr/share/applications/meego-handset-video.desktop
/usr/share/applications/meegomusic.desktop
/usr/share/applications/meegophotos.desktop
/usr/share/applications/settings.desktop
/usr/share/applications/sms.desktop
/etc/xdg/autostart/applauncherd.desktop
/etc/xdg/autostart/mdecorator.desktop
/etc/xdg/autostart/meego-im-uiserver.desktop
/etc/xdg/autostart/meegotouch-systemui.desktop
"
for prog in $swprogs; do
    sed -e "s/Exec=.*$/\0 -software/" -i $prog
done

sed 's!session=\/usr\/bin\/mcompositor!session=\/usr\/bin\/duihome -software \&!' -i /etc/sysconfig/uxlaunch

# Normal bootchart is only 30 long so we use this to get longer bootchart during startup when needed.
cat > /sbin/bootchartd-long << EOF
#!/bin/sh
exec /sbin/bootchartd -n 4000
EOF
chmod +x /sbin/bootchartd-long

# Temporary fix for BMC#8664 to get fennec startup time more reasonable.
mkdir -p /home/meego/.mozilla/
chown -R meego:meego /home/meego/.mozilla/
cat >>/etc/fstab << EOF
tmpfs /home/meego/.mozilla tmpfs size=20m 0 0
/dev/mmcblk0p1 /mnt/sdcard vfat defaults 0 0
/dev/mtdblock3 /mnt/system yaffs2 defaults 0 0
/dev/mtdblock4 /mnt/cache yaffs2 defaults 0 0
/dev/mtdblock5 /mnt/userdata yaffs2 defaults 0 0
EOF
%end
%post --nochroot
set -x
if [ -n "$IMG_NAME" ]; then
    echo "BUILD: $IMG_NAME" >> $INSTALL_ROOT/etc/meego-release
fi

# Creating rootfs tar ball.
for dir in `mount | grep $INSTALL_ROOT\/ | awk '{ print $3 }' | sort -r`; do
    umount $dir
done
outdir=`pwd`
(cd $INSTALL_ROOT; tar czvf $outdir/${IMG_NAME}-rootfs.tar.gz .)
%end

Rootfs tar ball is smarter then raw image or filesystem image. I used it. and It extract to you microSD card. Layout the microSD partition. /dev/mmcblk0p1 is used from Android. /dev/mmcblk0p2 is MeeGo rootfs.
# fdisk -l

Disk /dev/mmcblk0: 4013 MB, 4013948928 bytes
124 heads, 62 sectors/track, 1019 cylinders
Units = cylinders of 7688 * 512 = 3936256 bytes
Disk identifier: 0x00029d6c

        Device Boot      Start         End      Blocks   Id  System
/dev/mmcblk0p1               1         131      503533    c  W95 FAT32 (LBA)
/dev/mmcblk0p2             132         959     3182832   83  Linux

3. Boot
The microSD card insert to NexusOne. And Boot up fastboot mode. Then run the following command. root= is MeeGo root filesystem.
$ fastboot  -c 'init=/sbin/init rootwait root=/dev/mmcblk0p2 rootfstype=ext3 rw' boot zImage
creating boot image...
creating boot image - 2240512 bytes
downloading 'boot.img'... OKAY
booting... OKAY

Enjoy!

They are some messages.

dmesg
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 2.6.29-01118-ga971bfd (mitsutaka@localhost) (gcc version 4.4.0 (GCC) ) #21 PREEMPT Sun Oct 31 10:08:45 JST 2010
[    0.000000] CPU: ARMv7 Processor [510f00f2] revision 2 (ARMv7), cr=10c5387f
[    0.000000] CPU: VIPT nonaliasing data cache, VIVT ASID tagged instruction cache
[    0.000000] Machine: mahimahi
[    0.000000] Ignoring unrecognised tag 0x4d534d71
[    0.000000] Ignoring unrecognised tag 0x4d534d72
[    0.000000] Ignoring unrecognised tag 0x4d534d73
[    0.000000] Ignoring unrecognised tag 0x4d534d74
[    0.000000] Ignoring unrecognised tag 0x4d534d75
[    0.000000] Ignoring unrecognised tag 0x4d534d76
[    0.000000] Ignoring unrecognised tag 0x5441000a
[    0.000000] Ignoring unrecognised tag 0x41387898
[    0.000000] Memory policy: ECC disabled, Data cache writeback
[    0.000000] On node 0 totalpages: 56064
[    0.000000] free_area_init_node: node 0, pgdat c03e12e8, node_mem_map c0490000
[    0.000000]   Normal zone: 438 pages used for memmap
[    0.000000]   Normal zone: 0 pages reserved
[    0.000000]   Normal zone: 55626 pages, LIFO batch:15
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 55626
[    0.000000] Kernel command line: board_mahimahi.disable_uart3=0 board_mahimahi.usb_h2w_sw=0 board_mahimahi.disable_sdcard=0 diag.enabled=0 board_mahimahi.debug_uart=0 smisize=0  androidboot.baseband=4.06.00.12_7 androidboot.cid=GOOGL001 androidboot.carrier=GOOGLE androidboot.mid=PB9910000 androidboot.keycaps=qwerty androidboot.mode=normal androidboot.serialno=HT015P803993 androidboot.bootloader=0.33.0012 init=/sbin/init rootwait root=/dev/mmcblk0p2 rootfstype=ext3 rw
[    0.000000] Unknown boot option `board_mahimahi.disable_uart3=0': ignoring
[    0.000000] Unknown boot option `board_mahimahi.usb_h2w_sw=0': ignoring
[    0.000000] Unknown boot option `androidboot.baseband=4.06.00.12_7': ignoring
[    0.000000] Unknown boot option `androidboot.cid=GOOGL001': ignoring
[    0.000000] Unknown boot option `androidboot.carrier=GOOGLE': ignoring
[    0.000000] Unknown boot option `androidboot.mid=PB9910000': ignoring
[    0.000000] Unknown boot option `androidboot.keycaps=qwerty': ignoring
[    0.000000] Unknown boot option `androidboot.mode=normal': ignoring
[    0.000000] Unknown boot option `androidboot.bootloader=0.33.0012': ignoring
[    0.000000] PID hash table entries: 1024 (order: 10, 4096 bytes)
[    0.000000] Console: colour dummy device 80x30
[    0.000000] console [tty0] enabled
[    0.000610] Dentry cache hash table entries: 32768 (order: 5, 131072 bytes)
[    0.000946] Inode-cache hash table entries: 16384 (order: 4, 65536 bytes)
[    0.012634] Memory: 219MB = 219MB total
[    0.012695] Memory: 217344KB available (3656K code, 870K data, 100K init)
[    0.013275] Calibrating delay loop... 509.54 BogoMIPS (lpj=2547712)
[    0.239929] Mount-cache hash table entries: 512
[    0.240844] Initializing cgroup subsys debug
[    0.240875] Initializing cgroup subsys cpuacct
[    0.240905] Initializing cgroup subsys freezer
[    0.240936] CPU: Testing write buffer coherency: ok
[    0.243591] net_namespace: 780 bytes
[    0.244140] regulator: core version 0.5
[    0.244445] NET: Registered protocol family 16
[    0.245635] mahimahi_init() revision=129
[    3.801177] mahimahi_init_mmc()+
[    3.801544] mahimahi_init_mmc()-
[    3.809417] bio: create slab at 0
[    3.810760] msm_i2c_probe
[    3.810974] msm_i2c_probe: clk_ctl 35d, 100000 Hz
[    3.812377] regulator: VDCDC1: 1000 <--> 1300 mV
[    3.812591] regulator: VDCDC2: 1260 mV
[    3.812774] regulator: VDCDC3: 800 <--> 3300 mV
[    3.813018] regulator: LDO1: 1000 <--> 3150 mV
[    3.813201] regulator: LDO2: 3300 mV
[    3.815246] Bluetooth: Core ver 2.15
[    3.815521] NET: Registered protocol family 31
[    3.815551] Bluetooth: HCI device and connection manager initialized
[    3.815582] Bluetooth: HCI socket layer initialized
[    3.817169] NET: Registered protocol family 2
[    3.817382] IP route cache hash table entries: 2048 (order: 1, 8192 bytes)
[    3.817962] TCP established hash table entries: 8192 (order: 4, 65536 bytes)
[    3.818176] TCP bind hash table entries: 8192 (order: 3, 32768 bytes)
[    3.818267] TCP: Hash tables configured (established 8192 bind 8192)
[    3.818298] TCP reno registered
[    3.818634] NET: Registered protocol family 1
[    3.819610] smd_init()
[    3.819641] smd_core_init()
[    3.819732] smd_core_init() done
[    3.819763] msm_init_last_radio_log: last radio log is 40000 bytes long
[    3.820281] smd_alloc_channel() cid=00 size=08192 'SMD_DS'
[    3.820495] smd_alloc_channel() cid=01 size=08192 'SMD_DIAG'
[    3.820678] smd_alloc_channel() cid=02 size=08192 'SMD_RPCCALL'
[    3.820831] smd_alloc_channel() cid=07 size=32768 'SMD_DATA1'
[    3.821044] smd_alloc_channel() cid=08 size=08192 'SMD_DATA2'
[    3.821197] smd_alloc_channel() cid=09 size=08192 'SMD_DATA3'
[    3.821411] smd_alloc_channel() cid=11 size=32768 'SMD_DATA5'
[    3.821563] smd_alloc_channel() cid=12 size=32768 'SMD_DATA6'
[    3.821746] smd_alloc_channel() cid=13 size=32768 'SMD_DATA7'
[    3.821899] smd_alloc_channel() cid=15 size=08192 'SMD_DATA9'
[    3.822082] smd_alloc_channel() cid=27 size=08192 'SMD_GPSNMEA'
[    3.822265] smd_alloc_channel() cid=40 size=08192 'DSP_DIAG'
[    3.822448] smd_alloc_channel() cid 41 does not exist
[    3.822509] smd_alloc_channel() cid=42 size=08192 'DSP_DAL_AQ_VID'
[    3.822662] smd_alloc_channel() cid=43 size=08192 'DSP_DAL_AQ_AUD'
[    3.822845] smd_alloc_channel() cid=46 size=08192 'DSP_DAL00'
[    3.822998] smd_alloc_channel() cid 47 does not exist
[    3.823028] smd_alloc_channel() cid=48 size=08192 'SMD_DAL_AM_AUD'
[    3.823211] smd_alloc_channel() cid=49 size=08192 'SMD_DAL00'
[    3.823394] smd_alloc_channel() cid=50 size=08192 'SMD_DATA5_CNTL'
[    3.823547] smd_alloc_channel() cid=51 size=08192 'SMD_DATA6_CNTL'
[    3.823760] smd_alloc_channel() cid=52 size=08192 'SMD_DATA7_CNTL'
[    3.825073] SMD: ch 2 1 -> 2
[    3.825225] Switched to high resolution mode on CPU 0
[    3.827972] mdp_probe: initialized
[    3.828033] spi: SPI_CONFIG=8f
[    3.828063] spi: SPI_IO_CONTROL=401
[    3.828094] spi: SPI_OPERATIONAL=85
[    3.828125] spi: SPI_ERROR_FLAGS_EN=7f
[    3.828125] spi: SPI_ERROR_FLAGS=7f
[    3.828155] -mahimahi_init_spi_hack()
[    3.828552] Registered led device: lcd-backlight
[    3.831054] mahimahi-microp 0-0066: microp version [0B][15]
[    3.831542] input: lightsensor-level as /devices/virtual/input/input0
[    3.831939] Registered led device: green
[    3.832183] Registered led device: amber
[    3.832366] Registered led device: red
[    3.832580] Registered led device: blue
[    3.832794] Registered led device: jogball-backlight
[    3.832977] Registered led device: button-backlight
[    3.833496] microp_function_initialize: als_kadc=0x4f, als_gadc=0xc0
[    3.848602] flashlight_init
[    3.848663] flashlight_probe
[    3.848663] flashlight_setup_gpio
[    3.848907] Registered led device: flashlight
[    3.849609] smd_alloc_channel() cid 41 does not exist
[    3.849639] smd_alloc_channel() cid 47 does not exist
[    3.851470] H2W: htc_35mm_jack driver register
[    3.852172] input: h2w headset as /devices/virtual/input/input1
[    3.861419] ashmem: initialized
[    3.862426] yaffs Oct 30 2010 22:16:35 Installing.
[    3.866638] alg: No test for stdrng (krng)
[    3.866760] io scheduler noop registered
[    3.866790] io scheduler anticipatory registered (default)
[    3.867462] +mddi_client_nt35399_init()
[    3.867950] samsung_oled_panel_init: +()
[    3.868255] samsung_oled_panel_init: -()
[    3.868957] msmfb_probe() installing 480 x 800 panel
[    3.869445] mdp_lcdc_probe: initialized
[    3.882446] msm_serial: driver initialized
[    3.882781] msm_serial_hs.0: ttyHS0 at MMIO 0xa0200000 (irq = 44) is a MSM HS UART
[    3.883270] msm_serial_hs module loaded
[    3.887481] loop: module loaded
[    3.887603] pmem: 1 init
[    3.888610] pmem_adsp: 1 init
[    3.890472] pmem_camera: 1 init
[    3.891296] Android kernel panic handler initialized (bind=crashdata)
[    3.891357] PPP generic driver version 2.4.2
[    3.891723] PPP Deflate Compression module registered
[    3.891754] PPP BSD Compression module registered
[    3.892639] PPP MPPE Compression module registered
[    3.892669] NET: Registered protocol family 24
[    3.893646] rmnet0 (): not using net_device_ops yet
[    3.894287] rmnet1 (): not using net_device_ops yet
[    3.894897] rmnet2 (): not using net_device_ops yet
[    3.895538] Linux video capture interface: v2.00
[    3.895690] msm_v4l2: msm_v4l2_init
[    3.896179] s5k3e2fx_sensor_probe
[    4.508972] allocated dma buffer at ffa01000, dma_addr 2d55e000
[    4.509094] read CFG0 = aa5400c0, CFG1 = 6746a
[    4.509124] CFG0 = e85408c0, CFG1 = 4745e
[    4.509155] CFG0: cw/page=3 ud_sz=516 ecc_sz=10 spare_sz=0 num_addr_cycles=5
[    4.509246] NAND_READ_ID = 5510bcad
[    4.509399] status: e03120
[    4.509429] nandid: 5510bcad maker ad device bc
[    4.509490] CFG0: cw/page=3 ud_sz=512 ecc_sz=10 spare_sz=4
[    4.509582] DEV_CMD1: f00f3000
[    4.509643] <6>NAND_EBI2_ECC_BUF_CFG: 1ff
[    4.509674] flash_id: 5510bcad size 20000000
[    4.509704] Creating 6 MTD partitions on "msm_nand":
[    4.509735] 0x000003ee0000-0x000003fc0000 : "misc"
[    4.511718] 0x000004240000-0x000004740000 : "recovery"
[    4.517822] 0x000004740000-0x0000049c0000 : "boot"
[    4.521270] 0x0000049c0000-0x00000dac0000 : "system"
[    4.674621] 0x00000dac0000-0x0000139c0000 : "cache"
[    4.775482] 0x0000139c0000-0x00001fe00000 : "userdata"
[    4.983428] usb_probe() io=ce060000, irq=58, dma=ffa02000(2d562000)
[    4.984161] usb_function_register() 'adb'
[    4.984375] usb_function_register() 'usb_mass_storage'
[    4.984527] usb_function_register() 'diag'
[    4.984558] msm_hsusb: functions bound. starting.
[    4.984588] usb_bind_func() 'usb_mass_storage'
[    4.985290] usb_mass_storage usb_mass_storage: Number of LUNs=1
[    4.985382] usb_bind_func() 'adb'
[    4.985382] adb_bind() cd55a878, cd55aa38
[    4.985748] adb_bind() allocated 4 tx requests
[    4.986267] usb_bind_func() 'diag'
[    4.986755] SMD: ch 1 1 -> 2
[    4.987426] hsusb: IDLE -> ONLINE
[    4.987579] hsusb: reset controller
[    4.987854] mahimahi_ts_power: power 1
[    5.025329] msm_hsusb_phy_reset: success
[    5.135864] msm_i2c msm_i2c.0: error, status 43c8
[    5.135894] msm_i2c msm_i2c.0: Error during data xfer (-5)
[    5.175323] ulpi: write 0x0c to 0x31
[    5.175323] ulpi: write 0x31 to 0x32
[    5.175354] ulpi: write 0x1d to 0x0d
[    5.175384] ulpi: write 0x1d to 0x10
[    5.175415] ept #0 out max:64 head:ffa02000 bit:0
[    5.175415] ept #1 out max:512 head:ffa02080 bit:1
[    5.175445] ept #2 out max:512 head:ffa02100 bit:2
[    5.175476] ept #3 out max:512 head:ffa02180 bit:3
[    5.175506] ept #0 in max:64 head:ffa02040 bit:16
[    5.175537] ept #1 in max:512 head:ffa020c0 bit:17
[    5.175567] ept #2 in max:512 head:ffa02140 bit:18
[    5.175567] ept #3 in max:512 head:ffa021c0 bit:19
[    5.175628] usb: notify offline
[    5.175659] diag_configure() 0
[    5.175659] msm_hsusb: enable pullup
[    5.175689] hsusb: ONLINE -> OFFLINE
[    5.175720] ### notify_usb_connected(0) ###
[    5.175750] diag_configure() 0
[    5.175750] msm_hsusb: disable pullup
[    5.215332] msm_hsusb_phy_reset: success
[    5.246032] synaptics_ts_probe: Product Major Version 1
[    5.246704] synaptics_ts_probe: Product Minor Version 3
[    5.247406] synaptics_ts_probe: product property 2
[    5.248077] synaptics_ts_probe: device control 81
[    5.248748] synaptics_ts_probe: interrupt enable 1
[    5.250640] synaptics_ts_probe: 0xe0: 1 1 1 2 1 3 0 0
[    5.251678] synaptics_ts_probe: Sensor properties 701
[    5.254852] synaptics_ts_probe: max_x 4050, max_y 6822
[    5.254882] synaptics_ts_probe: inactive_x -210 -168, inactive_y -127 -341
[    5.254913] synaptics_ts_probe: snap_x 0-0 0-0, snap_y 0-0 0-0
[    5.255310] input: synaptics-rmi-touchscreen as /devices/virtual/input/input2
[    5.256072] synaptics_ts_probe: Start touchscreen synaptics-rmi-touchscreen in interrupt mode
[    5.256927] GPIO Matrix Keypad Driver: Start keypad matrix for mahimahi-keypad... in interrupt mode
[    5.257080] GPIO Input Driver: Start gpio inputs for mahimahi-keypad... in interrupt mode
[    5.257751] input: mahimahi-keypad as /devices/virtual/input/input3
[    5.258392] input: mahimahi-nav as /devices/virtual/input/input4
[    5.258819] capella_cm3602_probe: probe
[    5.258850] capella_cm3602_probe: allocating input device
[    5.258911] capella_cm3602_probe: registering input device
[    5.259277] input: proximity as /devices/virtual/input/input5
[    5.259521] capella_cm3602_probe: registering misc device
[    5.259735] capella_cm3602_setup
[    5.259796] proximity 1
[    5.260314] using input dev h2w headset for key reset
[    5.260375] using input dev mahimahi-keypad for key reset
[    5.260437] using input dev mahimahi-nav for key reset
[    5.261505] using rtc device, msm_rtc, for alarms<6>rs30000048:00010000 rs30000048:00010000: rtc core: registered msm_rtc as rtc0
[    5.261688] AKM8973 compass driver: init
[    5.263183] input: compass as /devices/virtual/input/input6
[    5.263946] a1026_init
[    5.264373] Driver for 1-wire Dallas network protocol.
[    5.265777] msm_i2c msm_i2c.0: error, status 43c8
[    5.265838] msm_i2c msm_i2c.0: Error during data xfer (-5)
[    5.265899] ds2482 0-0018: i2c write c3 87 failed, -5, retries left 5
[    5.266265] msm_i2c msm_i2c.0: error, status 43c8
[    5.266296] msm_i2c msm_i2c.0: Error during data xfer (-5)
[    5.266357] ds2482 0-0018: i2c write c3 87 failed, -5, retries left 4
[    5.266723] msm_i2c msm_i2c.0: error, status 43c8
[    5.266754] msm_i2c msm_i2c.0: Error during data xfer (-5)
[    5.266815] ds2482 0-0018: i2c write c3 87 failed, -5, retries left 3
[    5.267150] msm_i2c msm_i2c.0: error, status 43c8
[    5.267211] msm_i2c msm_i2c.0: Error during data xfer (-5)
[    5.267242] ds2482 0-0018: i2c write c3 87 failed, -5, retries left 2
[    5.267608] msm_i2c msm_i2c.0: error, status 43c8
[    5.267669] msm_i2c msm_i2c.0: Error during data xfer (-5)
[    5.267700] ds2482 0-0018: i2c write c3 87 failed, -5, retries left 1
[    5.268066] msm_i2c msm_i2c.0: error, status 43c8
[    5.268096] msm_i2c msm_i2c.0: Error during data xfer (-5)
[    5.268157] ds2482 0-0018: i2c write c3 87 failed, -5, retries left 0
[    5.269653] device-mapper: uevent: version 1.0.3
[    5.270202] device-mapper: ioctl: 4.14.0-ioctl (2008-04-23) initialised: [email protected]
[    5.270294] Bluetooth: HCI UART driver ver 2.2
[    5.270324] Bluetooth: HCI H4 protocol initialized
[    5.270355] Bluetooth: HCILL protocol initialized
[    5.271697] mmc0: Qualcomm MSM SDCC at 0x00000000a0300000 irq 24,0 dma 8
[    5.271759] mmc0: 4 bit data mode enabled
[    5.271759] mmc0: MMC clock 144000 -> 50000000 Hz, PCLK 64000000 Hz
[    5.271789] mmc0: Slot eject status = 1
[    5.271820] mmc0: Power save feature enable = 1
[    5.271850] mmc0: DM non-cached buffer at ffa04000, dma_addr 0x2d58e000
[    5.271881] mmc0: DM cmd busaddr 0x2d58e000, cmdptr busaddr 0x2d58e300
[    5.272796] mmc1: Qualcomm MSM SDCC at 0x00000000a0400000 irq 26,0 dma 8
[    5.272827] mmc1: 4 bit data mode enabled
[    5.272857] mmc1: MMC clock 144000 -> 50000000 Hz, PCLK 64000000 Hz
[    5.272888] mmc1: Slot eject status = 0
[    5.272918] mmc1: Power save feature enable = 1
[    5.272918] mmc1: DM non-cached buffer at ffa05000, dma_addr 0x2d590000
[    5.272949] mmc1: DM cmd busaddr 0x2d590000, cmdptr busaddr 0x2d590300
[    5.274658] logger: created 64K log 'log_main'
[    5.274902] logger: created 256K log 'log_events'
[    5.275115] logger: created 64K log 'log_radio'
[    5.275207] ram_console: got buffer at 3a00000, size 40000
[    5.275390] ram_console: found existing buffer, size 28431, start 28431
[    5.401641] console [ram-1] enabled
[    5.455413] TCP cubic registered
[    5.455993] NET: Registered protocol family 10
[    5.457031] lo: Disabled Privacy Extensions
[    5.458343] Mobile IPv6
[    5.458618] IPv6 over IPv4 tunneling driver
[    5.459625] sit0: Disabled Privacy Extensions
[    5.460632] ip6tnl0: Disabled Privacy Extensions
[    5.461059] NET: Registered protocol family 17
[    5.461242] NET: Registered protocol family 15
[    5.461547] Bluetooth: L2CAP ver 2.13
[    5.461700] Bluetooth: L2CAP socket layer initialized
[    5.461853] Bluetooth: SCO (Voice Link) ver 0.6
[    5.462127] Bluetooth: SCO socket layer initialized
[    5.463043] Bluetooth: RFCOMM socket layer initialized
[    5.463439] Bluetooth: RFCOMM TTY layer initialized
[    5.463592] Bluetooth: RFCOMM ver 1.11
[    5.463745] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    5.464019] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[    5.464355] ThumbEE CPU extension supported.
[    5.465087] clock_late_init() disabled 18 unused clocks
[    5.465423] mahimahi_wifi_init: start
[    5.475402] VFP support v0.3: implementor 51 architecture 0 part 0f variant 0 rev 1
[    5.480468] rs30000048:00010000 rs30000048:00010000: setting system clock to 2010-10-30 01:32:33 UTC (1288402353)
[    5.480957] Waiting for root device /dev/mmcblk0p2...
[    5.520751] mmc1: Command timeout
[    5.526733] mmc1: Command timeout
[    5.532745] mmc1: Command timeout
[    5.538726] mmc1: Command timeout
[    5.930267] batt: 100%, 4157 mV, 70 mA (5 avg), 30.0 C, 1361 mAh
[    5.930633] batt: charging OFF [FULL]
[    6.422637] mmc1: host does not support reading read-only switch. assuming write-enable.
[    6.422851] mmc1: new high speed SDHC card at address 0007
[    6.423675] mmcblk0: mmc1:0007 SD04G 3.73 GiB
[    6.424133]  mmcblk0: p1 p2 p3
[    9.362518] cable_status_update: status=1
[    9.385375] hsusb: OFFLINE -> ONLINE
[    9.385650] hsusb: reset controller
[    9.425354] msm_hsusb_phy_reset: success
[    9.575347] ulpi: write 0x0c to 0x31
[    9.575500] ulpi: write 0x31 to 0x32
[    9.575653] ulpi: write 0x1d to 0x0d
[    9.575897] ulpi: write 0x1d to 0x10
[    9.576049] ept #0 out max:64 head:ffa02000 bit:0
[    9.576202] ept #1 out max:512 head:ffa02080 bit:1
[    9.576477] ept #2 out max:512 head:ffa02100 bit:2
[    9.576629] ept #3 out max:512 head:ffa02180 bit:3
[    9.576904] ept #0 in max:64 head:ffa02040 bit:16
[    9.577056] ept #1 in max:512 head:ffa020c0 bit:17
[    9.577331] ept #2 in max:512 head:ffa02140 bit:18
[    9.577484] ept #3 in max:512 head:ffa021c0 bit:19
[    9.577636] usb: notify offline
[    9.577911] diag_configure() 0
[    9.578063] msm_hsusb: enable pullup
[    9.581359] usb: suspend
[    9.715301] usb: reset
[    9.717590] usb: portchange USB_SPEED_HIGH
[   10.191284] usb: reset
[   10.193542] usb: portchange USB_SPEED_HIGH
[   10.366394] diag_configure() 1
[   10.366546] ### notify_usb_connected(1) ###
[   10.366790] usb_mass_storage usb_mass_storage: config #1
[   11.330566] EXT3-fs warning: mounting fs with errors, running e2fsck is recommended
[   11.330810] kjournald starting.  Commit interval 5 seconds
[   11.539764] EXT3 FS on mmcblk0p2, internal journal
[   11.540039] EXT3-fs: recovery complete.
[   11.750671] EXT3-fs: mounted filesystem with ordered data mode.
[   11.750946] VFS: Mounted root (ext3 filesystem) on device 179:2.
[   11.751434] Freeing init memory: 100K
[   13.549499] udev: starting version 161
[   13.959869] wifi_set_power = 1
[   13.959869] mahimahi_wifi_power: 1
[   14.318908] wifi_set_carddetect = 1
[   14.318939] mahimahi_wifi_set_carddetect: 1
[   14.318939] mmc0: card_present 1
[   14.318939] mmc0: Slot status change detected (0 -> 1)
[   14.322021]
[   14.322021] Dongle Host Driver, version 4.218.161.0
[   15.062774] msm_nand_read_oob: unsupported ops->len, 512
[   15.062805] end_request: I/O error, dev mtdblock0, sector 0
[   15.062835] Buffer I/O error on device mtdblock0, logical block 0
[   15.062896] msm_nand_read_oob: unsupported ops->len, 512
[   15.062896] end_request: I/O error, dev mtdblock0, sector 8
[   15.062927] Buffer I/O error on device mtdblock0, logical block 1
[   15.062927] msm_nand_read_oob: unsupported ops->len, 512
[   15.062957] end_request: I/O error, dev mtdblock0, sector 16
[   15.062957] Buffer I/O error on device mtdblock0, logical block 2
[   15.062988] msm_nand_read_oob: unsupported ops->len, 512
[   15.062988] end_request: I/O error, dev mtdblock0, sector 24
[   15.063018] Buffer I/O error on device mtdblock0, logical block 3
[   15.063018] msm_nand_read_oob: unsupported ops->len, 512
[   15.063049] end_request: I/O error, dev mtdblock0, sector 32
[   15.063049] Buffer I/O error on device mtdblock0, logical block 4
[   15.063079] msm_nand_read_oob: unsupported ops->len, 512
[   15.063079] end_request: I/O error, dev mtdblock0, sector 40
[   15.063110] Buffer I/O error on device mtdblock0, logical block 5
[   15.063110] msm_nand_read_oob: unsupported ops->len, 512
[   15.063140] end_request: I/O error, dev mtdblock0, sector 48
[   15.063140] Buffer I/O error on device mtdblock0, logical block 6
[   15.063171] msm_nand_read_oob: unsupported ops->len, 512
[   15.063171] end_request: I/O error, dev mtdblock0, sector 56
[   15.063201] Buffer I/O error on device mtdblock0, logical block 7
[   15.063201] msm_nand_read_oob: unsupported ops->len, 512
[   15.063232] end_request: I/O error, dev mtdblock0, sector 64
[   15.063232] Buffer I/O error on device mtdblock0, logical block 8
[   15.063262] msm_nand_read_oob: unsupported ops->len, 512
[   15.063262] end_request: I/O error, dev mtdblock0, sector 72
[   15.063262] Buffer I/O error on device mtdblock0, logical block 9
[   15.063293] msm_nand_read_oob: unsupported ops->len, 512
[   15.063293] end_request: I/O error, dev mtdblock0, sector 80
[   15.063323] msm_nand_read_oob: unsupported ops->len, 512
[   15.063323] end_request: I/O error, dev mtdblock0, sector 88
[   15.063354] msm_nand_read_oob: unsupported ops->len, 512
[   15.063354] end_request: I/O error, dev mtdblock0, sector 96
[   15.063385] msm_nand_read_oob: unsupported ops->len, 512
[   15.063385] end_request: I/O error, dev mtdblock0, sector 104
[   15.063415] msm_nand_read_oob: unsupported ops->len, 512
[   15.063415] end_request: I/O error, dev mtdblock0, sector 112
[   15.063446] msm_nand_read_oob: unsupported ops->len, 512
[   15.063446] end_request: I/O error, dev mtdblock0, sector 120
[   15.063476] msm_nand_read_oob: unsupported ops->len, 512
[   15.063476] end_request: I/O error, dev mtdblock0, sector 128
[   15.063507] msm_nand_read_oob: unsupported ops->len, 512
[   15.063507] end_request: I/O error, dev mtdblock0, sector 136
[   15.063537] msm_nand_read_oob: unsupported ops->len, 512
[   15.063537] end_request: I/O error, dev mtdblock0, sector 144
[   15.063568] msm_nand_read_oob: unsupported ops->len, 512
[   15.063568] end_request: I/O error, dev mtdblock0, sector 152
[   15.063598] msm_nand_read_oob: unsupported ops->len, 512
[   15.063598] end_request: I/O error, dev mtdblock0, sector 160
[   15.063629] msm_nand_read_oob: unsupported ops->len, 512
[   15.063629] end_request: I/O error, dev mtdblock0, sector 168
[   15.063659] msm_nand_read_oob: unsupported ops->len, 512
[   15.063659] end_request: I/O error, dev mtdblock0, sector 176
[   15.063690] msm_nand_read_oob: unsupported ops->len, 512
[   15.063690] end_request: I/O error, dev mtdblock0, sector 184
[   15.063720] msm_nand_read_oob: unsupported ops->len, 512
[   15.063720] end_request: I/O error, dev mtdblock0, sector 192
[   15.063751] msm_nand_read_oob: unsupported ops->len, 512
[   15.063751] end_request: I/O error, dev mtdblock0, sector 200
[   15.063781] msm_nand_read_oob: unsupported ops->len, 512
[   15.063781] end_request: I/O error, dev mtdblock0, sector 208
[   15.063812] msm_nand_read_oob: unsupported ops->len, 512
[   15.063812] end_request: I/O error, dev mtdblock0, sector 216
[   15.063842] msm_nand_read_oob: unsupported ops->len, 512
[   15.063842] end_request: I/O error, dev mtdblock0, sector 224
[   15.063873] msm_nand_read_oob: unsupported ops->len, 512
[   15.063873] end_request: I/O error, dev mtdblock0, sector 232
[   15.063903] msm_nand_read_oob: unsupported ops->len, 512
[   15.063903] end_request: I/O error, dev mtdblock0, sector 240
[   15.063934] msm_nand_read_oob: unsupported ops->len, 512
[   15.063964] end_request: I/O error, dev mtdblock0, sector 248
[   15.063964] msm_nand_read_oob: unsupported ops->len, 512
[   15.063995] end_request: I/O error, dev mtdblock0, sector 0
[   15.070983] msm_nand_read_oob: unsupported ops->len, 512
[   15.071014] end_request: I/O error, dev mtdblock1, sector 0
[   15.071075] msm_nand_read_oob: unsupported ops->len, 512
[   15.071105] end_request: I/O error, dev mtdblock1, sector 8
[   15.071105] msm_nand_read_oob: unsupported ops->len, 512
[   15.071136] end_request: I/O error, dev mtdblock1, sector 16
[   15.071136] msm_nand_read_oob: unsupported ops->len, 512
[   15.071166] end_request: I/O error, dev mtdblock1, sector 24
[   15.071166] msm_nand_read_oob: unsupported ops->len, 512
[   15.071197] end_request: I/O error, dev mtdblock1, sector 32
[   15.071197] msm_nand_read_oob: unsupported ops->len, 512
[   15.071228] end_request: I/O error, dev mtdblock1, sector 40
[   15.071228] msm_nand_read_oob: unsupported ops->len, 512
[   15.071258] end_request: I/O error, dev mtdblock1, sector 48
[   15.071258] msm_nand_read_oob: unsupported ops->len, 512
[   15.071289] end_request: I/O error, dev mtdblock1, sector 56
[   15.071289] msm_nand_read_oob: unsupported ops->len, 512
[   15.071319] end_request: I/O error, dev mtdblock1, sector 64
[   15.071319] msm_nand_read_oob: unsupported ops->len, 512
[   15.071350] end_request: I/O error, dev mtdblock1, sector 72
[   15.071350] msm_nand_read_oob: unsupported ops->len, 512
[   15.071380] end_request: I/O error, dev mtdblock1, sector 80
[   15.071380] msm_nand_read_oob: unsupported ops->len, 512
[   15.071411] end_request: I/O error, dev mtdblock1, sector 88
[   15.071411] msm_nand_read_oob: unsupported ops->len, 512
[   15.071441] end_request: I/O error, dev mtdblock1, sector 96
[   15.071441] msm_nand_read_oob: unsupported ops->len, 512
[   15.071472] end_request: I/O error, dev mtdblock1, sector 104
[   15.071472] msm_nand_read_oob: unsupported ops->len, 512
[   15.071502] end_request: I/O error, dev mtdblock1, sector 112
[   15.071502] msm_nand_read_oob: unsupported ops->len, 512
[   15.071533] end_request: I/O error, dev mtdblock1, sector 120
[   15.071533] msm_nand_read_oob: unsupported ops->len, 512
[   15.071563] end_request: I/O error, dev mtdblock1, sector 128
[   15.071563] msm_nand_read_oob: unsupported ops->len, 512
[   15.071594] end_request: I/O error, dev mtdblock1, sector 136
[   15.071594] msm_nand_read_oob: unsupported ops->len, 512
[   15.071624] end_request: I/O error, dev mtdblock1, sector 144
[   15.071624] msm_nand_read_oob: unsupported ops->len, 512
[   15.071655] end_request: I/O error, dev mtdblock1, sector 152
[   15.071655] msm_nand_read_oob: unsupported ops->len, 512
[   15.071685] end_request: I/O error, dev mtdblock1, sector 160
[   15.071685] msm_nand_read_oob: unsupported ops->len, 512
[   15.071716] end_request: I/O error, dev mtdblock1, sector 168
[   15.071716] msm_nand_read_oob: unsupported ops->len, 512
[   15.071746] end_request: I/O error, dev mtdblock1, sector 176
[   15.071746] msm_nand_read_oob: unsupported ops->len, 512
[   15.071777] end_request: I/O error, dev mtdblock1, sector 184
[   15.071777] msm_nand_read_oob: unsupported ops->len, 512
[   15.071807] end_request: I/O error, dev mtdblock1, sector 192
[   15.071807] msm_nand_read_oob: unsupported ops->len, 512
[   15.071838] end_request: I/O error, dev mtdblock1, sector 200
[   15.071838] msm_nand_read_oob: unsupported ops->len, 512
[   15.071868] end_request: I/O error, dev mtdblock1, sector 208
[   15.071868] msm_nand_read_oob: unsupported ops->len, 512
[   15.071899] end_request: I/O error, dev mtdblock1, sector 216
[   15.071899] msm_nand_read_oob: unsupported ops->len, 512
[   15.071929] end_request: I/O error, dev mtdblock1, sector 224
[   15.071929] msm_nand_read_oob: unsupported ops->len, 512
[   15.071960] end_request: I/O error, dev mtdblock1, sector 232
[   15.071960] msm_nand_read_oob: unsupported ops->len, 512
[   15.071990] end_request: I/O error, dev mtdblock1, sector 240
[   15.072021] msm_nand_read_oob: unsupported ops->len, 512
[   15.072021] end_request: I/O error, dev mtdblock1, sector 248
[   15.072052] msm_nand_read_oob: unsupported ops->len, 512
[   15.072052] end_request: I/O error, dev mtdblock1, sector 0
[   15.083251] msm_nand_read_oob: unsupported ops->len, 512
[   15.083282] end_request: I/O error, dev mtdblock2, sector 0
[   15.083343] msm_nand_read_oob: unsupported ops->len, 512
[   15.083343] end_request: I/O error, dev mtdblock2, sector 8
[   15.083374] msm_nand_read_oob: unsupported ops->len, 512
[   15.083404] end_request: I/O error, dev mtdblock2, sector 16
[   15.083404] msm_nand_read_oob: unsupported ops->len, 512
[   15.083435] end_request: I/O error, dev mtdblock2, sector 24
[   15.083435] msm_nand_read_oob: unsupported ops->len, 512
[   15.083465] end_request: I/O error, dev mtdblock2, sector 32
[   15.083465] msm_nand_read_oob: unsupported ops->len, 512
[   15.083496] end_request: I/O error, dev mtdblock2, sector 40
[   15.083496] msm_nand_read_oob: unsupported ops->len, 512
[   15.083526] end_request: I/O error, dev mtdblock2, sector 48
[   15.083526] msm_nand_read_oob: unsupported ops->len, 512
[   15.083557] end_request: I/O error, dev mtdblock2, sector 56
[   15.083557] msm_nand_read_oob: unsupported ops->len, 512
[   15.083587] end_request: I/O error, dev mtdblock2, sector 64
[   15.083587] msm_nand_read_oob: unsupported ops->len, 512
[   15.083618] end_request: I/O error, dev mtdblock2, sector 72
[   15.083618] msm_nand_read_oob: unsupported ops->len, 512
[   15.083648] end_request: I/O error, dev mtdblock2, sector 80
[   15.083648] msm_nand_read_oob: unsupported ops->len, 512
[   15.083679] end_request: I/O error, dev mtdblock2, sector 88
[   15.083679] msm_nand_read_oob: unsupported ops->len, 512
[   15.083709] end_request: I/O error, dev mtdblock2, sector 96
[   15.083709] msm_nand_read_oob: unsupported ops->len, 512
[   15.083740] end_request: I/O error, dev mtdblock2, sector 104
[   15.083740] msm_nand_read_oob: unsupported ops->len, 512
[   15.083770] end_request: I/O error, dev mtdblock2, sector 112
[   15.083770] msm_nand_read_oob: unsupported ops->len, 512
[   15.083801] end_request: I/O error, dev mtdblock2, sector 120
[   15.083801] msm_nand_read_oob: unsupported ops->len, 512
[   15.083831] end_request: I/O error, dev mtdblock2, sector 128
[   15.083831] msm_nand_read_oob: unsupported ops->len, 512
[   15.083862] end_request: I/O error, dev mtdblock2, sector 136
[   15.083862] msm_nand_read_oob: unsupported ops->len, 512
[   15.083892] end_request: I/O error, dev mtdblock2, sector 144
[   15.083892] msm_nand_read_oob: unsupported ops->len, 512
[   15.083923] end_request: I/O error, dev mtdblock2, sector 152
[   15.083923] msm_nand_read_oob: unsupported ops->len, 512
[   15.083953] end_request: I/O error, dev mtdblock2, sector 160
[   15.083953] msm_nand_read_oob: unsupported ops->len, 512
[   15.083984] end_request: I/O error, dev mtdblock2, sector 168
[   15.083984] msm_nand_read_oob: unsupported ops->len, 512
[   15.084014] end_request: I/O error, dev mtdblock2, sector 176
[   15.084014] msm_nand_read_oob: unsupported ops->len, 512
[   15.084045] end_request: I/O error, dev mtdblock2, sector 184
[   15.084045] msm_nand_read_oob: unsupported ops->len, 512
[   15.084075] end_request: I/O error, dev mtdblock2, sector 192
[   15.084075] msm_nand_read_oob: unsupported ops->len, 512
[   15.084106] end_request: I/O error, dev mtdblock2, sector 200
[   15.084106] msm_nand_read_oob: unsupported ops->len, 512
[   15.084136] end_request: I/O error, dev mtdblock2, sector 208
[   15.084136] msm_nand_read_oob: unsupported ops->len, 512
[   15.084167] end_request: I/O error, dev mtdblock2, sector 216
[   15.084167] msm_nand_read_oob: unsupported ops->len, 512
[   15.084167] end_request: I/O error, dev mtdblock2, sector 224
[   15.084197] msm_nand_read_oob: unsupported ops->len, 512
[   15.084197] end_request: I/O error, dev mtdblock2, sector 232
[   15.084228] msm_nand_read_oob: unsupported ops->len, 512
[   15.084228] end_request: I/O error, dev mtdblock2, sector 240
[   15.084259] msm_nand_read_oob: unsupported ops->len, 512
[   15.084289] end_request: I/O error, dev mtdblock2, sector 248
[   15.084320] msm_nand_read_oob: unsupported ops->len, 512
[   15.084320] end_request: I/O error, dev mtdblock2, sector 0
[   15.093261] msm_nand_read_oob: unsupported ops->len, 512
[   15.093292] end_request: I/O error, dev mtdblock3, sector 0
[   15.093353] msm_nand_read_oob: unsupported ops->len, 512
[   15.093383] end_request: I/O error, dev mtdblock3, sector 8
[   15.093383] msm_nand_read_oob: unsupported ops->len, 512
[   15.093414] end_request: I/O error, dev mtdblock3, sector 16
[   15.093414] msm_nand_read_oob: unsupported ops->len, 512
[   15.093444] end_request: I/O error, dev mtdblock3, sector 24
[   15.093444] msm_nand_read_oob: unsupported ops->len, 512
[   15.093475] end_request: I/O error, dev mtdblock3, sector 32
[   15.093475] msm_nand_read_oob: unsupported ops->len, 512
[   15.093505] end_request: I/O error, dev mtdblock3, sector 40
[   15.093505] msm_nand_read_oob: unsupported ops->len, 512
[   15.093536] end_request: I/O error, dev mtdblock3, sector 48
[   15.093536] msm_nand_read_oob: unsupported ops->len, 512
[   15.093566] end_request: I/O error, dev mtdblock3, sector 56
[   15.093566] msm_nand_read_oob: unsupported ops->len, 512
[   15.093597] end_request: I/O error, dev mtdblock3, sector 64
[   15.093597] msm_nand_read_oob: unsupported ops->len, 512
[   15.093627] end_request: I/O error, dev mtdblock3, sector 72
[   15.093627] msm_nand_read_oob: unsupported ops->len, 512
[   15.093658] end_request: I/O error, dev mtdblock3, sector 80
[   15.093658] msm_nand_read_oob: unsupported ops->len, 512
[   15.093688] end_request: I/O error, dev mtdblock3, sector 88
[   15.093688] msm_nand_read_oob: unsupported ops->len, 512
[   15.093719] end_request: I/O error, dev mtdblock3, sector 96
[   15.093719] msm_nand_read_oob: unsupported ops->len, 512
[   15.093750] end_request: I/O error, dev mtdblock3, sector 104
[   15.093750] msm_nand_read_oob: unsupported ops->len, 512
[   15.093780] end_request: I/O error, dev mtdblock3, sector 112
[   15.093780] msm_nand_read_oob: unsupported ops->len, 512
[   15.093811] end_request: I/O error, dev mtdblock3, sector 120
[   15.093811] msm_nand_read_oob: unsupported ops->len, 512
[   15.093841] end_request: I/O error, dev mtdblock3, sector 128
[   15.093841] msm_nand_read_oob: unsupported ops->len, 512
[   15.093872] end_request: I/O error, dev mtdblock3, sector 136
[   15.093872] msm_nand_read_oob: unsupported ops->len, 512
[   15.093902] end_request: I/O error, dev mtdblock3, sector 144
[   15.093902] msm_nand_read_oob: unsupported ops->len, 512
[   15.093933] end_request: I/O error, dev mtdblock3, sector 152
[   15.093933] msm_nand_read_oob: unsupported ops->len, 512
[   15.093963] end_request: I/O error, dev mtdblock3, sector 160
[   15.093963] msm_nand_read_oob: unsupported ops->len, 512
[   15.093994] end_request: I/O error, dev mtdblock3, sector 168
[   15.093994] msm_nand_read_oob: unsupported ops->len, 512
[   15.094024] end_request: I/O error, dev mtdblock3, sector 176
[   15.094024] msm_nand_read_oob: unsupported ops->len, 512
[   15.094055] end_request: I/O error, dev mtdblock3, sector 184
[   15.094055] msm_nand_read_oob: unsupported ops->len, 512
[   15.094085] end_request: I/O error, dev mtdblock3, sector 192
[   15.094085] msm_nand_read_oob: unsupported ops->len, 512
[   15.094116] end_request: I/O error, dev mtdblock3, sector 200
[   15.094116] msm_nand_read_oob: unsupported ops->len, 512
[   15.094146] end_request: I/O error, dev mtdblock3, sector 208
[   15.094146] msm_nand_read_oob: unsupported ops->len, 512
[   15.094177] end_request: I/O error, dev mtdblock3, sector 216
[   15.094177] msm_nand_read_oob: unsupported ops->len, 512
[   15.094207] end_request: I/O error, dev mtdblock3, sector 224
[   15.094207] msm_nand_read_oob: unsupported ops->len, 512
[   15.094207] end_request: I/O error, dev mtdblock3, sector 232
[   15.094238] msm_nand_read_oob: unsupported ops->len, 512
[   15.094238] end_request: I/O error, dev mtdblock3, sector 240
[   15.094299] msm_nand_read_oob: unsupported ops->len, 512
[   15.094299] end_request: I/O error, dev mtdblock3, sector 248
[   15.094329] msm_nand_read_oob: unsupported ops->len, 512
[   15.094329] end_request: I/O error, dev mtdblock3, sector 0
[   15.103424] msm_nand_read_oob: unsupported ops->len, 512
[   15.103454] end_request: I/O error, dev mtdblock4, sector 0
[   15.103515] msm_nand_read_oob: unsupported ops->len, 512
[   15.103546] end_request: I/O error, dev mtdblock4, sector 8
[   15.103546] msm_nand_read_oob: unsupported ops->len, 512
[   15.103576] end_request: I/O error, dev mtdblock4, sector 16
[   15.103576] msm_nand_read_oob: unsupported ops->len, 512
[   15.103607] end_request: I/O error, dev mtdblock4, sector 24
[   15.103607] msm_nand_read_oob: unsupported ops->len, 512
[   15.103637] end_request: I/O error, dev mtdblock4, sector 32
[   15.103637] msm_nand_read_oob: unsupported ops->len, 512
[   15.103668] end_request: I/O error, dev mtdblock4, sector 40
[   15.103698] msm_nand_read_oob: unsupported ops->len, 512
[   15.103698] end_request: I/O error, dev mtdblock4, sector 48
[   15.103729] msm_nand_read_oob: unsupported ops->len, 512
[   15.103729] end_request: I/O error, dev mtdblock4, sector 56
[   15.103759] msm_nand_read_oob: unsupported ops->len, 512
[   15.103759] end_request: I/O error, dev mtdblock4, sector 64
[   15.103790] msm_nand_read_oob: unsupported ops->len, 512
[   15.103790] end_request: I/O error, dev mtdblock4, sector 72
[   15.103820] msm_nand_read_oob: unsupported ops->len, 512
[   15.103820] end_request: I/O error, dev mtdblock4, sector 80
[   15.103851] msm_nand_read_oob: unsupported ops->len, 512
[   15.103851] end_request: I/O error, dev mtdblock4, sector 88
[   15.103881] msm_nand_read_oob: unsupported ops->len, 512
[   15.103881] end_request: I/O error, dev mtdblock4, sector 96
[   15.103912] msm_nand_read_oob: unsupported ops->len, 512
[   15.103912] end_request: I/O error, dev mtdblock4, sector 104
[   15.103942] msm_nand_read_oob: unsupported ops->len, 512
[   15.103942] end_request: I/O error, dev mtdblock4, sector 112
[   15.103973] msm_nand_read_oob: unsupported ops->len, 512
[   15.103973] end_request: I/O error, dev mtdblock4, sector 120
[   15.104003] msm_nand_read_oob: unsupported ops->len, 512
[   15.104003] end_request: I/O error, dev mtdblock4, sector 128
[   15.104034] msm_nand_read_oob: unsupported ops->len, 512
[   15.104034] end_request: I/O error, dev mtdblock4, sector 136
[   15.104064] msm_nand_read_oob: unsupported ops->len, 512
[   15.104064] end_request: I/O error, dev mtdblock4, sector 144
[   15.104095] msm_nand_read_oob: unsupported ops->len, 512
[   15.104095] end_request: I/O error, dev mtdblock4, sector 152
[   15.104125] msm_nand_read_oob: unsupported ops->len, 512
[   15.104125] end_request: I/O error, dev mtdblock4, sector 160
[   15.104156] msm_nand_read_oob: unsupported ops->len, 512
[   15.104156] end_request: I/O error, dev mtdblock4, sector 168
[   15.104187] msm_nand_read_oob: unsupported ops->len, 512
[   15.104187] end_request: I/O error, dev mtdblock4, sector 176
[   15.104217] msm_nand_read_oob: unsupported ops->len, 512
[   15.104217] end_request: I/O error, dev mtdblock4, sector 184
[   15.104248] msm_nand_read_oob: unsupported ops->len, 512
[   15.104248] end_request: I/O error, dev mtdblock4, sector 192
[   15.104248] msm_nand_read_oob: unsupported ops->len, 512
[   15.104278] end_request: I/O error, dev mtdblock4, sector 200
[   15.104278] msm_nand_read_oob: unsupported ops->len, 512
[   15.104309] end_request: I/O error, dev mtdblock4, sector 208
[   15.104309] msm_nand_read_oob: unsupported ops->len, 512
[   15.104339] end_request: I/O error, dev mtdblock4, sector 216
[   15.104339] msm_nand_read_oob: unsupported ops->len, 512
[   15.104370] end_request: I/O error, dev mtdblock4, sector 224
[   15.104370] msm_nand_read_oob: unsupported ops->len, 512
[   15.104400] end_request: I/O error, dev mtdblock4, sector 232
[   15.104400] msm_nand_read_oob: unsupported ops->len, 512
[   15.104431] end_request: I/O error, dev mtdblock4, sector 240
[   15.104461] msm_nand_read_oob: unsupported ops->len, 512
[   15.104461] end_request: I/O error, dev mtdblock4, sector 248
[   15.104492] msm_nand_read_oob: unsupported ops->len, 512
[   15.104492] end_request: I/O error, dev mtdblock4, sector 0
[   15.111450] msm_nand_read_oob: unsupported ops->len, 512
[   15.111480] end_request: I/O error, dev mtdblock5, sector 0
[   15.111541] msm_nand_read_oob: unsupported ops->len, 512
[   15.111541] end_request: I/O error, dev mtdblock5, sector 8
[   15.111572] msm_nand_read_oob: unsupported ops->len, 512
[   15.111602] end_request: I/O error, dev mtdblock5, sector 16
[   15.111602] msm_nand_read_oob: unsupported ops->len, 512
[   15.111633] end_request: I/O error, dev mtdblock5, sector 24
[   15.111633] msm_nand_read_oob: unsupported ops->len, 512
[   15.111663] end_request: I/O error, dev mtdblock5, sector 32
[   15.111663] msm_nand_read_oob: unsupported ops->len, 512
[   15.111694] end_request: I/O error, dev mtdblock5, sector 40
[   15.111694] msm_nand_read_oob: unsupported ops->len, 512
[   15.111724] end_request: I/O error, dev mtdblock5, sector 48
[   15.111724] msm_nand_read_oob: unsupported ops->len, 512
[   15.111755] end_request: I/O error, dev mtdblock5, sector 56
[   15.111755] msm_nand_read_oob: unsupported ops->len, 512
[   15.111785] end_request: I/O error, dev mtdblock5, sector 64
[   15.111785] msm_nand_read_oob: unsupported ops->len, 512
[   15.111816] end_request: I/O error, dev mtdblock5, sector 72
[   15.111816] msm_nand_read_oob: unsupported ops->len, 512
[   15.111846] end_request: I/O error, dev mtdblock5, sector 80
[   15.111846] msm_nand_read_oob: unsupported ops->len, 512
[   15.111877] end_request: I/O error, dev mtdblock5, sector 88
[   15.111877] msm_nand_read_oob: unsupported ops->len, 512
[   15.111907] end_request: I/O error, dev mtdblock5, sector 96
[   15.111907] msm_nand_read_oob: unsupported ops->len, 512
[   15.111938] end_request: I/O error, dev mtdblock5, sector 104
[   15.111938] msm_nand_read_oob: unsupported ops->len, 512
[   15.111968] end_request: I/O error, dev mtdblock5, sector 112
[   15.111968] msm_nand_read_oob: unsupported ops->len, 512
[   15.111999] end_request: I/O error, dev mtdblock5, sector 120
[   15.111999] msm_nand_read_oob: unsupported ops->len, 512
[   15.112030] end_request: I/O error, dev mtdblock5, sector 128
[   15.112030] msm_nand_read_oob: unsupported ops->len, 512
[   15.112060] end_request: I/O error, dev mtdblock5, sector 136
[   15.112060] msm_nand_read_oob: unsupported ops->len, 512
[   15.112091] end_request: I/O error, dev mtdblock5, sector 144
[   15.112091] msm_nand_read_oob: unsupported ops->len, 512
[   15.112121] end_request: I/O error, dev mtdblock5, sector 152
[   15.112121] msm_nand_read_oob: unsupported ops->len, 512
[   15.112152] end_request: I/O error, dev mtdblock5, sector 160
[   15.112152] msm_nand_read_oob: unsupported ops->len, 512
[   15.112182] end_request: I/O error, dev mtdblock5, sector 168
[   15.112182] msm_nand_read_oob: unsupported ops->len, 512
[   15.112213] end_request: I/O error, dev mtdblock5, sector 176
[   15.112213] msm_nand_read_oob: unsupported ops->len, 512
[   15.112243] end_request: I/O error, dev mtdblock5, sector 184
[   15.112243] msm_nand_read_oob: unsupported ops->len, 512
[   15.112274] end_request: I/O error, dev mtdblock5, sector 192
[   15.112274] msm_nand_read_oob: unsupported ops->len, 512
[   15.112304] end_request: I/O error, dev mtdblock5, sector 200
[   15.112304] msm_nand_read_oob: unsupported ops->len, 512
[   15.112335] end_request: I/O error, dev mtdblock5, sector 208
[   15.112335] msm_nand_read_oob: unsupported ops->len, 512
[   15.112365] end_request: I/O error, dev mtdblock5, sector 216
[   15.112365] msm_nand_read_oob: unsupported ops->len, 512
[   15.112396] end_request: I/O error, dev mtdblock5, sector 224
[   15.112396] msm_nand_read_oob: unsupported ops->len, 512
[   15.112426] end_request: I/O error, dev mtdblock5, sector 232
[   15.112426] msm_nand_read_oob: unsupported ops->len, 512
[   15.112426] end_request: I/O error, dev mtdblock5, sector 240
[   15.112487] msm_nand_read_oob: unsupported ops->len, 512
[   15.112487] end_request: I/O error, dev mtdblock5, sector 248
[   15.112518] msm_nand_read_oob: unsupported ops->len, 512
[   15.112518] end_request: I/O error, dev mtdblock5, sector 0
[   16.861083] mmc0: Command timeout
[   16.877197] mmc0: queuing CIS tuple 0x91 length 3
[   16.877227] mmc0: new high speed SDIO card at address 0001
[   16.891784] DHD: dongle ram size is set to 294912(orig 294912)
[   18.248382] eth0 (): not using net_device_ops yet
[   18.251770] eth0: Broadcom Dongle Host Driver mac=00:23:76:b0:e4:74
[   18.581176] rmnet_open()
[   18.581329] SMD: ch 11 1 -> 2
[   18.626190] rmnet_open()
[   18.626281] SMD: ch 12 1 -> 2
[   18.670959] rmnet_open()
[   18.671081] SMD: ch 13 1 -> 2
[   27.485321] dummy0: no IPv6 routers present
[   28.765319] rmnet0: no IPv6 routers present
[   28.775299] rmnet2: no IPv6 routers present
[   29.085327] eth0: no IPv6 routers present
[   29.415344] rmnet1: no IPv6 routers present
[   30.035278] enabling adb function
[   30.035461] hsusb: ONLINE -> RESET
[   30.035461] hsusb: reset controller
[   30.075317] msm_hsusb_phy_reset: success
[   30.225280] ulpi: write 0x0c to 0x31
[   30.225280] ulpi: write 0x31 to 0x32
[   30.225280] ulpi: write 0x1d to 0x0d
[   30.225311] ulpi: write 0x1d to 0x10
[   30.225311] ept #0 out max:64 head:ffa02000 bit:0
[   30.225311] ept #1 out max:512 head:ffa02080 bit:1
[   30.225341] ept #2 out max:512 head:ffa02100 bit:2
[   30.225341] ept #3 out max:512 head:ffa02180 bit:3
[   30.225372] ept #0 in max:64 head:ffa02040 bit:16
[   30.225372] ept #1 in max:512 head:ffa020c0 bit:17
[   30.225372] ept #2 in max:512 head:ffa02140 bit:18
[   30.225402] ept #3 in max:512 head:ffa021c0 bit:19
[   30.225433] usb_ept_queue_xfer() tried to queue request while offline
[   30.226043] usb_ept_queue_xfer() tried to queue request while offline
[   30.226074] usb_mass_storage usb_mass_storage: error in submission: bulk-out --> -19
[   30.226104] usb_ept_queue_xfer() tried to queue request while offline
[   30.226104] usb: notify offline
[   30.226135] diag_configure() 0
[   30.226135] msm_hsusb: enable pullup
[   30.226165] hsusb: RESET -> ONLINE
[   30.227661] usb: reset
[   30.249572] lcdc_unblank: ()
[   30.249572] samsung_oled_panel_unblank: +()
[   30.545593] samsung_oled_panel_unblank: -()
[   31.369720] usb: portchange USB_SPEED_FULL
[   31.371612] usb: reset
[   31.467193] usb: portchange USB_SPEED_FULL
[   31.470367] usb: suspend
[   31.604187] usb: reset
[   31.606445] usb: portchange USB_SPEED_HIGH
[   32.092620] usb: reset
[   32.094879] usb: portchange USB_SPEED_HIGH
[   32.256317] diag_configure() 1
[   32.256317] ### notify_usb_connected(1) ###



ps auxwwwf
USER       PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND
root         2  0.0  0.0      0     0 ?        S<   01:32   0:00 [kthreadd]
root         3  0.0  0.0      0     0 ?        S<   01:32   0:00  \_ [ksoftirqd/0]
root         4  0.0  0.0      0     0 ?        S<   01:32   0:00  \_ [watchdog/0]
root         5  0.0  0.0      0     0 ?        S<   01:32   0:00  \_ [events/0]
root         6  0.0  0.0      0     0 ?        S<   01:32   0:00  \_ [khelper]
root         7  0.0  0.0      0     0 ?        S<   01:32   0:00  \_ [suspend]
root         8  0.0  0.0      0     0 ?        S<   01:32   0:00  \_ [kblockd/0]
root         9  0.0  0.0      0     0 ?        S<   01:32   0:00  \_ [kmmcd]
root        10  0.0  0.0      0     0 ?        S<   01:32   0:00  \_ [bluetooth]
root        11  0.0  0.0      0     0 ?        S<   01:32   0:00  \_ [qmi]
root        12  0.0  0.0      0     0 ?        D<   01:32   0:00  \_ [rpcrouter]
root        13  0.0  0.0      0     0 ?        S<   01:32   0:00  \_ [krpcserversd]
root        14  0.0  0.0      0     0 ?        S<   01:32   0:00  \_ [dock]
root        15  0.0  0.0      0     0 ?        S<   01:32   0:00  \_ [detection/0]
root        16  0.0  0.0      0     0 ?        S<   01:32   0:00  \_ [button/0]
root        17  0.0  0.0      0     0 ?        S    01:32   0:00  \_ [pdflush]
root        18  0.0  0.0      0     0 ?        S    01:32   0:00  \_ [pdflush]
root        19  0.0  0.0      0     0 ?        S<   01:32   0:00  \_ [kswapd0]
root        20  0.0  0.0      0     0 ?        S<   01:32   0:00  \_ [aio/0]
root        30  0.0  0.0      0     0 ?        S<   01:32   0:00  \_ [panel_on/0]
root        35  0.0  0.0      0     0 ?        S<   01:32   0:00  \_ [mtdblockd]
root        36  0.0  0.0      0     0 ?        S<   01:32   0:00  \_ [USB mass_storag]
root        37  0.0  0.0      0     0 ?        S<   01:32   0:00  \_ [synaptics_wq]
root        38  0.0  0.0      0     0 ?        S<   01:32   0:00  \_ [w1_bus_master1]
root        39  0.0  0.0      0     0 ?        S<   01:32   0:00  \_ [kstriped]
root        40  0.0  0.0      0     0 ?        S<   01:32   0:00  \_ [kondemand/0]
root        41  0.0  0.0      0     0 ?        S<   01:32   0:00  \_ [hid_compat]
root        44  0.0  0.0      0     0 ?        S<   01:32   0:00  \_ [krfcommd]
root        45  0.0  0.0      0     0 ?        S<   01:32   0:00  \_ [ds2784-battery.]
root        46  0.2  0.0      0     0 ?        S<   01:32   0:05  \_ [mmcqd]
root        47  0.0  0.0      0     0 ?        S<   01:32   0:00  \_ [kjournald]
root       215  0.0  0.0      0     0 ?        S    01:32   0:00  \_ [iscan_sysioc]
root       216  0.0  0.0      0     0 ?        S    01:32   0:00  \_ [dhcp_sysioc]
root       218  0.0  0.0      0     0 ?        S    01:32   0:00  \_ [dhd_watchdog]
root       219  0.0  0.0      0     0 ?        S    01:32   0:00  \_ [dhd_dpc]
root       220  0.0  0.0      0     0 ?        S    01:32   0:00  \_ [dhd_sysioc]
root         1  0.0  0.2   1760   616 ?        Ss   01:32   0:00 init [5] 
root        75  0.0  0.3   2052   664 ?        S
root       213  0.0  0.3   2048   704 ?        S<   01:32   0:00  \_ /sbin/udevd -d
root       217  0.0  0.3   2048   676 ?        S<   01:32   0:00  \_ /sbin/udevd -d
dbus       111  0.0  0.5   2652  1188 ?        Ss   01:32   0:00 dbus-daemon --system --fork
root       227  0.0  0.9   4264  2172 ?        Ss   01:32   0:01 /usr/sbin/connmand -W nl80211,wext
root       230  0.0  0.2   1840   624 ?        RNs  01:32   0:00 /sbin/syslogd -m 0
root       232  0.0  1.0   5336  2192 ?        S    01:32   0:00 /sbin/wpa_supplicant -u
root       234  0.0  0.2   1760   452 ?        SNs  01:32   0:00 /sbin/klogd -x
root       246  0.0  0.8   4484  1916 ?        Ss   01:32   0:00 /usr/sbin/ofonod
root       248  0.0  0.6   3840  1500 ?        Ss   01:32   0:00 /usr/sbin/bluetoothd
root       254  0.0  0.2   2856   632 ?        S    01:32   0:00 /bin/bash /etc/rc.d/rc.sysinit
root       311  0.0  0.0   3352   168 ?        Sl   01:32   0:00  \_ /sbin/adbd
root       477  0.0  0.7   2840  1568 pts/0    Ss   01:51   0:00      \_ /system/bin/sh -
root      1696  3.6  0.6   2740  1372 pts/0    S+   02:02   0:00          \_ /bin/bash /usr/bin/mcinfo
root      1844  0.0  0.4   2524   896 pts/0    R+   02:02   0:00              \_ ps auxwwwf
root       271  0.0  0.3   2740   828 ?        S    01:32   0:00 /bin/sh /etc/rc5.d/S50sensord start
root       272  0.0  0.5   2732  1212 ?        S    01:32   0:00  \_ /bin/bash -c ulimit -S -c 0 >/dev/null 2>&1 ; /usr/sbin/sensord
root       273  0.0  2.2  45832  4828 ?        Sl   01:32   0:00      \_ /usr/sbin/sensord
root       276  0.0  1.8   9388  4096 ?        S    01:32   0:00 /usr/bin/timed
root       283  0.0  0.4   5908  1076 ?        Ss   01:32   0:00 /usr/sbin/sshd
root       289  0.0  0.2   1748   508 tty1     Ss+  01:32   0:00 /sbin/mingetty --noclear tty1
meego      290  0.0  1.0   5264  2352 ?        Ss   01:32   0:00 uxlaunch
root       292  0.0  0.1   3588   320 ?        S    01:32   0:00  \_ uxlaunch
root       310  0.0  6.2  26560 13652 tty2     Ss+  01:32   0:01  \_ /usr/bin/Xorg :0 -nolisten tcp -dpi 120 -noreset -auth /var/run/uxlaunch/Xauth-meego-LrfuNe vt2
meego      396  0.3  9.8 110428 21492 ?        Sl   01:32   0:06  \_ /usr/bin/duihome -software &
meego      399  0.0  3.0  27272  6704 ?        SNl  01:32   0:01  \_ /usr/bin/msyncd
meego      400  0.0  2.1  18300  4756 ?        SN   01:32   0:00  \_ corewatcher-applet
meego      401  0.0  1.4  19976  3220 ?        SN   01:32   0:00  \_ /usr/libexec/tracker-miner-fs
meego      320  0.0  0.3   4812   680 ?        Ss   01:32   0:00 /usr/bin/ssh-agent
root       322  0.0  1.3  19736  2840 ?        Sl   01:32   0:00 /usr/sbin/console-kit-daemon --no-daemon
meego      390  0.0  0.4   2672   928 ?        Ss   01:32   0:00 dbus-daemon --fork --session --print-pid 9 --print-address 11
meego      393  0.0  0.8   7348  1764 ?        S    01:32   0:00 /usr/libexec/gconfd-2
root       415  0.0  1.2   6588  2628 ?        S    01:33   0:00 /usr/libexec/upowerd
meego      446  0.1  4.0  24628  8740 ?        Sl   01:34   0:01 /usr/libexec/tracker-store
meego      449  0.0  1.2  25592  2828 ?        Sl   01:34   0:00 /usr/libexec/tumblerd


fdisk -l
Disk /dev/mmcblk0: 4013 MB, 4013948928 bytes
124 heads, 62 sectors/track, 1019 cylinders
Units = cylinders of 7688 * 512 = 3936256 bytes
Disk identifier: 0x00029d6c

        Device Boot      Start         End      Blocks   Id  System
/dev/mmcblk0p1               1         131      503533    c  W95 FAT32 (LBA)
/dev/mmcblk0p2             132         959     3182832   83  Linux
/dev/mmcblk0p3             960        1019      230640   82  Linux swap / Solaris

lsmod
Module                  Size  Used by
bcm4329               167152  0

netstat -anp
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address               Foreign Address             State       PID/Program name  
tcp        0      0 127.0.0.1:5037              0.0.0.0:*                   LISTEN      311/adbd           
tcp        0      0 0.0.0.0:53                  0.0.0.0:*                   LISTEN      227/connmand       
tcp        0      0 0.0.0.0:22                  0.0.0.0:*                   LISTEN      283/sshd           
tcp        0      0 :::22                       :::*                        LISTEN      283/sshd           
udp        0      0 0.0.0.0:53                  0.0.0.0:*                               227/connmand       
Active UNIX domain sockets (servers and established)
Proto RefCnt Flags       Type       State         I-Node PID/Program name    Path
unix  2      [ ACC ]     STREAM     LISTENING     1578   320/ssh-agent       /tmp/ssh-oxcfTRs319/agent.319
unix  2      [ ACC ]     STREAM     LISTENING     1556   311/adbd            @jdwp-control
unix  2      [ ACC ]     STREAM     LISTENING     1676   390/dbus-daemon     @/tmp/dbus-lqH3W1UFxE
unix  2      [ ACC ]     STREAM     LISTENING     1080   248/bluetoothd      /var/run/sdp
unix  2      [ ACC ]     STREAM     LISTENING     1083   248/bluetoothd      @/org/bluez/audio
unix  2      [ ACC ]     STREAM     LISTENING     1549   310/Xorg            @/tmp/.X11-unix/X0
unix  2      [ ]         DGRAM                    334    75/udevd            @/org/kernel/udev/udevd
unix  2      [ ACC ]     STREAM     LISTENING     1450   273/sensord         /tmp/sensord.sock
unix  2      [ ACC ]     STREAM     LISTENING     429    111/dbus-daemon     /var/run/dbus/system_bus_socket
unix  2      [ ACC ]     STREAM     LISTENING     1550   310/Xorg            /tmp/.X11-unix/X0
unix  10     [ ]         DGRAM                    971    230/syslogd         /dev/log
unix  3      [ ]         STREAM     CONNECTED     1915   390/dbus-daemon     @/tmp/dbus-lqH3W1UFxE
unix  3      [ ]         STREAM     CONNECTED     1914   449/tumblerd       
unix  3      [ ]         STREAM     CONNECTED     1903   390/dbus-daemon     @/tmp/dbus-lqH3W1UFxE
unix  3      [ ]         STREAM     CONNECTED     1902   446/tracker-store  
unix  3      [ ]         STREAM     CONNECTED     1890   390/dbus-daemon     @/tmp/dbus-lqH3W1UFxE
unix  3      [ ]         STREAM     CONNECTED     1889   401/tracker-miner-f
unix  3      [ ]         STREAM     CONNECTED     1790   111/dbus-daemon     /var/run/dbus/system_bus_socket
unix  3      [ ]         STREAM     CONNECTED     1789   415/upowerd        
unix  3      [ ]         STREAM     CONNECTED     1785   111/dbus-daemon     /var/run/dbus/system_bus_socket
unix  3      [ ]         STREAM     CONNECTED     1784   415/upowerd        
unix  3      [ ]         STREAM     CONNECTED     1772   390/dbus-daemon     @/tmp/dbus-lqH3W1UFxE
unix  3      [ ]         STREAM     CONNECTED     1771   399/msyncd         
unix  3      [ ]         STREAM     CONNECTED     1750   111/dbus-daemon     /var/run/dbus/system_bus_socket
unix  3      [ ]         STREAM     CONNECTED     1749   396/duihome        
unix  3      [ ]         STREAM     CONNECTED     1746   390/dbus-daemon     @/tmp/dbus-lqH3W1UFxE
unix  3      [ ]         STREAM     CONNECTED     1745   396/duihome        
unix  3      [ ]         STREAM     CONNECTED     1738   111/dbus-daemon     /var/run/dbus/system_bus_socket
unix  3      [ ]         STREAM     CONNECTED     1737   399/msyncd         
unix  3      [ ]         STREAM     CONNECTED     1736   390/dbus-daemon     @/tmp/dbus-lqH3W1UFxE
unix  3      [ ]         STREAM     CONNECTED     1735   399/msyncd         
unix  3      [ ]         STREAM     CONNECTED     1733   390/dbus-daemon     @/tmp/dbus-lqH3W1UFxE
unix  3      [ ]         STREAM     CONNECTED     1732   396/duihome        
unix  3      [ ]         STREAM     CONNECTED     1731   390/dbus-daemon     @/tmp/dbus-lqH3W1UFxE
unix  3      [ ]         STREAM     CONNECTED     1730   400/corewatcher-app
unix  3      [ ]         STREAM     CONNECTED     1729   310/Xorg            @/tmp/.X11-unix/X0
unix  3      [ ]         STREAM     CONNECTED     1728   396/duihome        
unix  3      [ ]         STREAM     CONNECTED     1725   111/dbus-daemon     /var/run/dbus/system_bus_socket
unix  3      [ ]         STREAM     CONNECTED     1724   400/corewatcher-app
unix  3      [ ]         STREAM     CONNECTED     1722   310/Xorg            @/tmp/.X11-unix/X0
unix  3      [ ]         STREAM     CONNECTED     1721   400/corewatcher-app
unix  3      [ ]         STREAM     CONNECTED     1713   390/dbus-daemon     @/tmp/dbus-lqH3W1UFxE
unix  3      [ ]         STREAM     CONNECTED     1712   399/msyncd         
unix  2      [ ]         DGRAM                    1710   399/msyncd         
unix  3      [ ]         STREAM     CONNECTED     1691   390/dbus-daemon     @/tmp/dbus-lqH3W1UFxE
unix  3      [ ]         STREAM     CONNECTED     1690   393/gconfd-2       
unix  2      [ ]         DGRAM                    1689   393/gconfd-2       
unix  3      [ ]         STREAM     CONNECTED     1678   390/dbus-daemon    
unix  3      [ ]         STREAM     CONNECTED     1677   390/dbus-daemon    
unix  3      [ ]         STREAM     CONNECTED     1619   111/dbus-daemon     /var/run/dbus/system_bus_socket
unix  3      [ ]         STREAM     CONNECTED     1618   322/console-kit-dae
unix  3      [ ]         STREAM     CONNECTED     1594   111/dbus-daemon     /var/run/dbus/system_bus_socket
unix  3      [ ]         STREAM     CONNECTED     1593   322/console-kit-dae
unix  3      [ ]         STREAM     CONNECTED     1581   111/dbus-daemon     /var/run/dbus/system_bus_socket
unix  3      [ ]         STREAM     CONNECTED     1580   290/uxlaunch       
unix  3      [ ]         STREAM     CONNECTED     1566   311/adbd           
unix  3      [ ]         STREAM     CONNECTED     1565   311/adbd           
unix  3      [ ]         STREAM     CONNECTED     1560   111/dbus-daemon     /var/run/dbus/system_bus_socket
unix  3      [ ]         STREAM     CONNECTED     1559   276/timed          
unix  3      [ ]         STREAM     CONNECTED     1554   311/adbd           
unix  3      [ ]         STREAM     CONNECTED     1553   311/adbd           
unix  2      [ ]         DGRAM                    1526   290/uxlaunch       
unix  3      [ ]         STREAM     CONNECTED     1505   111/dbus-daemon     /var/run/dbus/system_bus_socket
unix  3      [ ]         STREAM     CONNECTED     1504   273/sensord        
unix  2      [ ]         DGRAM                    1460   276/timed          
unix  3      [ ]         STREAM     CONNECTED     1076   111/dbus-daemon     /var/run/dbus/system_bus_socket
unix  3      [ ]         STREAM     CONNECTED     1075   248/bluetoothd     
unix  2      [ ]         DGRAM                    1074   248/bluetoothd     
unix  3      [ ]         STREAM     CONNECTED     1067   111/dbus-daemon     /var/run/dbus/system_bus_socket
unix  3      [ ]         STREAM     CONNECTED     1066   246/ofonod         
unix  2      [ ]         DGRAM                    1065   246/ofonod         
unix  2      [ ]         DGRAM                    1001   234/klogd          
unix  2      [ ]         DGRAM                    992    227/connmand       
unix  3      [ ]         STREAM     CONNECTED     942    111/dbus-daemon     /var/run/dbus/system_bus_socket
unix  3      [ ]         STREAM     CONNECTED     937    232/wpa_supplicant 
unix  3      [ ]         STREAM     CONNECTED     914    111/dbus-daemon     /var/run/dbus/system_bus_socket
unix  3      [ ]         STREAM     CONNECTED     913    227/connmand       
unix  3      [ ]         STREAM     CONNECTED     432    111/dbus-daemon    
unix  3      [ ]         STREAM     CONNECTED     431    111/dbus-daemon    
unix  3      [ ]         DGRAM                    339    75/udevd           
unix  3      [ ]         DGRAM                    338    75/udevd           

ifconfig -a
dummy0    Link encap:Ethernet  HWaddr D6:65:36:E9:1E:68 
          inet6 addr: fe80::d465:36ff:fee9:1e68/64 Scope:Link
          UP BROADCAST RUNNING NOARP  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:8 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:0 (0.0 b)  TX bytes:3160 (3.0 KiB)

eth0      Link encap:Ethernet  HWaddr 00:23:76:B0:E4:74 
          inet6 addr: fe80::223:76ff:feb0:e474/64 Scope:Link
          UP BROADCAST MULTICAST  MTU:1500  Metric:1
          RX packets:12 errors:0 dropped:0 overruns:0 frame:0
          TX packets:6 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:696 (696.0 b)  TX bytes:492 (492.0 b)

ip6tnl0   Link encap:UNSPEC  HWaddr 00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00 
          NOARP  MTU:1460  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:0 (0.0 b)  TX bytes:0 (0.0 b)

lo        Link encap:Local Loopback 
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:16436  Metric:1
          RX packets:4 errors:0 dropped:0 overruns:0 frame:0
          TX packets:4 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:200 (200.0 b)  TX bytes:200 (200.0 b)

rmnet0    Link encap:Ethernet  HWaddr FE:6C:09:1E:0E:AF 
          inet6 addr: fe80::fc6c:9ff:fe1e:eaf/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:11 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:0 (0.0 b)  TX bytes:3418 (3.3 KiB)

rmnet1    Link encap:Ethernet  HWaddr D2:67:6D:C2:54:7B 
          inet6 addr: fe80::d067:6dff:fec2:547b/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:11 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:0 (0.0 b)  TX bytes:3418 (3.3 KiB)

rmnet2    Link encap:Ethernet  HWaddr CE:70:76:84:1E:DC 
          inet6 addr: fe80::cc70:76ff:fe84:1edc/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:11 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:0 (0.0 b)  TX bytes:3418 (3.3 KiB)

sit0      Link encap:IPv6-in-IPv4 
          NOARP  MTU:1480  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:0 (0.0 b)  TX bytes:0 (0.0 b)

/proc/cmdline
board_mahimahi.disable_uart3=0 board_mahimahi.usb_h2w_sw=0 board_mahimahi.disable_sdcard=0 diag.enabled=0 board_mahimahi.debug_uart=0 smisize=0  androidboot.baseband=4.06.00.12_7 androidboot.cid=GOOGL001 androidboot.carrier=GOOGLE androidboot.mid=PB9910000 androidboot.keycaps=qwerty androidboot.mode=normal androidboot.serialno=HT015P803993 androidboot.bootloader=0.33.0012 init=/sbin/init rootwait root=/dev/mmcblk0p2 rootfstype=ext3 rw

/proc/cpuinfo
Processor    : ARMv7 Processor rev 2 (v7l)
BogoMIPS    : 509.54
Features    : swp half thumb fastmult vfp edsp thumbee neon
CPU implementer    : 0x51
CPU architecture: 7
CPU variant    : 0x0
CPU part    : 0x00f
CPU revision    : 2

Hardware    : mahimahi
Revision    : 0081
Serial        : 0000000000000000

/proc/devices
Character devices:
  1 mem
  4 /dev/vc/0
  4 tty
  5 /dev/tty
  5 /dev/console
  5 /dev/ptmx
  7 vcs
 10 misc
 13 input
 29 fb
 81 video4linux
 90 mtd
108 ppp
128 ptm
136 pts
216 rfcomm
250 msm_camera
251 ttyHS
252 vdec
253 oncrpc
254 smd

Block devices:
259 blkext
  7 loop
 31 mtdblock
179 mmc
254 device-mapper

/proc/diskstats
  31       0 mtdblock0 27 54 648 0 0 0 0 0 0 0 0
  31       1 mtdblock1 27 54 648 0 0 0 0 0 0 0 0
  31       2 mtdblock2 27 54 648 0 0 0 0 0 0 0 0
  31       3 mtdblock3 27 54 648 60 0 0 0 0 0 60 60
  31       4 mtdblock4 27 54 648 0 0 0 0 0 0 0 0
  31       5 mtdblock5 27 54 648 0 0 0 0 0 0 0 0
 179       0 mmcblk0 3377 482 173140 28640 1433 4379 46496 1985690 0 153170 2014310
 179       1 mmcblk0p1 14 173 386 400 0 0 0 0 0 160 400
 179       2 mmcblk0p2 3344 247 172106 28170 1433 4379 46496 1985690 0 153110 2013840
 179       3 mmcblk0p3 10 31 328 30 0 0 0 0 0 30 30

/proc/interrupts
           CPU0
  0:         98         msm  smd_dev
  1:          0         msm  debug
  5:      21373         msm  smsm_dev
  7:      15778         msm  gp_timer
  8:          0         msm  dg_timer
 19:          3         msm  msm_mdp
 20:          0         msm  kgsl
 21:       8929         msm  msmdatamover
 22:          0         msm  smd_dsp
 24:        943         msm  msm-sdcc (cmd)
 25:        300         msm  msm-sdcc (pio)
 26:       9727         msm  msm-sdcc (cmd)
 27:          1         msm  msm-sdcc (pio)
 34:     127630         msm  msm_i2c
 58:      14545         msm  msm_hsusb
108:          1     msmgpio  gpio_event_axis
122:          0     msmgpio  microp_interrupt
124:          1     msmgpio  gpio_event_axis
125:          1     msmgpio  gpio_event_axis
127:          0     msmgpio  gpio_kp
128:          0     msmgpio  gpio_kp
129:          0     msmgpio  gpio_kp
173:          1     msmgpio  bt host_wake
177:          1     msmgpio  capella_cm3602
179:          2     msmgpio  synaptics-rmi-ts
181:          1     msmgpio  gpio_keys
226:          1     msmgpio  debug-wakeup
232:          1     msmgpio  gpio_event_axis
239:        137     msmgpio  bcmsdh_sdmmc
240:          0     msmgpio  akm8973
Err:          0

/proc/meminfo
MemTotal:         217720 kB
MemFree:           80744 kB
Buffers:            7376 kB
Cached:            83612 kB
SwapCached:            0 kB
Active:            64388 kB
Inactive:          59896 kB
Active(anon):      33436 kB
Inactive(anon):        0 kB
Active(file):      30952 kB
Inactive(file):    59896 kB
Unevictable:           0 kB
Mlocked:               0 kB
SwapTotal:             0 kB
SwapFree:              0 kB
Dirty:              2044 kB
Writeback:             0 kB
AnonPages:         33316 kB
Mapped:            27632 kB
Slab:               9300 kB
SReclaimable:       6000 kB
SUnreclaim:         3300 kB
PageTables:          912 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:      108860 kB
Committed_AS:     178684 kB
VmallocTotal:     688128 kB
VmallocUsed:       88748 kB
VmallocChunk:     565244 kB

/proc/mounts
rootfs / rootfs rw 0 0
/dev/root / ext3 rw,errors=continue,data=ordered 0 0
/proc /proc proc rw 0 0
/sys /sys sysfs rw 0 0
none /dev tmpfs rw,mode=755 0 0
none /dev/pts devpts rw,gid=5,mode=620 0 0
tmpfs /var/lock tmpfs rw,size=4096k 0 0
tmpfs /var/run tmpfs rw,size=4096k 0 0
tmpfs /dev/shm tmpfs rw 0 0
tmpfs /home/meego/.mozilla tmpfs rw,size=20480k 0 0
none /sys/kernel/debug debugfs rw 0 0

/proc/partitions
major minor  #blocks  name

  31        0        896 mtdblock0
  31        1       5120 mtdblock1
  31        2       2560 mtdblock2
  31        3     148480 mtdblock3
  31        4      97280 mtdblock4
  31        5     200960 mtdblock5
 179        0    3919872 mmcblk0
 179        1     503533 mmcblk0p1
 179        2    3182832 mmcblk0p2
 179        3     230640 mmcblk0p3

/var/log/Xorg.0.log
[    25.917]
X.Org X Server 1.9.0
Release Date: 2010-08-20
[    25.917] X Protocol Version 11, Revision 0
[    25.917] Build Operating System: Linux 2.6.31.14-0.1-desktop armv7l
[    25.917] Current Operating System: Linux localhost.localdomain 2.6.29-01118-ga971bfd #21 PREEMPT Sun Oct 31 10:08:45 JST 2010 armv7l
[    25.918] Kernel command line: board_mahimahi.disable_uart3=0 board_mahimahi.usb_h2w_sw=0 board_mahimahi.disable_sdcard=0 diag.enabled=0 board_mahimahi.debug_uart=0 smisize=0  androidboot.baseband=4.06.00.12_7 androidboot.cid=GOOGL001 androidboot.carrier=GOOGLE androidboot.mid=PB9910000 androidboot.keycaps=qwerty androidboot.mode=normal androidboot.serialno=HT015P803993 androidboot.bootloader=0.33.0012 init=/sbin/init rootwait root=/dev/mmcblk0p2 rootfstype=ext3 rw
[    25.918] Build Date: 01 October 2010  11:46:43AM
[    25.918] Build ID: xorg-x11-server 1.9.0-4.5
[    25.918] Current version of pixman: 0.18.2
[    25.918]     Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
[    25.918] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    25.919] (==) Log file: "/var/log/Xorg.0.log", Time: Sat Oct 30 01:32:57 2010
[    26.348] (==) Using config directory: "/etc/X11/xorg.conf.d"
[    26.349] (==) No Layout section.  Using the first Screen section.
[    26.349] (==) No screen section available. Using defaults.
[    26.349] (**) |-->Screen "Default Screen Section" (0)
[    26.349] (**) |   |-->Monitor ""
[    26.350] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
[    26.351] (==) Automatically adding devices
[    26.351] (==) Automatically enabling devices
[    26.351] (==) FontPath set to:
    catalogue:/etc/X11/fontpath.d,
    built-ins
[    26.351] (==) ModulePath set to "/usr/lib/xorg/modules"
[    26.351] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
[    26.351] (II) Loader magic: 0x19a8e4
[    26.351] (II) Module ABI versions:
[    26.351]     X.Org ANSI C Emulation: 0.4
[    26.351]     X.Org Video Driver: 8.0
[    26.351]     X.Org XInput driver : 11.0
[    26.351]     X.Org Server Extension : 4.0
[    26.352] (II) LoadModule: "extmod"
[    26.587] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
[    26.588] (II) Module extmod: vendor="X.Org Foundation"
[    26.588]     compiled for 1.9.0, module version = 1.0.0
[    26.588]     Module class: X.Org Server Extension
[    26.588]     ABI class: X.Org Server Extension, version 4.0
[    26.588] (II) Loading extension MIT-SCREEN-SAVER
[    26.588] (II) Loading extension XFree86-VidModeExtension
[    26.589] (II) Loading extension XFree86-DGA
[    26.589] (II) Loading extension DPMS
[    26.589] (II) Loading extension XVideo
[    26.589] (II) Loading extension XVideo-MotionCompensation
[    26.589] (II) Loading extension X-Resource
[    26.589] (II) LoadModule: "dbe"
[    26.591] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
[    26.592] (II) Module dbe: vendor="X.Org Foundation"
[    26.592]     compiled for 1.9.0, module version = 1.0.0
[    26.592]     Module class: X.Org Server Extension
[    26.592]     ABI class: X.Org Server Extension, version 4.0
[    26.593] (II) Loading extension DOUBLE-BUFFER
[    26.593] (II) LoadModule: "glx"
[    26.595] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    26.596] (II) Module glx: vendor="X.Org Foundation"
[    26.596]     compiled for 1.9.0, module version = 1.0.0
[    26.596]     ABI class: X.Org Server Extension, version 4.0
[    26.596] (==) AIGLX enabled
[    26.597] (II) Loading extension GLX
[    26.597] (II) LoadModule: "record"
[    26.599] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
[    26.600] (II) Module record: vendor="X.Org Foundation"
[    26.600]     compiled for 1.9.0, module version = 1.13.0
[    26.601]     Module class: X.Org Server Extension
[    26.601]     ABI class: X.Org Server Extension, version 4.0
[    26.601] (II) Loading extension RECORD
[    26.601] (II) LoadModule: "dri"
[    26.603] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
[    26.605] (II) Module dri: vendor="X.Org Foundation"
[    26.605]     compiled for 1.9.0, module version = 1.0.0
[    26.605]     ABI class: X.Org Server Extension, version 4.0
[    26.605] (II) Loading extension XFree86-DRI
[    26.605] (II) LoadModule: "dri2"
[    26.608] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
[    26.609] (II) Module dri2: vendor="X.Org Foundation"
[    26.609]     compiled for 1.9.0, module version = 1.2.0
[    26.609]     ABI class: X.Org Server Extension, version 4.0
[    26.609] (II) Loading extension DRI2
[    26.609] Primary device is not PCI
[    26.609] (==) Matched fbdev as autoconfigured driver 0
[    26.609] (==) Assigned the driver to the xf86ConfigLayout
[    26.609] (II) LoadModule: "fbdev"
[    26.614] (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so
[    26.615] (II) Module fbdev: vendor="X.Org Foundation"
[    26.615]     compiled for 1.9.0, module version = 0.4.1
[    26.615]     ABI class: X.Org Video Driver, version 8.0
[    26.615] (II) FBDEV: driver for framebuffer: fbdev
[    26.615] (++) using VT number 2

[    26.616] (WW) Falling back to old probe method for fbdev
[    26.616] (II) Loading sub module "fbdevhw"
[    26.616] (II) LoadModule: "fbdevhw"
[    26.618] (II) Loading /usr/lib/xorg/modules/libfbdevhw.so
[    26.641] (II) Module fbdevhw: vendor="X.Org Foundation"
[    26.641]     compiled for 1.9.0, module version = 0.0.2
[    26.641]     ABI class: X.Org Video Driver, version 8.0
[    26.642] (II) FBDEV(0): using default device
[    26.642] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
[    26.642] (II) FBDEV(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 16/16
[    26.642] (==) FBDEV(0): Depth 16, (==) framebuffer bpp 16
[    26.643] (==) FBDEV(0): RGB weight 565
[    26.643] (==) FBDEV(0): Default visual is TrueColor
[    26.647] (==) FBDEV(0): Using gamma correction (1.0, 1.0, 1.0)
[    26.648] (II) FBDEV(0): hardware: msmfb (video memory: 4500kB)
[    26.648] (II) FBDEV(0): checking modes against framebuffer device...
[    26.648] (II) FBDEV(0): checking modes against monitor...
[    26.648] (--) FBDEV(0): Virtual size is 480x800 (pitch 480)
[    26.648] (**) FBDEV(0):  Built-in mode "current"
[    26.648] (++) FBDEV(0): DPI set to (120, 120)
[    26.648] (II) Loading sub module "fb"
[    26.648] (II) LoadModule: "fb"
[    26.650] (II) Loading /usr/lib/xorg/modules/libfb.so
[    26.659] (II) Module fb: vendor="X.Org Foundation"
[    26.659]     compiled for 1.9.0, module version = 1.0.0
[    26.659]     ABI class: X.Org ANSI C Emulation, version 0.4
[    26.659] (**) FBDEV(0): using shadow framebuffer
[    26.660] (II) Loading sub module "shadow"
[    26.660] (II) LoadModule: "shadow"
[    26.663] (II) Loading /usr/lib/xorg/modules/libshadow.so
[    26.666] (II) Module shadow: vendor="X.Org Foundation"
[    26.667]     compiled for 1.9.0, module version = 1.1.0
[    26.667]     ABI class: X.Org ANSI C Emulation, version 0.4
[    26.667] (EE) FBDEV(0): FBIOBLANK: Invalid argument
[    27.016] (==) FBDEV(0): Backing store disabled
[    27.017] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.017] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.017] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.017] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.017] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.017] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.017] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.017] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.018] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.018] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.018] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.018] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.018] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.018] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.018] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.018] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.018] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.019] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.019] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.019] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.019] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.019] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.019] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.019] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.019] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.019] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.019] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.020] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.020] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.020] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.020] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.020] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.020] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.020] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.020] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.020] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.020] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.021] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.021] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.021] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.021] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.021] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.021] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.021] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.021] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.021] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.021] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.022] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.022] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.022] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.022] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.022] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.022] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.022] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.022] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.022] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.022] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.023] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.023] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.023] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.023] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.023] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.023] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.023] (EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
[    27.023] (==) FBDEV(0): DPMS enabled
[    27.026] (==) RandR enabled
[    27.026] (II) Initializing built-in extension Generic Event Extension
[    27.026] (II) Initializing built-in extension SHAPE
[    27.026] (II) Initializing built-in extension MIT-SHM
[    27.026] (II) Initializing built-in extension XInputExtension
[    27.026] (II) Initializing built-in extension XTEST
[    27.026] (II) Initializing built-in extension BIG-REQUESTS
[    27.026] (II) Initializing built-in extension SYNC
[    27.026] (II) Initializing built-in extension XKEYBOARD
[    27.026] (II) Initializing built-in extension XC-MISC
[    27.027] (II) Initializing built-in extension XFIXES
[    27.027] (II) Initializing built-in extension RENDER
[    27.027] (II) Initializing built-in extension RANDR
[    27.027] (II) Initializing built-in extension COMPOSITE
[    27.027] (II) Initializing built-in extension DAMAGE
[    27.088] (II) AIGLX: Screen 0 is not DRI2 capable
[    27.088] (II) AIGLX: Screen 0 is not DRI capable
[    27.183] (II) AIGLX: Loaded and initialized /usr/lib/dri/swrast_dri.so
[    27.183] (II) GLX: Initialized DRISWRAST GL provider for screen 0
[    27.277] (II) XKB: reuse xkmfile /var/cache/xkb/server-B20D7FC79C7F597315E3E501AEF10E0D866E8E92.xkm
[    27.405] (II) config/udev: Adding input device lightsensor-level (/dev/event0)
[    27.406] (**) lightsensor-level: Applying InputClass "default"
[    27.406] (II) LoadModule: "evdev"
[    27.408] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    27.412] (II) Module evdev: vendor="X.Org Foundation"
[    27.412]     compiled for 1.9.0, module version = 2.4.99
[    27.412]     Module class: X.Org XInput Driver
[    27.412]     ABI class: X.Org XInput driver, version 11.0
[    27.412] (**) lightsensor-level: always reports core events
[    27.413] (**) lightsensor-level: Device: "/dev/event0"
[    27.413] (--) lightsensor-level: Found absolute axes
[    27.413] (II) lightsensor-level: Configuring as mouse
[    27.413] (II) XINPUT: Adding extended input device "lightsensor-level" (type: MOUSE)
[    27.414] (II) lightsensor-level: initialized for absolute axes.
[    27.416] (II) config/udev: Adding input device h2w headset (/dev/event1)
[    27.416] (**) h2w headset: Applying InputClass "default"
[    27.416] (**) h2w headset: always reports core events
[    27.416] (**) h2w headset: Device: "/dev/event1"
[    27.417] (--) h2w headset: Found keys
[    27.417] (II) h2w headset: Configuring as keyboard
[    27.417] (II) XINPUT: Adding extended input device "h2w headset" (type: KEYBOARD)
[    27.417] (**) Option "xkb_rules" "evdev"
[    27.417] (**) Option "xkb_model" "evdev"
[    27.417] (**) Option "xkb_layout" "us"
[    27.438] (II) XKB: reuse xkmfile /var/cache/xkb/server-D378AD8F86E560F712A83EE36E4E5E92C595B9BD.xkm
[    27.445] (II) config/udev: Adding input device synaptics-rmi-touchscreen (/dev/event2)
[    27.445] (**) synaptics-rmi-touchscreen: Applying InputClass "default"
[    27.446] (**) synaptics-rmi-touchscreen: always reports core events
[    27.446] (**) synaptics-rmi-touchscreen: Device: "/dev/event2"
[    27.446] (--) synaptics-rmi-touchscreen: Found 3 mouse buttons
[    27.446] (--) synaptics-rmi-touchscreen: Found absolute axes
[    27.446] (--) synaptics-rmi-touchscreen: Found x and y absolute axes
[    27.446] (--) synaptics-rmi-touchscreen: Found absolute touchscreen
[    27.446] (II) synaptics-rmi-touchscreen: Configuring as touchscreen
[    27.446] (**) synaptics-rmi-touchscreen: YAxisMapping: buttons 4 and 5
[    27.447] (**) synaptics-rmi-touchscreen: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[    27.447] (II) XINPUT: Adding extended input device "synaptics-rmi-touchscreen" (type: TOUCHSCREEN)
[    27.447] (II) synaptics-rmi-touchscreen: initialized for absolute axes.
[    27.449] (II) config/udev: Adding input device mahimahi-keypad (/dev/event3)
[    27.449] (**) mahimahi-keypad: Applying InputClass "default"
[    27.450] (**) mahimahi-keypad: always reports core events
[    27.450] (**) mahimahi-keypad: Device: "/dev/event3"
[    27.450] (--) mahimahi-keypad: Found keys
[    27.450] (II) mahimahi-keypad: Configuring as keyboard
[    27.450] (II) XINPUT: Adding extended input device "mahimahi-keypad" (type: KEYBOARD)
[    27.450] (**) Option "xkb_rules" "evdev"
[    27.450] (**) Option "xkb_model" "evdev"
[    27.450] (**) Option "xkb_layout" "us"
[    27.453] (II) config/udev: Adding input device mahimahi-nav (/dev/event4)
[    27.453] (**) mahimahi-nav: Applying InputClass "default"
[    27.454] (**) mahimahi-nav: always reports core events
[    27.454] (**) mahimahi-nav: Device: "/dev/event4"
[    27.454] (--) mahimahi-nav: Found 1 mouse buttons
[    27.454] (--) mahimahi-nav: Found relative axes
[    27.454] (--) mahimahi-nav: Found x and y relative axes
[    27.454] (II) mahimahi-nav: Configuring as mouse
[    27.454] (**) mahimahi-nav: YAxisMapping: buttons 4 and 5
[    27.454] (**) mahimahi-nav: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[    27.454] (II) XINPUT: Adding extended input device "mahimahi-nav" (type: MOUSE)
[    27.455] (**) mahimahi-nav: (accel) keeping acceleration scheme 1
[    27.455] (**) mahimahi-nav: (accel) acceleration profile 0
[    27.455] (**) mahimahi-nav: (accel) acceleration factor: 2.000
[    27.455] (**) mahimahi-nav: (accel) acceleration threshold: 4
[    27.455] (II) mahimahi-nav: initialized for relative axes.
[    27.457] (II) config/udev: Adding input device proximity (/dev/event5)
[    27.458] (**) proximity: Applying InputClass "default"
[    27.458] (**) proximity: always reports core events
[    27.458] (**) proximity: Device: "/dev/event5"
[    27.458] (--) proximity: Found absolute axes
[    27.458] (II) proximity: Configuring as mouse
[    27.458] (II) XINPUT: Adding extended input device "proximity" (type: MOUSE)
[    27.458] (II) proximity: initialized for absolute axes.
[    27.460] (II) config/udev: Adding input device compass (/dev/event6)
[    27.461] (**) compass: Applying InputClass "default"
[    27.461] (**) compass: always reports core events
[    27.461] (**) compass: Device: "/dev/event6"
[    27.461] (--) compass: Found absolute axes
[    27.461] (--) compass: Found x and y absolute axes
[    27.461] (II) compass: Configuring as mouse
[    27.462] (II) XINPUT: Adding extended input device "compass" (type: MOUSE)
[    27.462] (II) compass: initialized for absolute axes.
[    27.593] (EE) FBDEV(0): FBIOBLANK: Invalid argument
[   627.616] (EE) FBDEV(0): FBIOBLANK: Invalid argument
[   627.617] (EE) FBDEV(0): FBIOBLANK: Invalid argument
[   627.618] (EE) FBDEV(0): FBIOBLANK: Invalid argument


Thank you.

Comments

  1. Is there a way to run it on SGS ? ;-)

    ReplyDelete
  2. Maybe It can work. SGS also has the Qualcomm Snapdragon. other QSD smartphone might be worked. Key point is if SGS can use the fastboot boot option. If it's not, we should flush MeeGo boot.img to flash memory.

    ReplyDelete
  3. Samsung Galaxy S does not use a Qualcomm Snapdragon cpu. SGS uses a hummingbird cpu, which they themselves (along with Intrinsity) made.

    ReplyDelete
  4. Oh, Sorry :-p If there are kernel source code, and device, I can analyze. I don't have it yet. So I don't know if MeeGo can work on SGS. Does anyone have any information?

    ReplyDelete
  5. I wonder if this will work on the hd2 that also uses fastboot...
    I'll try to port it

    ReplyDelete
  6. Please check the below result of fdisk -l. I used mmcblk0p2 as / partition. :) If you used mmcblk0p1(First partition), you need to specify root=/dev/mmcblk0p1

    ReplyDelete
  7. wow amazing i will give a try later , its any way to make a flash? so we can change between roms great guide tho
    Z

    ReplyDelete
  8. year. I'm preparing MeeGo bootable boot.img now. But MeeGo full rootfs is lager than mtdblock spaces. So I try to switch root to microSD from boot.img. Here is the boot sequence.

    1. Power ON
    2. Defualt boot. loading boot.img. loading kernel.
    3. Loading initrd. mounting the microSD.
    4. switch_root /sdcard /sbin/init
    5. Boot on MeeGo rootfs from microSD.

    ReplyDelete
  9. And what about Desire? It's the same phone if you look at it in this way. Just kernel bits chagned. It adds all the htc sense stuff and FM Radio. AND it can run N1 kernel without probs if you also make a ROM based on AOSP.

    ReplyDelete
  10. HI Mitsutaka ,

    Would you mind sharing your image. I am having problems setting up my build environment and would like to try this on my xperia x10

    ReplyDelete
  11. Hi !

    Congratulations for your hack !

    Do you think it's possible to port Meego on iPhone ? May be with the help of iDroid ?

    Thanks for your help :-)

    ReplyDelete
  12. Hi Dany0, Thank you for information.

    ReplyDelete
  13. Hi Brad,
    Okay. I'll upload the image for using easily soon.

    ReplyDelete
  14. Hi Guillaume,
    I think MeeGo might be worked on iPhone 3G. As you said, If we use iDroid technology, It will work. Also I'll trying to do later.

    ReplyDelete
  15. Thanks for your documentation!
    I just have problems building the root fs. Could you give me the mic2 command line you use?

    ReplyDelete
  16. Hi sonic,

    mic-image-creator -c meego-handset-armv7l-nexusone-1.1.ks -f raw --run-mode=0 --arch=armv7l

    ReplyDelete
  17. Thanks!
    But now there are some errors in your %post script, so the tar file isn't created:

    + sed -e 's/Exec=.*$/\0 -software/' -i /etc/xdg/autostart/meego-im-uiserver.desktop
    /bin/sed: can't read /etc/xdg/autostart/meego-im-uiserver.desktop: No such file or directory
    + for prog in '$swprogs'
    + sed -e 's/Exec=.*$/\0 -software/' -i /etc/xdg/autostart/meegotouch-systemui.desktop
    + sed 's!session=\/usr\/bin\/mcompositor!session=\/usr\/bin\/duihome -software \&!' -i /etc/sysconfig/uxlaunch
    + cat
    + chmod +x /sbin/bootchartd-long
    + mkdir -p /home/meego/.mozilla/
    + chown -R meego:meego /home/meego/.mozilla/
    + cat
    + '[' -n meego-handset-armv7l-nexusone-1.1-1.1.20110205.1734 ']'
    + echo 'BUILD: meego-handset-armv7l-nexusone-1.1-1.1.20110205.1734'
    ++ mount
    ++ awk '{ print $3 }'
    ++ sort -r
    ++ grep /var/tmp/imgcreate-4DZnts/install_root/
    /var/tmp/imgcreate-4DZnts/install_root/tmp/ks-script-Y9mcl5: line 9: awk: command not found
    grep: write error: Broken pipe
    ++ pwd
    + outdir=/
    + cd /var/tmp/imgcreate-4DZnts/install_root
    + tar czvf //meego-handset-armv7l-nexusone-1.1-1.1.20110205.1734-rootfs.tar.gz .
    /var/tmp/imgcreate-4DZnts/install_root/tmp/ks-script-Y9mcl5: line 11: tar: command not found

    ReplyDelete
  18. thanks a lot for your instructions!
    i do get it up and running, even with adb.
    runs horribly slow though, and i get neither a statusbar, nor a touch keyboard... too bad

    ReplyDelete
  19. I tar'ed the files by hand, but booting hang at the Nexus One coloured "X" logo. After enabling the serial console in the kernel (details:
    http://sven.killig.de/android/N1/serial
    ), this was the last output I got:

    Welcome to MeeGo
    [ OK ]
    /etc/rc.d/rc.sysinit: line 372: /proc/sys/kernel/sched_latency_ns: No such file or directory
    /etc/rc.d/rc.sysinit: line 373: /proc/sys/kernel/sched_wakeup_granularity_ns: No such file or directory
    INIT: Id "x" respawning too fast: disabled for 5 minutes
    /etc/rc.d/rc.sysinit: line 394: /sbin/adbd: No such file or directory
    INIT: Id "s0" respawning too fast: disabled for 5 minutes

    I understand the last one. In the ks:

    # open serial line console for embedded system
    echo "s0:235:respawn:/sbin/agetty -L 115200 ttyS2 vt100" >> /etc/inittab

    I changed ttyS2 to ttyMSM0 and was able to log in. After starting
    /usr/bin/xinit /usr/bin/startdui
    by hand, the UX came up :-)

    ReplyDelete
  20. serial console config is good information! thanks! so if you prepare the adbd command from android tree or android sdk, you can use adb to install to rootfs.

    ReplyDelete

Post a Comment

Popular posts from this blog

Tizen SDK is a copy of the Android SDK? / Tizen seems to be based on Samsung Linux Platform(SLP)

Goodbye 2016, Hello 2017