I am following document “MaaXBoard-OSM93-Yocto-Development-Guide-6.6.52.pdf”
for “Yocto Linux BSP v6.6.52” from www.tria-technologies.com/.../
to create an image for MaaXBoard-OSM93. The build completes but missing either a
built-in or kernel module nft_queue.ko.
The nft_queue.c file is in the …/maaxboard-osm93/build/tmp/work-shared/maaxboard-osm93/
kernel-source/net/netfilte folder but is not being generated to the nft_queue.ko module.
The same result is also with avnet-image-lite.bb recipe.
I have tried:
Added to linux-imx_6.6.bbappend
FILESEXTRAPATHS:prepend := "${THISDIR}:"
SRC_URI += file://ridev_kernel.cfg
ridev_kernel.cfg file contains
CONFIG_NETFILTER=y
CONFIG_NF_TABLES=y
CONFIG_NF_TABLES_INET=y
CONFIG_NF_TABLES_NETDEV=y
CONFIG_NFT_QUEUE=m
CONFIG_NETFILTER_NETLINK=m
CONFIG_NETFILTER_NETLINK_QUEUE=m
CONFIG_NF_CT_NETLINK=m
Added to avnet-image-full.bb or avnet-image-lite.bb in the
CORE_IMAGE_EXTRA_INSTALL:append section
nftables libnetfilter-queue libnftnl libmnl libnfnetlink kernel-modules
Build Configuration:
BB_VERSION = "2.8.0"
BUILD_SYS = "x86_64-linux"
NATIVELSBSTRING = "universal"
TARGET_SYS = "aarch64-poky-linux"
MACHINE = "maaxboard-osm93"
DISTRO = "fsl-imx-xwayland"
DISTRO_VERSION = "6.6-scarthgap"
TUNE_FEATURES = "aarch64 armv8a crc crypto"
TARGET_FPU = ""
Host OS is Ubuntu 24.04 with docker pull ubuntu:20.04
The missing module is a blocking issue.
Thank you in advance for your help.