This page will document progress and problems faced in supporting Ubuntu 9.10 in BKO.
/etc/resolv.conf
file with public DNS entries. IP
or use dhcp
Ubuntu 9.10 is using new format for compressing initrd files. It uses lzma
command for this.
This is quite new format for me, so struggling little bit with it.
For decompressing the initrd.lz
, use following steps.
mv initrd.lz initrd.lzma unlzma initrd.lzma
I still have some problems in compressing it back. The default lzma
compression
does not match the original initrd.lz
file, so I am doing something wrong here.
Most probably, I need to provide proper compression level which I need to find out.
(cd mpoint;find . | cpio -oH newc | lzma -c > ../initrd.lzma)
I have to provide -9
argument to lzma for work. So final command which worked
in generate_initrd.sh
is
sudo find . | sudo cpio -oH newc | lzma -9 -c> ../initrd.lz