I'm trying to get slitaz cooking ISO to boot using a grub2 loopback on a multiboot USB;
# /boot/grub/grub.cfg
insmod font
if loadfont /boot/grub/unicode.pf2 ; then
insmod efi_gop
insmod efi_uga
insmod gfxterm
insmod vbe
insmod vga
set gfxmode=auto
set gfxpayload=auto
terminal_output gfxterm
if terminal_output gfxterm; then true ; else
terminal gfxterm
fi
fi
menuentry "Slitaz Cooking" {
set isofile="/boot/slitaz-cooking.iso"
loopback loop $isofile
linux (loop)/boot/bzImage lang=en kmap=us isofrom=$isofile boot=live noeject noprompt root=/dev/null
initrd (loop)/boot/rootfs.gz
}
tried with screen=text and screen=1024x768x24 kernel options but it never gets to a useable gui/terminal