Carrega o Linux bzImage no QEMU?

13

Eu compilei um Linux fazendo make menuconfig then make e agora eu compilei a versão mais recente do Linux. Como posso carregar o kernel no QEMU?

    
por Coder404 09.09.2012 / 16:31

1 resposta

12

Da ajuda do qemu:

Linux/Multiboot boot specific:
-kernel bzImage use 'bzImage' as kernel image
-append cmdline use 'cmdline' as kernel command line
-initrd file    use 'file' as initial ram disk
-dtb    file    use 'file' as device tree image

Um teste rápido aqui usando o kernel / initrd do Arch ( qemu -kernel /boot/vmlinuz-linux -initrd /boot/initramfs-linux.img ) funcionou (me colocou em um shell de recuperação, já que eu não fornecia um dispositivo root).

    
por 09.09.2012 / 16:47