cramfs erstellen

Kreuzuebersetzer, Diskussion über Änderungen im Tuxbox-CDK und Tuxbox-CVS
hrvill
Einsteiger
Einsteiger
Beiträge: 103
Registriert: Freitag 27. Juni 2003, 23:14

cramfs erstellen

Beitrag von hrvill »

Ein jffs2only zu erstellen funktionier ja, aber mit einem cramfs hab ich so meine Probleme. Vielleicht kann ja jemand helfen. Folgendes bootlog:

Code: Alles auswählen

debug: DDF: Calibrating delay loop... debug: DDF: 66.76 BogoMIPS
debug: BMon V1.2  mID 03
debug: feID 00    enxID 03
debug: fpID 52     dsID 01-d2.ed.8a.07.00.00-19
debug: HWrev 21  FPrev 0.23
debug: B/Ex/Fl(MB) 32/00/08
WATCHDOG reset enabled
dbox2:root> debug: 
BOOTP/TFTP bootstrap loader (v0.3)
debug: 
debug: Transmitting BOOTP request via broadcast
debug: Given up BOOTP/TFTP boot
boot net failed

Flash-FS bootstrap loader (v1.5)

Found Flash-FS superblock version 3.1
Found file /root/platform/sagem-dbox2/kernel/os in Flash-FS
debug: Got Block #0036

will verify ELF image, start= 0x800000, size= 145940
verify sig: 262
Branching to 0x40000


U-Boot 0.4.0 (TuxBox) (Sep 13 2003 - 14:11:03)

CPU:   PPC823ZTnnB2 at 66 MHz: 2 kB I-Cache 1 kB D-Cache
Board: DBOX2, Sagem
       Watchdog enabled
I2C:   ready
DRAM:  32 MB
FLASH:  8 MB
Scanning JFFS2 FS: . done.
FB:    ready
LCD:   ready
In:    serial
Out:   serial
Err:   serial
Net:   SCC ETHERNET

Options:
  1: console on ttyS0
  2: console on fb0
  3: console on null
Select option (1-3), other keys to stop autoboot:  0 
..............................................................
Un-Protected 62 sectors
### FS (cramfs) loading 'vmlinuz' to 0x100000
cramfs: wrong magic
### FS LOAD ERROR<-1> for vmlinuz!
## Booting image at 00100000 ...
Bad Magic Number
=>
flfs habe ich mit mkflfs erstellt.
Hier meine dbox.h:

Code: Alles auswählen

/*
#define	CONFIG_BOOTCOMMAND							\
	"dhcp; tftp \"$(bootfile)\"; "						\
	"protect off 10040000 107fffff; "					\
        "setenv bootargs root=/dev/nfs rw nfsroot=$(serverip):$(rootpath) "	\
	"ip=$(ipaddr):$(serverip):$(gatewayip):$(netmask):$(hostname)::off "	\
	"console=$(console); "							\
	"bootm"
*/
#define	CONFIG_BOOTCOMMAND							\
	"protect off 10040000 107fffff; "					\
	"fsload; setenv bootargs root=/dev/mtdblock2 console=$(console); "	\
	"bootm"
..........
..........
#define	CONFIG_FS		( CFG_FS_CRAMFS | CFG_FS_JFFS2 )

#define	CFG_FS_PART0_TYPE	CFG_FS_CRAMFS
#define	CFG_FS_PART0_OFFSET	0x10040000
#define	CFG_FS_PART0_SIZE	0x6c0000
#define	CFG_FS_PART1_TYPE	CFG_FS_JFFS2
#define	CFG_FS_PART1_OFFSET	0x106e0000
#define	CFG_FS_PART1_SIZE	0x100000

#define	CONFIG_DBOX2_ENV_READ_FS		"1:tuxbox/boot/ppcboot.conf"

#define	CONFIG_TUXBOX_NETWORK			1

#ifdef	CONFIG_LCD_BOARD
#define	CONFIG_DBOX2_LCD_INFO			1
#define	CONFIG_DBOX2_LCD_LOGO			1
#define	CONFIG_DBOX2_LCD_LOGO_FS		"1:tuxbox/boot/logo-lcd"
#define	CONFIG_DBOX2_LCD_LOGO_TFTP		"logo-lcd"
#define	CONFIG_DBOX2_LCD_LOGO_RESERVE		2
#undef	CONFIG_DBOX2_LCD_FONT8x16
#endif	/* CONFIG_LCD_BOARD */
#ifdef	CONFIG_DBOX2_FB
#define	CONFIG_DBOX2_FB_LOGO			1
#define	CONFIG_DBOX2_FB_LOGO_FS			"1:tuxbox/boot/logo-fb"
#define	CONFIG_DBOX2_FB_LOGO_TFTP		"logo-fb"
#endif	/* CONFIG_DBOX2_FB */
flashmanage.pl

Code: Alles auswählen

my %partdef =
(
  0 => [ "ppcboot", 0, 0x20000 ],
  1 => [ "root", 0x20000, 0x6c0000 ],
  2 => [ "var", 0x6e0000, 0x100000 ],
);
und dbox2-flash.c

Code: Alles auswählen

static struct mtd_partition partition_info[]= {{name: "BR bootloader",		// raw
							size: 128 * 1024, 
							offset: 0,                  
							mask_flags: MTD_WRITEABLE},
							{name: "flfs (ppcboot)",
							size: 128 * 1024, 
							offset: MTDPART_OFS_APPEND, 
							mask_flags: 0},
							{name: "root (cramfs)",
							size: 6912 * 1024, 
							offset: MTDPART_OFS_APPEND, 
							mask_flags: 0},
							{name: "var (jffs2)",
							size: 1024 * 1024,
							offset: MTDPART_OFS_APPEND,
							mask_flags: 0},
							{name: "flash without bootloader",
							size: MTDPART_SIZ_FULL,
							offset: 128 * 1024,
							mask_flags: 0},
							{name: "complete flash",
							size: MTDPART_SIZ_FULL,
							offset: 0, 
							mask_flags: MTD_WRITEABLE}};
Ich hatte auch scho eine Version, bei der ich das flfs vom alexW - Image extrahiert hatte, da konnte cramfs geladen werden, allerdings ging da jffs2 / var nicht.

Gruss Herbert
Voldemort
Interessierter
Interessierter
Beiträge: 62
Registriert: Mittwoch 7. November 2001, 00:00

Beitrag von Voldemort »

Hallo,
lies Dir mal die beiden Beiträge durch.
Da geht es mehr oder weniger um das gleiche Thema.
Vielleicht hilft Dir das weiter.

http://tuxbox-cvs.sourceforge.net/forum ... hp?t=24055
http://tuxbox-cvs.sourceforge.net/forum ... hp?t=23913
hrvill
Einsteiger
Einsteiger
Beiträge: 103
Registriert: Freitag 27. Juni 2003, 23:14

Beitrag von hrvill »

@Voldemort
also ich habe ein mkcramfs, das big endian erzeugt. Wenn ich das richtig sehe, ist der Kernel auch big endian. Also muesste ich nur u-boot anpassen????

Aber was muss ich da tun??? :oops:

Gruss Herbert
ALexH
Image-Team
Beiträge: 146
Registriert: Dienstag 10. September 2002, 20:25

Beitrag von ALexH »

hrvill hat geschrieben:Ein jffs2only zu erstellen funktionier ja, aber mit einem cramfs hab ich so meine Probleme
Kannst Du mal kurz erklären, wie Du das gemacht hast? Habe das auch mal versucht, aber beim booten bleibt die Box immer mit

Code: Alles auswählen

find_inode failed for name=vmlinuz
load: Failed to find inode
### FS LOAD ERROR<0> for vmlinuz!
## Booting image at 00100000 ...
Bad Magic Number
stehen. Hast Du mir ein paar Tips, auf was ich da achten muß?
hrvill
Einsteiger
Einsteiger
Beiträge: 103
Registriert: Freitag 27. Juni 2003, 23:14

Beitrag von hrvill »

@AlexH

siehe Beiträge von Voldemort unt vel-tins
http://tuxbox-cvs.sourceforge.net/forum ... hp?t=23913

Gruss Herbert
ALexH
Image-Team
Beiträge: 146
Registriert: Dienstag 10. September 2002, 20:25

Beitrag von ALexH »

hrvill hat geschrieben:siehe Beiträge von Voldemort unt vel-tins
Habe alles so gemacht, wie es da steht, aber vmlinuz kann immer noch nicht gefunden werden. Noch eine Idee, was man noch anpassen könnte? Ich kenne mich nämlich noch gar nicht so sehr aus :oops:

Wegen Deinem Problem: Hast Du es schonmal mit den Quellen versucht, so wie diese im Head-CVS liegen? Die sehen so aus, als wären diese perfekt an cramfs+jffs2 angepasst (zumindest von dem Layout der Partitionen usw.).
hrvill
Einsteiger
Einsteiger
Beiträge: 103
Registriert: Freitag 27. Juni 2003, 23:14

Beitrag von hrvill »

@AlexH
Mit den Einstellungen aus dem CVS habe ich es schon versucht. Die passen allerdings nicht. Vermutlich liegt das Problem im u-boot. Genau so dürfte auch Dein Problem im u-boot liegen. Ich könnte Dir vielleich mal zum testen ein jffs2-flfs.img zur Verfügung stellen. Wenn Du dies benötigst, gib doch bitte Bescheid, ob Du 1x oder 2x benötigst. Mit welchem Linux versuchst Du das Image zu erstellen? Ich hatte bei RedHat 9.0 das Problem, daß ich ein anderes mkjffs2 benötigt habe, als installierte.
ALexH
Image-Team
Beiträge: 146
Registriert: Dienstag 10. September 2002, 20:25

Beitrag von ALexH »

Genau so dürfte auch Dein Problem im u-boot liegen.
Das vermute ich inzwischen auch, denn mit einem anderen flfs (noch ppcboot) bootet das Image wunderbar. Hätte aber doch auch irgendwie gerne ein eigenes flfs gebaut. Irgendwie muß das mit dem uboot auch funktionieren, alexW hat es ja schließlich auch geschafft, das aktuelle Image hat ja uboot, wüßte nur gerne mal, was wir da nicht beachtet haben.
Ich baue mein Image übrigens auch unter RH9, habe mir auch ein anderes mkfs.jffs2 compiliert und installiert.
ALexH
Image-Team
Beiträge: 146
Registriert: Dienstag 10. September 2002, 20:25

Beitrag von ALexH »

Habe noch eine kleine Entdeckung gemacht.
Auszug aus dem Boot-Log, welches funktioniert:

Code: Alles auswählen

Options:
  1: Console on null
  2: Console on ttyS0
  3: Console on framebuffer
Select (1-3), other keys to stop autoboot:  0
### FS (jffs2) loading 'vmlinuz' to 0x100000
### FS load compleate: 721801 bytes loaded to 0x100000
Auszug aus dem Boot-Log, welches nicht funktioniert:

Code: Alles auswählen

Options:
  1: console on ttyS0
  2: console on fb0
  3: console on null
Select option (1-3), other keys to stop autoboot:  0
..............................................................
Un-Protected 62 sectors
### FS (jffs2) loading 'vmlinuz' to 0x100000
Scanning JFFS2 FS:  done.
find_inode failed for name=vmlinuz
D.h. es werden fälschlicherweise irgendwelche Sektoren "Un-Protected". Ich vermute, daß dadurch der Speicherinhalt geschrottet wird bzw. nicht mehr darauf zugegriffen werden kann. Frag mich jetzt aber nicht, wo man das ausschalten kann.
Vielleicht konnte ich Dir ja damit auch weiterhelfen. :-?
ALexH
Image-Team
Beiträge: 146
Registriert: Dienstag 10. September 2002, 20:25

Beitrag von ALexH »

Bin noch einen Schritt weiter gekommen: Ich habe die Zeile

Code: Alles auswählen

 "protect off 10040000 107fffff; "               \ 
entfernt, damit dieses Un-Protected... nicht mehr kommt und siehe da: Es bootet etwas. Nur leider nicht viel weiter, weil dadurch nichts geschrieben werden kann :(
ALexH
Image-Team
Beiträge: 146
Registriert: Dienstag 10. September 2002, 20:25

Beitrag von ALexH »

@hrvill
Juhuu, es funktioniert :D
Musste einfach noch ein rw in die bootargs einfügen, so daß die Zeile nun so aussieht:

Code: Alles auswählen

"fsload; setenv bootargs root=/dev/mtdblock2 rw console=$(console); "
Und jetzt funktioniert alles. Ich hoffe, ich konnte Dir damit auch weiterhelfen.
MHC
GOD
Beiträge: 409
Registriert: Sonntag 22. Juli 2001, 00:00

Beitrag von MHC »

ALexH hat geschrieben:Bin noch einen Schritt weiter gekommen: Ich habe die Zeile

Code: Alles auswählen

 "protect off 10040000 107fffff; "               \ 
entfernt, damit dieses Un-Protected... nicht mehr kommt und siehe da: Es bootet etwas. Nur leider nicht viel weiter, weil dadurch nichts geschrieben werden kann :(
mhh lass mich raten ... du hast ne Sagem 1xI ?
... da geht protect im u-boot nicht (Bug ist bekannt ... zumindest mir ;-) )
... kurz gesagt ... wer 1xI hat sollte momentan den Befehl 'protect' bei u-boot meiden ...

ps: eine neue flash.c ist seit längeren in Arbeit (kam aber in letzten 6 Wochen nicht mehr dazu weiterzumachen)
cu
ALexH
Image-Team
Beiträge: 146
Registriert: Dienstag 10. September 2002, 20:25

Beitrag von ALexH »

mhh lass mich raten ... du hast ne Sagem 1xI ?
Ganz genau, richtig geraten :(

Gibt es denn irgendwo eine Bug-Liste, auf welcher so etwas und noch weitere Bugs stehen? Hätte mir glaube ich wirklich ne Menge Arbeit erspart...
hrvill
Einsteiger
Einsteiger
Beiträge: 103
Registriert: Freitag 27. Juni 2003, 23:14

Beitrag von hrvill »

Danke für den Hiweis. Werde es heute Abend gleich ausprobieren. Habe auch Sagem 1xI.
@AlexH
Hast Du jetzt cramfsjffs oder jffs2only erstellt? Konnte mich gestern leider nicht beteiligen, da ich unterwegs war. Protect off hat mir auch noch zum eigenen flfs gefehlt. Ich hatte das flfs auch noch aus einem anderen Image extrahiert.

Gruß Herbert
ALexH
Image-Team
Beiträge: 146
Registriert: Dienstag 10. September 2002, 20:25

Beitrag von ALexH »

Hast Du jetzt cramfsjffs oder jffs2only erstellt?
Ich habe ein jffs2only-Image erstellt.
hrvill
Einsteiger
Einsteiger
Beiträge: 103
Registriert: Freitag 27. Juni 2003, 23:14

Beitrag von hrvill »

Danke das wars. Jetzt hab ich auch mein eigenes flfs für jffsonly. :D :D
Aber mit cramfsjffs2 hab nich nach wie vor Probleme. Hier noch mal ein aktuelles log.

Code: Alles auswählen

debug: DDF: Calibrating delay loop... debug: DDF: 66.76 BogoMIPS
debug: BMon V1.2  mID 03
debug: feID 00    enxID 03
debug: fpID 52     dsID 01-d2.ed.8a.07.00.00-19
debug: HWrev 21  FPrev 0.23
debug: B/Ex/Fl(MB) 32/00/08
WATCHDOG reset enabled
dbox2:root> debug: 
BOOTP/TFTP bootstrap loader (v0.3)
debug: 
debug: Transmitting BOOTP request via broadcast
debug: Given up BOOTP/TFTP boot
boot net failed

Flash-FS bootstrap loader (v1.5)

Found Flash-FS superblock version 3.1
Found file /root/platform/sagem-dbox2/kernel/os in Flash-FS
debug: Got Block #0036

will verify ELF image, start= 0x800000, size= 145428
verify sig: 262
Branching to 0x40000


U-Boot 0.4.0 (TuxBox) (Sep 17 2003 - 19:00:40)

CPU:   PPC823ZTnnB2 at 66 MHz: 2 kB I-Cache 1 kB D-Cache
Board: DBOX2, Sagem
       Watchdog enabled
I2C:   ready
DRAM:  32 MB
FLASH:  8 MB
FB:    ready
LCD:   ready
In:    serial
Out:   serial
Err:   serial
Net:   SCC ETHERNET
Scanning JFFS2 FS: . done.

Options:
  1: console on ttyS0
  2: console on fb0
  3: console on null
Select option (1-3), other keys to stop autoboot:  0 
### FS (cramfs) loading 'vmlinuz' to 0x100000
### FS load complete: 596595 bytes loaded to 0x100000
## Booting image at 00100000 ...
   Image Name:   dbox2
   Image Type:   PowerPC Linux Kernel Image (gzip compressed)
   Data Size:    596531 Bytes = 582.5 kB
   Load Address: 00000000
   Entry Point:  00000000
   Verifying Checksum ... OK
   Uncompressing Kernel Image ... OK
Linux version 2.4.22 (root@notebook.netz.haus) (gcc version 3.2.3) #7 Wed Sep 17
 19:01:53 CEST 2003
On node 0 totalpages: 8192
zone(0): 8192 pages.
zone(1): 0 pages.
zone(2): 0 pages.
Kernel command line: root=/dev/mtdblock2 rw console=ttyS0
Decrementer Frequency = 247500000/60
mpc8xx-wdt: active wdt found (SWTC: 0xFFFF, SWP: 0x1)
mpc8xx-wdt: keep-alive trigger activated (PITC: 0x2000)
Console: colour dummy device 80x25
Calibrating delay loop... 65.74 BogoMIPS
Memory: 30916k available (1020k kernel code, 368k data, 64k init, 0k highmem)
Dentry cache hash table entries: 4096 (order: 3, 32768 bytes)
Inode cache hash table entries: 2048 (order: 2, 16384 bytes)
Mount cache hash table entries: 512 (order: 0, 4096 bytes)
Buffer cache hash table entries: 1024 (order: 0, 4096 bytes)
Page-cache hash table entries: 8192 (order: 3, 32768 bytes)
POSIX conformance testing by UNIFIX
Linux NET4.0 for Linux 2.4
Based upon Swansea University Computer Society NET3.039
Initializing RT netlink socket
Starting kswapd
devfs: v1.12c (20020818) Richard Gooch (rgooch@atnf.csiro.au)
devfs: boot_options: 0x1
JFFS2 version 2.1. (C) 2001 Red Hat, Inc., designed by Axis Communications AB.
i2c-core.o: i2c core module
CPM UART driver version 0.03
ttyS00 at 0x0280 is a SMC
ttyS01 at 0x0380 is a SMC
pty: 256 Unix98 ptys configured
eth0: CPM ENET Version 0.2 on SCC2, 00:50:9c:31:22:48
D-Box 2 flash driver (size->0x800000 mem->0x10000000)
CFI: Found no D-Box 2 flash memory device at location zero
cfi_cmdset_0001: Erase suspend on write enabled
Using buffer write method
Creating 6 MTD partitions on "D-Box 2 flash memory":
0x00000000-0x00020000 : "BR bootloader"
0x00020000-0x00040000 : "flfs (ppcboot)"
0x00040000-0x00700000 : "root (cramfs)"
0x00700000-0x00800000 : "var (jffs2)"
0x00020000-0x00800000 : "flash without bootloader"
0x00000000-0x00800000 : "complete flash"
Linux video capture interface: v1.00
mice: PS/2 mouse device common for all mice
NET4: Linux TCP/IP 1.0 for NET4.0
IP Protocols: ICMP, UDP, TCP, IGMP
IP: routing cache hash table of 512 buckets, 4Kbytes
TCP: Hash tables configured (established 2048 bind 4096)
NET4: Unix domain sockets 1.0/SMP for Linux NET4.0.
cramfs: wrong magic
jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00000200: 0x453d in
stead
jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00000204: 0x0040 in
stead
jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00000208: 0x0300 in
stead
jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00000210: 0x436f in
stead
jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00000214: 0x7265 in
stead
jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00000218: 0x6564 in
stead
jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0000021c: 0x4f4d in
stead
jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00000220: 0xeffb in
stead
jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00000228: 0x030b in
stead
jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0000022c: 0xcb01 in
stead
Further such events for this erase block will not be printed
JFFS2: Erase block at 0x00000000 is not formatted. It will be erased
jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00020000: 0x8cc9 in
stead
jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00020004: 0x9139 in
stead
jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00020008: 0x5246 in
stead
jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0002000c: 0x4b30 in
stead
jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00020010: 0xa8eb in
stead
jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00020014: 0xff85 in
stead
jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00020018: 0xf716 in
stead
jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0002001c: 0x27e3 in
stead
jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00020020: 0xdd23 in
stead
jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00020024: 0xf765 in
stead
Further such events for this erase block will not be printed
JFFS2: Erase block at 0x00020000 is not formatted. It will be erased
jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00040000: 0x33ed in
stead
jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00040004: 0x995a in
stead
jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00040008: 0x3931 in
st
vielleicht kann ja jemand was sagen. mkfs.jffs2 habe ich inzwischen auch 1.39

Gruss Herbert
JOCKYW2001
Einsteiger
Einsteiger
Beiträge: 358
Registriert: Montag 21. Juli 2003, 23:52

Beitrag von JOCKYW2001 »

Herbert,

You have a "cramfs: wrong magic "
I think you must byteswap the cramfs part of the image.
I still need to try that, see also:
http://tuxbox.berlios.de/forum/viewtopic.php?t=24055

JockyW
hrvill
Einsteiger
Einsteiger
Beiträge: 103
Registriert: Freitag 27. Juni 2003, 23:14

Beitrag von hrvill »

JOCKYW2001 hat geschrieben:Herbert,

You have a "cramfs: wrong magic "
I think you must byteswap the cramfs part of the image.
I still need to try that, see also:
http://tuxbox.berlios.de/forum/viewtopic.php?t=24055
I've seen this thread. But how can I do a byteswap of the cramfs part ?

Herbert
JOCKYW2001
Einsteiger
Einsteiger
Beiträge: 358
Registriert: Montag 21. Juli 2003, 23:52

Beitrag von JOCKYW2001 »

You need to code it or perhaps find a util on the Net (maybe it can be done with hexworkshop or so).

JockyW
hrvill
Einsteiger
Einsteiger
Beiträge: 103
Registriert: Freitag 27. Juni 2003, 23:14

Beitrag von hrvill »

I've found a mkcramfs wich can make big or low endian independent from kernel. Option -b

Code: Alles auswählen

[root@notebook root]# mkcramfs.org -h
usage: mkcramfs.org [-h] [-b byteorder] [-e edition] [-i file] [-n name] dirname outfile
 -h         print this help
 -b {blhr} select byte order (big/little/host/reverse)
 -E         make all warnings errors (non-zero exit status)
 -e edition set edition number (part of fsid)
 -i file    insert a file image into the filesystem (requires >= 2.4.0)
 -n name    set name of cramfs filesystem
 -p         pad by 512 bytes for boot code
 -s         sort directory entries (old option, ignored)
 -z         make explicit holes (requires >= 2.3.39)
 dirname    root of the filesystem to be compressed
 outfile    output file
[root@notebook root]#
Would this be possible?

Herbert
JOCKYW2001
Einsteiger
Einsteiger
Beiträge: 358
Registriert: Montag 21. Juli 2003, 23:52

Beitrag von JOCKYW2001 »

Yes, I think that is what you need. You simply have to try. Let us know if it worked !

Goodluck, JockyW

PS: where did you find it?
hrvill
Einsteiger
Einsteiger
Beiträge: 103
Registriert: Freitag 27. Juni 2003, 23:14

Beitrag von hrvill »

must I make a big or low-endian cramfs?

Herbert
JOCKYW2001
Einsteiger
Einsteiger
Beiträge: 358
Registriert: Montag 21. Juli 2003, 23:52

Beitrag von JOCKYW2001 »

my best guess is it should be big endian

JockyW
hrvill
Einsteiger
Einsteiger
Beiträge: 103
Registriert: Freitag 27. Juni 2003, 23:14

Beitrag von hrvill »

with big endian it doesn't work

Herbert
JOCKYW2001
Einsteiger
Einsteiger
Beiträge: 358
Registriert: Montag 21. Juli 2003, 23:52

Beitrag von JOCKYW2001 »

hmm, that leaves low-endian .....

where did you find this tool??

JockyW