I want to porting Android on my pxa300 target board
and I patched android-2.6.23.m5-rc14 to my 2.6.21-kernel
(patch file is "diff" from 2.6.23 to 2.6.23.m5-rc14)
Then I modified it to "make" available,
and put the system, data on my SD-Card.
After booting, execute these command below:
================================================
#!/system/bin/sh -x
export PATH=/sbin:/system/sbin:/system/bin:$PATH
export LD_LIBRARY_PATH=/system/lib
export ANDROID_ROOT=/system
export ANDROID_ASSETS=/system/app
export ANDROID_DATA=/data
export EXTERNAL_STORAGE=/sdcard
export DRM_CONTENT=/data/drm/content
rm /tmp/*
/system/bin/app_process -Xzygote /system/bin --zygote &
/system/bin/dbus-daemon --system &
/system/bin/strace -F -ff -tt -s 200 runtime
/system/bin/sh
=================================================
And some problems happened~ like add service failed...
1.
writev(4, [{"\4", 1}, {"ServiceManager\0", 15}, {"ServiceManager:
addService(activity.services, 0x150d0)\n\0", 56}], 3)<unfinished>
writev(4, [{"\4", 1}, {"ServiceManager\0", 15}, {"ServiceManager:
addService(phone, 0x155b8)\n\0", 44}], 3 <unfinished>
.
.
.
some service add successful, but the others not!
and after service adding duration, my terminal is never received any
message~
2. when the red eye visible, it moves very fast, that seems it has
some problems?
thanks
--~--~---------~--~----~------------~-------~--~----~
unsubscribe: [email protected]
website: http://groups.google.com/group/android-porting
-~----------~----~----~----~------~----~------~--~---