public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot-Users] Create initrd tool without being root?
@ 2003-03-28  6:43 Donald White
  2003-03-28  7:59 ` Stephan Linz
  2003-03-28  8:25 ` Wolfgang Denk
  0 siblings, 2 replies; 5+ messages in thread
From: Donald White @ 2003-03-28  6:43 UTC (permalink / raw)
  To: u-boot

I thought someone on this list recently mentioned a tool dor creating initrd without 
  being root.  I couldn't find it i the archives.  Can someone help me?

Don

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

* [U-Boot-Users] Create initrd tool without being root?
  2003-03-28  6:43 [U-Boot-Users] Create initrd tool without being root? Donald White
@ 2003-03-28  7:59 ` Stephan Linz
  2003-03-28 14:16   ` Donald White
  2003-03-28  8:25 ` Wolfgang Denk
  1 sibling, 1 reply; 5+ messages in thread
From: Stephan Linz @ 2003-03-28  7:59 UTC (permalink / raw)
  To: u-boot

Am Freitag, 28. M?rz 2003 07:43 schrieben Sie:
> I thought someone on this list recently mentioned a tool dor creating
> initrd without being root.  I couldn't find it i the archives.  Can someone
> help me?

If you want to build a ext2 inside your initrd you should use genext2fs. Have 
a look at :

Debian:
http://distro.ibiblio.org/pub/Linux/distributions/debian/pool/main/g/genext2fs/

Denx ELDK:
ftp://ftp.leo.org/pub/eldk/eldk-ppc-linux-x86/2.0.2/RPMS/genext2fs-1.3-2.i386.rpm

Project Home (very empty):
http://sourceforge.net/projects/genext2fs/


-8<--snip-->8-
Best regards
-- 
Mit freundlichen Gruessen
Stephan Linz



======================================================================
Stephan Linz
Softwareentwicklung

MAZeT GmbH                   Email: mailto:linz at mazet.de
G?schwitzer Str. 32          Tel. : (3641) 2809-55
D-07745 Jena                 Fax  : (3641) 2809-12

Besuchen Sie bitte unsere Web-Seiten: http://www.MAZeT.de
======================================================================

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

* [U-Boot-Users] Create initrd tool without being root?
  2003-03-28  6:43 [U-Boot-Users] Create initrd tool without being root? Donald White
  2003-03-28  7:59 ` Stephan Linz
@ 2003-03-28  8:25 ` Wolfgang Denk
  2003-03-28 14:16   ` Donald White
  1 sibling, 1 reply; 5+ messages in thread
From: Wolfgang Denk @ 2003-03-28  8:25 UTC (permalink / raw)
  To: u-boot

In message <3E83EF1D.4050509@asu.edu> you wrote:
> I thought someone on this list recently mentioned a tool dor creating initrd without 
>   being root.  I couldn't find it i the archives.  Can someone help me?

The ELDK (in current versions) uses the genext2fs to build  the  SELF
ramdisk  images.  For  example, you can check out the "spec" file for
the SELF RPM from our ELDK build environment und manually go  through
the tsteps. Or just follow the usgae message:

	-> genext2fs 
	Usage: genext2fs [options] image
	Create an ext2 filesystem image from directories/files

	  -x image                Use this image as a starting point
	  -d directory            Add this directory as source
	  -f file                 Add nodes (e.g. devices) from this spec file
	  -b blocks               Size in blocks
	  -i inodes               Number of inodes
	  -r reserved             Number of reserved blocks
	  -g path                 Generate a block map file for this path
	  -e value                Fill unallocated blocks with value
	  -z                      Make files with holes
	  -v                      Print resulting filesystem structure
	  -h                      Show this help

	Example of spec file:
	drwx            /dev
	crw-    10,190  /dev/lcd
	brw-    1,0     /dev/ram0

	Report bugs to xavier.bestel at free.fr


Best regards,

Wolfgang Denk

-- 
Software Engineering:  Embedded and Realtime Systems,  Embedded Linux
Phone: (+49)-8142-4596-87  Fax: (+49)-8142-4596-88  Email: wd at denx.de
"Intelligence without character is a dangerous thing."   - G. Steinem

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

* [U-Boot-Users] Create initrd tool without being root?
  2003-03-28  7:59 ` Stephan Linz
@ 2003-03-28 14:16   ` Donald White
  0 siblings, 0 replies; 5+ messages in thread
From: Donald White @ 2003-03-28 14:16 UTC (permalink / raw)
  To: u-boot

Thanks.

Stephan Linz wrote:
> Am Freitag, 28. M?rz 2003 07:43 schrieben Sie:
> 
>>I thought someone on this list recently mentioned a tool dor creating
>>initrd without being root.  I couldn't find it i the archives.  Can someone
>>help me?
> 
> 
> If you want to build a ext2 inside your initrd you should use genext2fs. Have 
> a look at :
> 
> Debian:
> http://distro.ibiblio.org/pub/Linux/distributions/debian/pool/main/g/genext2fs/
> 
> Denx ELDK:
> ftp://ftp.leo.org/pub/eldk/eldk-ppc-linux-x86/2.0.2/RPMS/genext2fs-1.3-2.i386.rpm
> 
> Project Home (very empty):
> http://sourceforge.net/projects/genext2fs/
> 
> 
> -8<--snip-->8-
> Best regards

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

* [U-Boot-Users] Create initrd tool without being root?
  2003-03-28  8:25 ` Wolfgang Denk
@ 2003-03-28 14:16   ` Donald White
  0 siblings, 0 replies; 5+ messages in thread
From: Donald White @ 2003-03-28 14:16 UTC (permalink / raw)
  To: u-boot

Thanks.

Wolfgang Denk wrote:
> In message <3E83EF1D.4050509@asu.edu> you wrote:
> 
>>I thought someone on this list recently mentioned a tool dor creating initrd without 
>>  being root.  I couldn't find it i the archives.  Can someone help me?
> 
> 
> The ELDK (in current versions) uses the genext2fs to build  the  SELF
> ramdisk  images.  For  example, you can check out the "spec" file for
> the SELF RPM from our ELDK build environment und manually go  through
> the tsteps. Or just follow the usgae message:
> 
> 	-> genext2fs 
> 	Usage: genext2fs [options] image
> 	Create an ext2 filesystem image from directories/files
> 
> 	  -x image                Use this image as a starting point
> 	  -d directory            Add this directory as source
> 	  -f file                 Add nodes (e.g. devices) from this spec file
> 	  -b blocks               Size in blocks
> 	  -i inodes               Number of inodes
> 	  -r reserved             Number of reserved blocks
> 	  -g path                 Generate a block map file for this path
> 	  -e value                Fill unallocated blocks with value
> 	  -z                      Make files with holes
> 	  -v                      Print resulting filesystem structure
> 	  -h                      Show this help
> 
> 	Example of spec file:
> 	drwx            /dev
> 	crw-    10,190  /dev/lcd
> 	brw-    1,0     /dev/ram0
> 
> 	Report bugs to xavier.bestel at free.fr
> 
> 
> Best regards,
> 
> Wolfgang Denk
> 

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

end of thread, other threads:[~2003-03-28 14:16 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-03-28  6:43 [U-Boot-Users] Create initrd tool without being root? Donald White
2003-03-28  7:59 ` Stephan Linz
2003-03-28 14:16   ` Donald White
2003-03-28  8:25 ` Wolfgang Denk
2003-03-28 14:16   ` Donald White

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