public inbox for linux-mtd@lists.infradead.org
 help / color / mirror / Atom feed
* reverse mkfs.jffs2
@ 2003-05-06 12:12 Eric DEJONC
  2003-05-06 12:24 ` Jörn Engel
  2003-05-06 12:49 ` David Woodhouse
  0 siblings, 2 replies; 6+ messages in thread
From: Eric DEJONC @ 2003-05-06 12:12 UTC (permalink / raw)
  To: linux-mtd

Hi all,
I was wondering if someone had already done a prog that reverse
mkfs.jffs2?

I'd like to open a jffs2 ramdisk made by someone else, but I don't have
enough space on my flash disk. So I would like to open it, but from the
host machine that doesn't handle  jffs2.

Best regards
Eric

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

* Re: reverse mkfs.jffs2
  2003-05-06 12:12 reverse mkfs.jffs2 Eric DEJONC
@ 2003-05-06 12:24 ` Jörn Engel
  2003-05-06 12:28   ` Eric DEJONC
  2003-05-06 12:49 ` David Woodhouse
  1 sibling, 1 reply; 6+ messages in thread
From: Jörn Engel @ 2003-05-06 12:24 UTC (permalink / raw)
  To: Eric DEJONC; +Cc: linux-mtd

On Tue, 6 May 2003 14:12:28 +0200, Eric DEJONC wrote:
> 
> I was wondering if someone had already done a prog that reverse
> mkfs.jffs2?
> 
> I'd like to open a jffs2 ramdisk made by someone else, but I don't have
> enough space on my flash disk. So I would like to open it, but from the
> host machine that doesn't handle  jffs2.

Use one of mtdram or mtdblock and use that. You can make a block
device from your image with loopback. Should be enough, I guess.

Jörn

-- 
Good warriors cause others to come to them and do not go to others.
-- Sun Tzu

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

* Re: reverse mkfs.jffs2
  2003-05-06 12:24 ` Jörn Engel
@ 2003-05-06 12:28   ` Eric DEJONC
  2003-05-06 15:26     ` Russ Dill
  0 siblings, 1 reply; 6+ messages in thread
From: Eric DEJONC @ 2003-05-06 12:28 UTC (permalink / raw)
  To: Jörn Engel; +Cc: linux-mtd

Well, thank you, I did not think to loopback, thats a great idea. I'm gonna
test. the only little problem is  that the 10M jffs2 file should take a long
time to be sent on the board via a serial port (the only one I can use).

Berst regards,
Eric

Jörn Engel a écrit :

> On Tue, 6 May 2003 14:12:28 +0200, Eric DEJONC wrote:
> >
> > I was wondering if someone had already done a prog that reverse
> > mkfs.jffs2?
> >
> > I'd like to open a jffs2 ramdisk made by someone else, but I don't have
> > enough space on my flash disk. So I would like to open it, but from the
> > host machine that doesn't handle  jffs2.
>
> Use one of mtdram or mtdblock and use that. You can make a block
> device from your image with loopback. Should be enough, I guess.
>
> Jörn
>
> --
> Good warriors cause others to come to them and do not go to others.
> -- Sun Tzu

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

* Re: reverse mkfs.jffs2
  2003-05-06 12:12 reverse mkfs.jffs2 Eric DEJONC
  2003-05-06 12:24 ` Jörn Engel
@ 2003-05-06 12:49 ` David Woodhouse
  2003-05-06 14:44   ` Eric DEJONC
  1 sibling, 1 reply; 6+ messages in thread
From: David Woodhouse @ 2003-05-06 12:49 UTC (permalink / raw)
  To: Eric DEJONC; +Cc: linux-mtd

On Tue, 2003-05-06 at 13:12, Eric DEJONC wrote:
> Hi all,
> I was wondering if someone had already done a prog that reverse
> mkfs.jffs2?

jffs2reader does this, partially.

-- 
dwmw2

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

* Re: reverse mkfs.jffs2
  2003-05-06 12:49 ` David Woodhouse
@ 2003-05-06 14:44   ` Eric DEJONC
  0 siblings, 0 replies; 6+ messages in thread
From: Eric DEJONC @ 2003-05-06 14:44 UTC (permalink / raw)
  To: David Woodhouse; +Cc: linux-mtd

Well thanks,  I hadn't seen this util, but I'm not lucky, this is the
only one I couldn't compile.
I'm gonna try to compile it.

thanks again

Best regards,
Eric

David Woodhouse a écrit :

> On Tue, 2003-05-06 at 13:12, Eric DEJONC wrote:
> > Hi all,
> > I was wondering if someone had already done a prog that reverse
> > mkfs.jffs2?
>
> jffs2reader does this, partially.
>
> --
> dwmw2
>
> ______________________________________________________
> Linux MTD discussion mailing list
> http://lists.infradead.org/mailman/listinfo/linux-mtd/

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

* Re: reverse mkfs.jffs2
  2003-05-06 12:28   ` Eric DEJONC
@ 2003-05-06 15:26     ` Russ Dill
  0 siblings, 0 replies; 6+ messages in thread
From: Russ Dill @ 2003-05-06 15:26 UTC (permalink / raw)
  To: Eric DEJONC; +Cc: linux-mtd, Jörn Engel

On Tue, 2003-05-06 at 05:28, Eric DEJONC wrote:
> Well, thank you, I did not think to loopback, thats a great idea. I'm gonna
> test. the only little problem is  that the 10M jffs2 file should take a long
> time to be sent on the board via a serial port (the only one I can use).
> 

I don't think you caught on to what mtdram is. mtdram lets you create an
mtdblock device on you *HOST* system. you don't need to send it to your
board via serial.

> > > I was wondering if someone had already done a prog that reverse
> > > mkfs.jffs2?
> > >
> > > I'd like to open a jffs2 ramdisk made by someone else, but I don't have
> > > enough space on my flash disk. So I would like to open it, but from the
> > > host machine that doesn't handle  jffs2.
> >
> > Use one of mtdram or mtdblock and use that. You can make a block
> > device from your image with loopback. Should be enough, I guess.
> >
-- 
Russ Dill <Russ.Dill@asu.edu>

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

end of thread, other threads:[~2003-05-06 15:26 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-05-06 12:12 reverse mkfs.jffs2 Eric DEJONC
2003-05-06 12:24 ` Jörn Engel
2003-05-06 12:28   ` Eric DEJONC
2003-05-06 15:26     ` Russ Dill
2003-05-06 12:49 ` David Woodhouse
2003-05-06 14:44   ` Eric DEJONC

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