receipt.bb can't install into /usr/local in latest V4.0.x OpenSTLinux
Hi,
I have a problem with installing any directory or any files into /usr/local folder.
Here my_receipt.bb
DESCRIPTION = "My receipt"
LICENSE = "BSD-3-Clause"
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/BSD-3-Clause;md5=550794465ba0ec5312d6919e203a55f9"
SRC_URI = "file://reset_led.sh "
S = "${WORKDIR}"
do_configure[noexec] = "1"
do_compile[noexec] = "1"
do_install() {
install -d ${D}${prefix}/local/reset-led
install -m 0755 ${WORKDIR}/reset_led.sh ${D}${prefix}/local/reset-led/
}
FILES:${PN} += "${prefix}/local/reset-led/"In OpenSTLinx, those folders and files go to st-image-userfs...tar.xz.
In /usr/local I can see only demos etc. folders and directories.
The compilation is going well without any errors or warnings. What was missed, and where is the problem?
