How to find the current version of Yocto kernel that I am using to build the components. There is a version for poky. But i want to know the Yocto kernel version.
bitbake -e virtual/kernel | grep "^PV"
bitbake -e virtual/kernel | grep "^PN"
And if you have any kernel you want to know the version, type bitbake -e <kernel_name> | grep "^PV"
I hope this will be helpfull