* How to partition NAND flash
@ 2006-03-02 11:22 Terence Soh
0 siblings, 0 replies; only message in thread
From: Terence Soh @ 2006-03-02 11:22 UTC (permalink / raw)
To: linux-mtd
Hi,
I'm trying to get a 64 MByte nand flash to be partitioned in a 32MB
cramfs and 32MB jffs2 partition.
I tried to do this in the kernel by
static struct mtd_partition partition_info[] = {
[0] = {
.name = "CRAM",
.offset = 0,
.size = 32 * 1024 * 1024,
.mask_flags = MTD_WRITEABLE, /* force read-only */
},
[1] = {
.name = "JFFS2",
.offset = 32 * 1024 * 1024,
.size = MTDPART_SIZ_FULL,
}
};
but when I cat/proc/mtd, I get
/ # cat /proc/mtd
dev: size erasesize name
mtd0: 04000000 00004000 "rootfs"
so I realise that this is affected by the bootargs passed which is
"console=ttyS0 mtdparts=a9m9750:0x4000000@0(rootfs) root=mtdblock/0
rootfstype=jffs2"
How should I passed the bootargs?
Thanks in advance,
Terence.
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2006-03-02 12:00 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-03-02 11:22 How to partition NAND flash Terence Soh
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.