Hello,
Before of set your bitbake imx-image-full, please try to do bitbake u-boot-imx, then bitbake imx-image-full, I tested with core image and it is working without any issue.
Also, you are right, I forgot to add the layers in my last steps to Yocto.
Try:
$bitbake-layers create-layer meta-custom
$bitbake-layers add-layer meta-custom
$mkdir -p meta-custom/recipes-bsp/u-boot/u-boot-imx
$nano meta-custom/recipes-bsp/u-boot/u-boot-imx_%.bbappend
Paste below in the nano file:
FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:"
SRC_URI += "file://my-uboot-config.cfg"
do_configure:prepend() {
cat ${WORKDIR}/my-uboot-config.cfg >> ${B}/.config
}
Then,
$nano meta-custom/recipes-bsp/u-boot/u-boot-imx/my-uboot-config.cfg
And paste:
CONFIG_BOOTDELAY=0
Finally please do bitbake u-boot-imx and then bitbake imx-image-full.
Best regards,
Salas.