2012-01-12

今天开始学习安卓内核!开发硬件:beagleboard-xm
在跑ICS pre-build image的时候遇到如下问题:
Failed to execute /init. Attempting defaults... Kernel panic - not syncing: No init found.
解决方法如下:

$ sudo chmod -R 777 <filesystem path>

here <filesystme path> is the android 4 filesystem on your SD card, you need plug in your SD card in your Ubuntu host, then find the rootfs partition of SD card, for example

$ sudo chmod -R 777 /media/rootfs

finally, you can verify it.

$ ll /media/rootfs

drwxrwxrwx 9 root root 4096 2011-11-24 15:04 rootfs/

资源网站:http://code.google.com/p/rowboat/wiki/ICSonBeagleboard

你可能感兴趣的:(2012-01-12)