Add CONFIG_POSIX_MQUEUE=y to kernel config

Hello, Following this guide “Build a Reference Image with Yocto Project/OpenEmbedded | Toradex Developer Center” I was able to generate a tezi image that works in my imx6ull colibri.

Now I have to modify the kernel configuration to add CONFIG_POSIX_MQUEUE =y,
I am trying with bitbake menuconfig but it fails.

**$ bitbake linux-yocto -c menuconfig
Loading cache: 100% |############################################| Time: 0:00:01
Loaded 3886 entries from dependency cache.
ERROR: Nothing PROVIDES 'linux-yocto'
linux-yocto was skipped: incompatible with machine colibri-imx6ull (not in COMPATIBLE_MACHINE)
Summary: There was 1 ERROR message shown, returning a non-zero exit code.**

what am I missing?

Hi @Facundogm,

You are trying to build the wrong kernel recipe. You should use virtual/kernel instead of linux-yocto.

Can you please try the following?

bitbake virtual/kernel -c menuconfig

Thanks in advance,
Daniel Morais

bitbake linux-toradex -c menuconfig works fine!