Re: [android-kernel] Re: Customized kernel can not run on emulator

2012-08-27 Thread Ron M
<> Please see an 3.4+ kernel on goldfish - tested on X86 + JB on https://github.com/ronubo/kernel-android-3.4-common-goldfish/tree/android-3.4-goldfish It is essentially a porting of the goldfish drivers from 2.6.29 to the AOSP's common.git android-3.4 branch Works well, could change yaffs2 to

Re: [android-kernel] Building Kernel >= 3.2 for Device or Emulator

2012-08-27 Thread Ron M
Please see an 3.4+ kernel on goldfish - tested on X86 + JB on https://github.com/ronubo/kernel-android-3.4-common-goldfish/tree/android-3.4-goldfish It is essentially a porting of the goldfish drivers from 2.6.29 to the AOSP's common.git android-3.4 branch works well, could change yaffs2 to ext4

Re: [android-kernel] Re: Android ICS kernel scheduler algorithm

2012-08-27 Thread Kees Jongenburger
Hi, do keep in mind that more mechanisms are used like normal process priorities,"real" time priorities for audio and cgroups to separate foreground and background tasks so it is all not that simple. You might want to check/fix https://github.com/keesj/gomo/wiki/AndroidScheduling Greetings On M

Re: [android-kernel] Re: Android ICS kernel scheduler algorithm

2012-08-27 Thread Glenn Kasten
Yes, ordinary Android app threads use CFS. To be pedantic: SCHED_NORMAL/SCHED_OTHER is the scheduler policy name in the API sched_setscheduler(2), and CFS is the name of the kernel implementation. On Friday, August 24, 2012 4:10:15 AM UTC-7, Jack Harvard wrote: > > But what's the default one,