Kernel goldfish 2.6.29 FAQ X86 - idiotccj/AndroidX86 GitHub Wiki

Error

https://code.google.com/p/android-kernel-analysis/wiki/KernelBuildErrors

kernel/cpuset.c: In function 'cpuset_can_attach':
kernel/cpuset.c:1386: error: 'task' undeclared (first use in this function)
kernel/cpuset.c:1386: error: (Each undeclared identifier is reported only once
kernel/cpuset.c:1386: error: for each function it appears in.)
make[1]: *** [kernel/cpuset.o] Error 1

Solution:

in kernel/cpuset.c:1386 change

if ((current != task) && (!capable(CAP_SYS_ADMIN))) {

to

if ((current != tsk) && (!capable(CAP_SYS_ADMIN))) {