ben c'est pas obligatoire de gziper, mais bon, niveau taille du machin, tu divises facilement par 3, généralement les kernels et les initrds sont gzipés (.img ou .gz)
linuxrc = init, c'est le script de "démarrage", il se trouve à la racine de l'initrd :
<-=[ /initrd ]=-> ls -al
total 13
drwxr-xr-x 9 root root 1024 déc 8 19:20 .
drwxr-xr-x 24 root root 4096 fév 29 02:30 ..
drwxr-xr-x 2 root root 1024 déc 8 19:18 bin
drwxr-xr-x 2 root root 1024 déc 8 18:12 dev
drwxr-xr-x 2 root root 1024 déc 8 18:12 etc
drwxr-xr-x 2 root root 1024 déc 8 19:19 lib
-rwxr-xr-x 1 root root 848 déc 8 19:20 linuxrc
drwxr-xr-x 2 root root 1024 déc 8 18:12 loopfs
drwxr-xr-x 2 root root 1024 déc 8 18:12 proc
lrwxrwxrwx 1 root root 3 déc 8 18:12 sbin -> bin
drwxr-xr-x 2 root root 1024 déc 8 18:12 sysroot
|
<-=[ /initrd ]=-> cat linuxrc
#!/bin/nash
/bin/echo -e "\033[1;31mLoading scsi_mod.o module\033[0m"
insmod /lib/scsi_mod.o
/bin/echo -e "\033[1;31mLoading sd_mod.o module\033[0m"
insmod /lib/sd_mod.o
/bin/echo -e "\033[1;31mLoading sg.o module\033[0m"
insmod /lib/sg.o
/bin/echo -e "\033[1;31mLoading dc395x_trm.o module\033[0m"
insmod /lib/dc395x_trm.o
/bin/echo -e "\033[1;31mLoading pdc-ultra.o module\033[0m"
insmod /lib/pdc-ultra.o
/bin/echo -e "\033[1;31mLoading ext3.o module\033[0m"
insmod /lib/ext3.o
/bin/echo -e "\033[1;31mLoading reiserfs.o module\033[0m"
insmod /lib/reiserfs.o
/bin/echo -e "\033[1;32mMounting /proc filesystem\033[0m"
mount -t proc /proc /proc
/bin/echo -e "\033[1;34mCreating block devices\033[0m"
mkdevices /dev
/bin/echo -e "\033[1;34mCreating root device\033[0m"
mkrootdev /dev/root
echo 0x0100 > /proc/sys/kernel/real-root-dev
/bin/echo -e "\033[1;32mMounting root filesystem\033[0m"
mount -o defaults --ro -t ext3 /dev/root /sysroot
pivot_root /sysroot /sysroot/initrd
umount /initrd/proc
|
bon là c'est un peu folklo, c'est celui d'un ex-2.4.22, j'y ai ajouté des couleurs (remplacé echo et ajouté les libs ld-linux.so.2 et libc.so.6), c'est pareil pour un 2.6, suffit de s/.o/.ko/
sinon je ne vois pas trop ce que tu veux dire par "Et c'est avec quel package ?", si tu parles du linuxrc, tu as la réponse au-dessus