mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* accessing CD fs from initrd
@ 2005-07-25  7:27 zvi Dubitzki
  2005-07-25 10:23 ` Glennie Vignarajah
  2005-07-25 15:25 ` Roger Heflin
  0 siblings, 2 replies; 4+ messages in thread
From: zvi Dubitzki @ 2005-07-25  7:27 UTC (permalink / raw)
  To: linux-kernel

Hi there

I want to be CC-ed on a possible answer to the following question.
I have not found yet an answer to the question in the Linux archives.

In need access the CD filesystem (iso9660) from within the Linux initrd or 
right after that (make it root fs).
I need an example for that since allocating enough ramdisk space 
(ramdisk_size=90k in kernel command line)  + loading the cdrom.o
module at the initrd did not help  mount the CD device (/dev/cdrom)  at the 
initrd
Also I need know how to pivot between the initrd and the CD filesystem

I am actually using Isolinux/syslinux, but can make test on a regular Linux 
.
Any pointer to a literature will also be welcomed .

thanks

Zvi Dubitzki

_________________________________________________________________
FREE pop-up blocking with the new MSN Toolbar - get it now! 
http://toolbar.msn.click-url.com/go/onm00200415ave/direct/01/


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

* Re: accessing CD fs from initrd
  2005-07-25  7:27 accessing CD fs from initrd zvi Dubitzki
@ 2005-07-25 10:23 ` Glennie Vignarajah
  2005-07-25 10:47   ` Jan Engelhardt
  2005-07-25 15:25 ` Roger Heflin
  1 sibling, 1 reply; 4+ messages in thread
From: Glennie Vignarajah @ 2005-07-25 10:23 UTC (permalink / raw)
  To: linux-kernel

Le Monday 25 July 2005 09:27, zvi Dubitzki("zvi Dubitzki" 
<zvidubitzki@hotmail.com>) disait:

Hello,

> In need access the CD filesystem (iso9660) from within the Linux
> initrd or right after that (make it root fs).
> I need an example for that since allocating enough ramdisk space
> (ramdisk_size=90k in kernel command line)  + loading the cdrom.o
> module at the initrd did not help  mount the CD device
> (/dev/cdrom)  at the initrd
> Also I need know how to pivot between the initrd and the CD
> filesystem

'MkCDrec' makes a bootable CDs. Have look at it. It uses shells 
scripts only. So, it's easy to understand. If you want, I can mail 
you the initrd made by those scripts!

 If you're using Debian, have a look at bootcd-mkinitrd package !

 I suppose any live CDs  based distributions (like knopix) do such 
things too....


 By the way, this is not the correct ML for these questions. Please 
use a list based on your GNU/Linux distribution !

-- 
Glennie
"Personne ne survit au fait d'être estimé au-dessus de sa valeur." 

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

* Re: accessing CD fs from initrd
  2005-07-25 10:23 ` Glennie Vignarajah
@ 2005-07-25 10:47   ` Jan Engelhardt
  0 siblings, 0 replies; 4+ messages in thread
From: Jan Engelhardt @ 2005-07-25 10:47 UTC (permalink / raw)
  To: Glennie Vignarajah; +Cc: linux-kernel


> I suppose any live CDs  based distributions (like knopix) do such 
>things too....

Only using (syslinux), mkisofs and mksquashfs here.


Jan Engelhardt
-- 

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

* RE: accessing CD fs from initrd
  2005-07-25  7:27 accessing CD fs from initrd zvi Dubitzki
  2005-07-25 10:23 ` Glennie Vignarajah
@ 2005-07-25 15:25 ` Roger Heflin
  1 sibling, 0 replies; 4+ messages in thread
From: Roger Heflin @ 2005-07-25 15:25 UTC (permalink / raw)
  To: 'zvi Dubitzki', linux-kernel


/dev/cdrom is a link to the proper device, if that link is not
on the initrd /dev/cdrom won't work.

I previously had some statically linked linuxrc C code (I don't
have the code anymore- it was a work-for-hire), that scanned
the various locations that the cd could be (/dev/hd[abcd...])
and looked for specific files that it expected to be on the
cd, once it found it it setup real-root-dev to be proper for
that device.

This work rather nicely in situations where the location of
the cd drive was not the same from one machine to another,
and was rather simple to write.

                        Roger 

> -----Original Message-----
> From: linux-kernel-owner@vger.kernel.org 
> [mailto:linux-kernel-owner@vger.kernel.org] On Behalf Of zvi Dubitzki
> Sent: Monday, July 25, 2005 2:28 AM
> To: linux-kernel@vger.kernel.org
> Subject: accessing CD fs from initrd
> 
> Hi there
> 
> I want to be CC-ed on a possible answer to the following question.
> I have not found yet an answer to the question in the Linux archives.
> 
> In need access the CD filesystem (iso9660) from within the 
> Linux initrd or right after that (make it root fs).
> I need an example for that since allocating enough ramdisk 
> space (ramdisk_size=90k in kernel command line)  + loading 
> the cdrom.o module at the initrd did not help  mount the CD 
> device (/dev/cdrom)  at the initrd Also I need know how to 
> pivot between the initrd and the CD filesystem
> 
> I am actually using Isolinux/syslinux, but can make test on a 
> regular Linux .
> Any pointer to a literature will also be welcomed .
> 
> thanks
> 
> Zvi Dubitzki
> 
> _________________________________________________________________
> FREE pop-up blocking with the new MSN Toolbar - get it now! 
> http://toolbar.msn.click-url.com/go/onm00200415ave/direct/01/
> 
> -
> To unsubscribe from this list: send the line "unsubscribe 
> linux-kernel" in the body of a message to 
> majordomo@vger.kernel.org More majordomo info at  
> http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/
> 


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

end of thread, other threads:[~2005-07-25 15:22 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-07-25  7:27 accessing CD fs from initrd zvi Dubitzki
2005-07-25 10:23 ` Glennie Vignarajah
2005-07-25 10:47   ` Jan Engelhardt
2005-07-25 15:25 ` Roger Heflin

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

all inboxes | Powered by JetHome®