Hello! I am trying to build a simple yocto build with core-image-sato. Everything is perfect and the image is bootable until I add mender to the build. When building with mender, all grub options disappear except one - to go to the firmware settings.
There are the layers:
BBLAYERS ?= " \
../poky/meta \
../poky/meta-poky \
../poky/meta-yocto-bsp \
../poky/meta-intel \
../poky/meta-mender/meta-mender-core \
"
Should I just include the meta-mender-demo layer? I think it could be something because of the layer priorities?
layer path priority
==========================================================================
meta /poky/meta 5
meta-poky /poky/meta-poky 5
meta-yocto-bsp /poky/meta-yocto-bsp 5
meta-intel /poky/meta-intel 5
meta-mender-core /poky/meta-mender/meta-mender-core 6
I would even disable any options from grub menu. Just to load straight to the system. This way psplash would hide all system logs, right?
All of the layers are from their dunfell branch. Seems that’s the latest which mender supports.
Thanks for the help!