I am using LS1043ardb, I want to generate rootfs for my target board with my custom application to run with some packages.
I am using bitbake fsl-image-mfgtool for generating the rootfs. I have successfully added the following packages in fsl-image-mfgtool.bb file .
IMAGE_INSTALL:append = " \
packagegroup-core-ssh-dropbear \
packagegroup-fsl-mfgtools \
udev-extraconf \
file \
parted \
lmsensors-sensors \
restool \
fmc \
sudo \
curl \
net-snmp-server ppp net-snmp-libs procps quagga ethtool xinetd iproute2 iproute2-tc \
bridge-utils iptables mtd-utils \
merge-files \
"
but when I am adding merge-files, I am getting the following error
ERROR: merge-files-1.0-r0 do_package_qa: QA Issue: merge-files: Recipe inherits the allarch class, but has packaged architecture-specific binaries [arch]
ERROR: merge-files-1.0-r0 do_package_qa: QA Issue: /home/root/hello contained in package merge-files requires libc.so.6(GLIBC_2.2.5)(64bit), but no providers found in RDEPENDS:merge-files? [file-rdeps]
ERROR: merge-files-1.0-r0 do_package_qa: QA Issue: /home/root/hello contained in package merge-files requires libc.so.6()(64bit), but no providers found in RDEPENDS:merge-files? [file-rdeps]
ERROR: merge-files-1.0-r0 do_package_qa: Fatal QA errors were found, failing task.
ERROR: Logfile of failure stored in: /home/icomm/distro/build_ls1043ardb/tmp/work/all-fsl-linux/merge-files/1.0-r0/temp/log.do_package_qa.158872
ERROR: Task (/home/icomm/distro/sources/meta-freescale/recipes-extended/merge-files/merge-files_1.0.bb:do_package_qa) failed with exit code '1'
NOTE: Tasks Summary: Attempted 3515 tasks of which 3514 didn't need to be rerun and 1 failed.
Summary: 1 task failed:
/home/icomm/distro/sources/meta-freescale/recipes-extended/merge-files/merge-files_1.0.bb:do_package_qa
Summary: There were 4 ERROR messages, returning a non-zero exit code.
Please help me to solve this issue