Atom z8350 + emmc

About the non imported bootargs , it was as easy as setting MENDER_GRUB_KERNEL_BOOT_ARGS into my custom board config.

About the console settings impacting the boot , I followed your advice and made a hook like that:

remove_console_bootargs() {
    log_info "Remove problematic serial console settings from bootargs"
    run_and_log_cmd "sed -i 's/set console_bootargs=\"console=tty0,115200n8 console=ttyS0,115200n8 console=ttyO0,115200n8 console=ttyAMA0,115200n8\"/set console_bootargs=\"\"/g' work/boot/EFI/BOOT/grub.cfg"
}
PLATFORM_MODIFY_HOOKS+=(remove_console_bootargs)

And yes I know my sed is just awful :slight_smile:

I still got a few issue like mmcblk changing name randomly at each boot and I have to do my homework on partuuid usage (will make another post) but I’ll post this device integration when I’ll be ok with it.

Thanks for the support.