Hi Fabio,
Thank you so much for your help ..Yes partition table was missing for IMX25 board .
i have added following mtd partition data in mx25 board file :
static struct mtd_partition mxc_nand_partitions[] = {
{
.name = "nand.bootloader",
.offset = 0,
.size = 3 * 1024 * 1024},
{
.name = "nand.kernel",
.offset = MTDPART_OFS_APPEND,
.size = 5 * 1024 * 1024},
{
.name = "nand.rootfs",
.offset = MTDPART_OFS_APPEND,
.size = 256 * 1024 * 1024},
{
.name = "nand.configure",
.offset = MTDPART_OFS_APPEND,
.size = 8 * 1024 * 1024},
{
.name = "nand.userfs",
.offset = MTDPART_OFS_APPEND,
.size = MTDPART_SIZ_FULL},
};
now i can see the paritions message and it is motunting but still i am facing some write issue with file system .
same file system i am using with 2.6.31 kernel on my board and it works fine. But same is not working with 3.4.9 kernel.
even tho i am using the same command to building the file system
mkfs.jffs2 -r rootfs -e 0x20000 -s 0x800 -n -o rootfs.jffs2
Please find the log attached for your reference .
Please advise if you have any pointers.
Thanks in Advance.
Regards,
Priti