Re: [android-porting] Re: Can Android be ported to Samsung Corby Pro?

2011-03-30 Thread Gopalakrishnan A.N
Hi, Shall we port Android to this Corby pro? Can it be done... -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

Re: [android-porting] cant port android into ema-3530 stalker board

2011-03-30 Thread bumble omap
some body please come to rescue me,, On 28 March 2011 14:36, omap geek wrote: > Hi guys, > i used the MLO, uboot uimage and ubifs binaries given by my vendor and > tried to boot android on ema3530 stalker board, > i loaded the images into nand, and redirected the booting from nand.. > > followin

[android-porting] How does the reboot into recovery mode work?

2011-03-30 Thread Bjarke F.
Hi, When I perform a "adb reboot recovery" my device restarts, and the bootloader then starts the kernel with the root option set to the special recovery root file system. How does the running linux system tell the boot loader to do this after the reboot? -- unsubscribe: android-porting+unsubsc

[android-porting] integration with audiofx framefork

2011-03-30 Thread Shaul Yermol
Hi, I am trying to integrate some proprietary sound processing capabilities (bass, equalizers, sound enhancement) to android-powered mobile devices. At this moment I search for a possibility to integrate my sound processing to media applications without changing the system libraries (i.e. without i

Re: [android-porting] How does the reboot into recovery mode work?

2011-03-30 Thread Chinmay S
Hi Bjarke, When the kernel reboots into recovery-mode, its a warm-reset. (NOT a cold-reset where contents of ALL registers are lost.) Before warm-reboot, the kernel sets a particular register to a specify value (the value in this register is retained even after a warm-reset.) The bootloader just

[android-porting] CTS and frameword modifications

2011-03-30 Thread Adrien Moa
Hi all, I'm porting Android to a particular board and I have some questions. First, Can we implements just 50 % of a fonctionality. For exemple, in the framework there is a Class that contain a method public String myFunction(){ //frameword Code}. Can I change it for public static String myFunc

Re: [android-porting] How does the reboot into recovery mode work?

2011-03-30 Thread Bjarke Freund-Hansen
Hi CVS Thanks a lot for your explanation. Do you have any pointer for where in the source I should look for this functionality? Specifically I have been looking at the source for adb which seems to call the __reboot syscall with "recovery" as a parameter. But nowhere in the Android Linux kernel c

Re: [android-porting] How does the reboot into recovery mode work?

2011-03-30 Thread Shachar Shemesh
On 30/03/11 17:58, Bjarke Freund-Hansen wrote: Hi CVS Thanks a lot for your explanation. Do you have any pointer for where in the source I should look for this functionality? Specifically I have been looking at the source for adb which seems to call the __reboot syscall with "recovery" as a par

[android-porting] Re: How does the reboot into recovery mode work?

2011-03-30 Thread Bjarke F.
Hi. Thanks for the link. This describes pretty much what I already have discovered myself. What I am interested in in is the exact method used for passing on a command to the bootloader. Where in the kernel source is the functionality and where in the bootloader source is it picked up? I would r