Hello,
I am trying to build a simple Yocto image using EFIBootguard.
I am using Yocto version "zeus". Steps are simply:
$ git clone -b zeus git://
git.yoctoproject.org/poky
$ cd poky
$ git clone
https://github.com/siemens/meta-efibootguard.git
Then edit local.conf to add:
MACHINE ?= "genericx86-64"
EFI_PROVIDER="efibootguard"
Edit bblayers.conf to add the meta-efibootguard layer
Add my own recipe with the suggested .wic image info
Then run : bitbake core-image-minimal
On build I get:
Exception: FileNotFoundError: [Errno 2] No such file or directory:
'/home/tom/testyocto/poky/build/tmp/work/genericx86_64-poky-linux/core-image-minimal/1.0-r0/recipe-sysroot-native/usr/bin/bg_setenv'
It seems like bg_setenv is not being installed correctly - is there a
dependency that needs to be added somewhere?
Thanks,
Tom