On 27/05/2019 15:32, Aleksandar Markovic wrote: > > On May 26, 2019 1:07 AM, "Laurent Vivier" <laur...@vivier.eu > <mailto:laur...@vivier.eu>> wrote: > > > > If you want to test the machine, it doesn't yet boot a MacROM, but > you can > > boot a linux kernel from the command line. > > > > You can install your own disk using debian-installer with: > > > > ./qemu-system-m68k \ > > -M q800 \ > > -serial none -serial mon:stdio \ > > -m 1000M -drive file=m68k.qcow2,format=qcow2 \ > > -net nic,model=dp83932,addr=09:00:07:12:34:57 \ > > -append "console=ttyS0 vga=off" \ > > -kernel vmlinux-4.15.0-2-m68k \ > > -initrd initrd.gz \ > > -drive file=debian-9.0-m68k-NETINST-1.iso \ > > -drive file=m68k.qcow2,format=qcow2 \ > > -nographic > > > > Hello Laurent,
Hello Aleksandar, > How does one obtain vmlinux-4.15.0-2-m68 and init.rd? > you can find more details in the cover letter: You can get the ISO from: https://cdimage.debian.org/cdimage/ports/10.0/m68k/iso-cd/debian-10.0-m68k-NETINST-1.iso and extract the kernel and initrd.gz: guestfish --add debian-10.0-m68k-NETINST-1.iso --ro \ --mount /dev/sda:/ <<_EOF_ copy-out /install/cdrom/initrd.gz . copy-out /install/kernels/vmlinux-4.16.0-1-m68k . _EOF_ The mirror to use is: http://ftp.ports.debian.org/debian-ports/ when it fails, continue without boot loader. In the same way, you can extract the kernel and the initramfs from the qcow2 image to use it with "-kernel" and "-initrd": guestfish --add m68k.qcow2 --mount /dev/sda2:/ <<_EOF_ copy-out /boot/vmlinux-4.16.0-1-m68k . copy-out /boot/initrd.img-4.16.0-1-m68k . _EOF_ Thanks, Laurent