I have included meta-selinux
layer in my project source code. As audit
is already present in meta-selinux/recipes-security/audit
, have added this audit recipe to my yocto image by IMAGE_INSTALL_append = " audit"
in machine specific conf file, but when I compile image(core-image-sato
) and flash it on device, I do not see any user space audit process running. I need audit
to figure out SELinux violations and other debugging purpose.
Why 'audit' is not getting installed in yocto image(core-iamge-sato)?
I know I can see SELinux violations messages in /var/log/messages but I want to have user space audit
running on my device so that I can debug better
Thanks for time !!
linux-yocto
as it is enabled by those bbappend files. If I remember correctly, linux-audit patches are integrated from4.18 kernel version
. – Nayfeuname -r
gives me4.14.35-intel-pk-standard
– Raxesh Oriya