Zygote be in loop in Android emulator that run with custm kernel -


i want run compiled android kernel emulator emulator doesn't work correctly , show black page on phone screen. use these commands downloading , compiling android kernel:

git clone https://android.googlesource.com/kernel/goldfish/ -b android goldfish-3.18 git clone https://android.googlesource.com/platform/prebuilts/gcc/linux-x86/x86/x86_64-linux-android-4.9 cd goldfish export cross_compile=x86_64-linux-android- export arch=x86_64 export path=$path:/path/to/x86_64-linux-android-4.9/bin make x86_64_ranchu_defconfig make menuconfig  # enable overlayfs , namespaces support here make -j8 

after use emulator of sdk run kernel these command: (i use android 7.0 x86_64 google api level 24 nexus_5x_api_23)

./emulator -avd nexus_5_api_24 -kernel ~/desktop/goldfish/arch/x86/boot/bzimage -show-kernel 

but after these text coming on terminal (come , again come) , screen of mobile showing boot animation.

[  270.896420] init: service 'audioserver' being killed... [  270.897184] init: service 'cameraserver' being killed... [  270.897986] init: service 'media' being killed... [  270.898725] init: service 'netd' being killed... [  270.899573] init: service 'audioserver' (pid 6354) killed signal 9 [  270.900441] init: service 'audioserver' (pid 6354) killing children in process group [  270.901661] init: service 'cameraserver' (pid 6355) killed signal 9 [  270.902456] init: service 'cameraserver' (pid 6355) killing children in process group [  270.903456] init: service 'media' (pid 6356) killed signal 9 [  270.904071] init: service 'media' (pid 6356) killing children in process group [  270.904909] init: service 'netd' (pid 6357) killed signal 9 [  270.905518] init: service 'netd' (pid 6357) killing children in process group [  270.915485] init: service 'zygote_secondary' (pid 6587) killed signal 11 [  270.916367] init: service 'zygote_secondary' (pid 6587) killing children in process group [  271.918795] init: starting service 'audioserver'... [  271.919822] init: starting service 'cameraserver'... [  271.920826] type=1400 audit(1501255007.918:530): avc: denied { getattr } pid=6598 comm="audioserver" path="/vendor" dev="rootfs" ino=6328 scontext=u:r:audioserver:s0 tcontext=u:object_r:rootfs:s0 tclass=lnk_file permissive=0 [  271.920848] init: couldn't write 6599 /dev/cpuset/camera-daemon/tasks: no such file or directory [  271.920871] init: starting service 'media'... [  271.921227] init: starting service 'netd'... [  271.927633] type=1400 audit(1501255007.918:531): avc: denied { getattr } pid=6599 comm="cameraserver" path="/vendor" dev="rootfs" ino=6328 scontext=u:r:cameraserver:s0 tcontext=u:object_r:rootfs:s0 tclass=lnk_file permissive=0 [  272.523185] type=1400 audit(1501255008.518:532): avc: denied { module_request } pid=6601 comm="netd" kmod="netdev-dummy0" scontext=u:r:netd:s0 tcontext=u:r:kernel:s0 tclass=system permissive=0 [  272.524725] type=1400 audit(1501255008.518:533): avc: denied { module_request } pid=6601 comm="netd" kmod="net-pf-16-proto-5" scontext=u:r:netd:s0 tcontext=u:r:kernel:s0 tclass=system permissive=0 [  275.926349] init: starting service 'ipv6proxy'... [  275.927882] init: starting service 'emu_hostapd'... [  275.929091] init: starting service 'zygote'... [  275.930412] init: starting service 'zygote_secondary'... 

the logcat here: link

can help?


Comments

Popular posts from this blog

javascript - Create a stacked percentage column -

Optimising Firebase database by automatically overwriting data -

javascript - Angular UI-Grid customTemplate directive causing rows to load slowly/? -