Greetings everyone, I would like to create a Yocto image containing on only *1 partition* my rootfs and bootloader. This setup is needed for being chainloaded by an already existing grub setup. Goal: * 1 partition with the rootfs on / , and the bootloader (syslinux) being part of the rootfs under /root * Able to be chainload with grub Grub configuration (code snippet): set root=(hd0,3) chainloader (hd0,3)+1 boot Syslinux configuration (code snippet): PROMPT 1 TIMEOUT 50 DEFAULT linux SAY Now booting the kernel from SYSLINUX... LABEL linux KERNEL /boot/bzImage APPEND root = LABEL = linux_rootfs I would like to ask for advices on how to setup this. I tried to use the hddimg, iso and .wic format without success so far. Thank you, Nicolas