Hi,
I am working on LX2160ARDB and trying to install some specific packages on it. I am using LLDP 6.1.22 SDK currently. To install u-boot-tools, i2c-tools and lksctp-tools, I tried these 2 ways.
1. Adding in the local.conf file
IMAGE_INSTALL:append = " lksctp-tools u-boot-tools i2c-tools"
2. Adding in the ls-image-main.bb file
IMAGE_INSTALL:append = " lksctp-tools u-boot-tools i2c-tools"
When I build the image ls-image-main in both cases, image is getting built and generating the rootfs tar file. But the binaries related to these packages are nowhere present in the rootfs. Like i2c-tools should have i2cset, i2cget etc and u-boot-tools will have fw_printenv, fw_setenv and lksctp-tools will have checksctp. But none of these can be found anywhere in rootfs.
I can find these recipes in the pn-buildlist when i use bitbake -g ls-image-main
Kindly help me with this issue.
Thanks in Advance
Solved! Go to Solution.
IMAGE_INSTALL:append = " \
${LAYERSCAPE_NETWORK_TOOLS} \
iperf2 \
makedevs lmsensors-sensors \
lksctp-tools lksctp-tools-utils u-boot-tools i2c-tools u-boot-fw-utils \
${LAYERSCAPE_DEMO_SAMPLES} \
"
IMAGE_INSTALL:append = " \
${LAYERSCAPE_NETWORK_TOOLS} \
iperf2 \
makedevs lmsensors-sensors \
lksctp-tools lksctp-tools-utils u-boot-tools i2c-tools u-boot-fw-utils \
${LAYERSCAPE_DEMO_SAMPLES} \
"
This worked but I also added the same in IMAGE_INSTALL:append previously, guess it should be placed before ${LAYERSCAPE_DEMO_SAMPLES}? @yipingwang
Thanks for your information.
You need to add "lksctp-tools-utils" and "u-boot-fw-utils" in the list.