public inbox for linux-mtd@lists.infradead.org
 help / color / mirror / Atom feed
* jffs in flash?
@ 2001-03-26 16:35 Kári Davíðsson
  2001-03-27  8:16 ` Xavier DEBREUIL
  0 siblings, 1 reply; 5+ messages in thread
From: Kári Davíðsson @ 2001-03-26 16:35 UTC (permalink / raw)
  To: mtd

Hi,

I have one flash chip (4MB) that i want to use parts of as a disk, e.g.
with jffs or jffs2.
It seems to me that the jffs wants to use the whole chip under the fs.
Is this correct?
If not how can I tell jffs to start using the flash at some offset?

Thanks,

K.D.


To unsubscribe, send "unsubscribe mtd" to majordomo@infradead.org

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: jffs in flash?
  2001-03-26 16:35 Kári Davíðsson
@ 2001-03-27  8:16 ` Xavier DEBREUIL
  0 siblings, 0 replies; 5+ messages in thread
From: Xavier DEBREUIL @ 2001-03-27  8:16 UTC (permalink / raw)
  To: Kári Davíðsson; +Cc: mtd

correct me if I am wrong : in sa1100-flash.c, there are several examples where
a flash is divided into several partitions ;

for example : I have a 16Mbit flash and I have divided it into two partitions of
8Mbit each

static struct mtd_partition is_blue00_partitions[] = {
   { name : "boot partition",
    offset : 0,
    size : 0x00200000 },
   { name : "cramfs partition",
    offset : 0x00200000,
    size : 0x00200000 }
};



Kári Davíðsson wrote:
> 
> Hi,
> 
> I have one flash chip (4MB) that i want to use parts of as a disk, e.g.
> with jffs or jffs2.
> It seems to me that the jffs wants to use the whole chip under the fs.
> Is this correct?
> If not how can I tell jffs to start using the flash at some offset?
> 
> Thanks,
> 
> K.D.
> 
> To unsubscribe, send "unsubscribe mtd" to majordomo@infradead.org


To unsubscribe, send "unsubscribe mtd" to majordomo@infradead.org

^ permalink raw reply	[flat|nested] 5+ messages in thread

* RE: jffs in flash?
@ 2001-03-27  8:48 Kári Davíðsson
  2001-03-27 10:26 ` Florian Schirmer / TayTron
  0 siblings, 1 reply; 5+ messages in thread
From: Kári Davíðsson @ 2001-03-27  8:48 UTC (permalink / raw)
  To: mtd

Yes, I was pointed there yesterday, i.e. to the "map" drivers.
Wrote one and commited and now I am mounting my flash partitions all
over the place...... 8-)

Thanks,

K.D.
> -----Original Message-----
> From: Xavier DEBREUIL [mailto:xde@inventel.fr]
> Sent: 27. mars 2001 08:16
> To: Kári Davíðsson
> Cc: mtd@infradead.org
> Subject: Re: jffs in flash?
> 
> 
> correct me if I am wrong : in sa1100-flash.c, there are 
> several examples where
> a flash is divided into several partitions ;
> 
> for example : I have a 16Mbit flash and I have divided it 
> into two partitions of
> 8Mbit each
> 
> static struct mtd_partition is_blue00_partitions[] = {
>    { name : "boot partition",
>     offset : 0,
>     size : 0x00200000 },
>    { name : "cramfs partition",
>     offset : 0x00200000,
>     size : 0x00200000 }
> };
> 
> 
> 
> Kári Davíðsson wrote:
> > 
> > Hi,
> > 
> > I have one flash chip (4MB) that i want to use parts of as 
> a disk, e.g.
> > with jffs or jffs2.
> > It seems to me that the jffs wants to use the whole chip 
> under the fs.
> > Is this correct?
> > If not how can I tell jffs to start using the flash at some offset?
> > 
> > Thanks,
> > 
> > K.D.
> > 
> > To unsubscribe, send "unsubscribe mtd" to majordomo@infradead.org
> 


To unsubscribe, send "unsubscribe mtd" to majordomo@infradead.org

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: jffs in flash?
  2001-03-27 10:26 ` Florian Schirmer / TayTron
@ 2001-03-27 10:00   ` David Woodhouse
  0 siblings, 0 replies; 5+ messages in thread
From: David Woodhouse @ 2001-03-27 10:00 UTC (permalink / raw)
  To: Florian Schirmer / TayTron; +Cc: Kári Davíðsson, mtd


schirmer@taytron.net said:
>  Sorry i forgot to CC the mail to the list 8-) Some should change the
> list processor to make "reply to list" instead to the author the
> default. Its very helpfull for all the other people out there. 

No. Read http://www.unicom.com/pw/reply-to-harmful.html

--
dwmw2




To unsubscribe, send "unsubscribe mtd" to majordomo@infradead.org

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: jffs in flash?
  2001-03-27  8:48 jffs in flash? Kári Davíðsson
@ 2001-03-27 10:26 ` Florian Schirmer / TayTron
  2001-03-27 10:00   ` David Woodhouse
  0 siblings, 1 reply; 5+ messages in thread
From: Florian Schirmer / TayTron @ 2001-03-27 10:26 UTC (permalink / raw)
  To: Kári Davíðsson, mtd

Hi!


> Yes, I was pointed there yesterday, i.e. to the "map" drivers.
> Wrote one and commited and now I am mounting my flash partitions all
> over the place...... 8-)

Sorry i forgot to CC the mail to the list 8-) Some should change the list
processor to make "reply to list" instead to the author the default. Its
very helpfull for all the other people out there.

Thanks
   Florian Schirmer



To unsubscribe, send "unsubscribe mtd" to majordomo@infradead.org

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2001-03-27 10:00 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-03-27  8:48 jffs in flash? Kári Davíðsson
2001-03-27 10:26 ` Florian Schirmer / TayTron
2001-03-27 10:00   ` David Woodhouse
  -- strict thread matches above, loose matches on Subject: below --
2001-03-26 16:35 Kári Davíðsson
2001-03-27  8:16 ` Xavier DEBREUIL

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox