I want to add tcpdump into yocto build
I found that I need to add meta-networking
into bblayers.conf
. meta-networking
is apart of meta-openembedded
Following are the steps I followed :
- Downloaded complete
meta-openembedded
:git clone git@github.com:openembedded/meta-openembedded.git
- Checked out to
jethro
branch and confirmed thatmeta-networking/recipes-support/tcpdump/tcpdump_4.7.4.bb
is present - Added
meta-networking
and its dependent packages intobblayers.conf
BBLAYERS
/home/linux/work/yocto/poky/meta-openembedded/meta-oe \
/home/linux/work/yocto/poky/meta-openembedded/meta-networking \
/home/linux/work/yocto/poky/meta-openembedded/meta-python \
- Triggered full build and copied the images onto sdcard.
I am still unable to see tcpdump binary after booting up BBB(Beaglebone black). I am pretty sure I am missing something. I am new to yocto. Any guidance will be very helpful.