1.5: Getting ready for Simulation
To finally get your LF0 system set-up for Simulation (e.g: qemu),
You must make an Initial Ram Filesystem
cd ~/lfz/rootfs
find . -print0 | cpio --null --format=newc | gzip -9 > ../initramfs.cpio.gz
The actual qemu command:
#Assuming a x86_64 enviroment
qemu-system-x86_64 \
-kernel <YOURKERNELNAME> \
-initrd initramfs.cpio.gz \
-m 1G
Next chapter - Userland...