This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Livin Sunny said:[ 0.000000] Kernel command line: console=ttyO0,115200n8 androidboot.console=ttyO0 mem=256M root=/dev/mmcblk0p2 rw rootfstype=ext3 rootdelay=1 initM
Please check your SD card. We are now using the ext4 format for rootfs partition.
Hi Livin,
Proceed Following step
1 In Android kernel/drivers/mmc/host/omap_hsmmc.c
2 Comment that following function (Line 1703)
static int omap_hsmmc_get_ro(struct mmc_host *mmc)
{
// struct omap_hsmmc_host *host = mmc_priv(mmc);
// if (!mmc_slot(host).get_ro)
// return -ENOSYS;
// return mmc_slot(host).get_ro(host->dev, 0);
return 0;
}
3 Rebuilt the Kernel ,Kernel Panic will gone...
Thanks
BhagavathRam