Displaying 1 result from an estimated 1 matches for "10boot".
Did you mean:
40boot
2004 Jun 08
1
How do I build an initrd.img for use with pxelinux
...7.1.22 and used this file as a
replacement in the procedure below.
zcat /tftp/initrd.img > /tmp/initrd.e2fs
mkdir /mnt/initrd
mount -o loop /tmp/initrd.e2fs /mnt/initrd
mkdir /tmp/modules
cd /tmp/modules
zcat /mnt/initrd/modules/modules.cgz|cpio -i --make-directories
cp /tmp/bcm5700.o 2.4.7-10BOOT
cp /tmp/pcitable /mnt/initrd/modules/pcitable
find -name "*.o" -type f | cpio -oH crc | gzip -9 >
/mnt/initrd/modules/modules.cgz
ls -l /mnt/initrd/modules
umount /mnt/initrd
cat /tmp/initrd.e2fs | gzip -9 > /tftp/initrd-new.img
When I use this image to kickstart the machine I bui...