Hi all,

I'd like to install my own test.sh script into the image, I created this
recipe file, however I dont know how to have bitbake put the my test.sh
into /etc folder

SUMMARY = "test.sh"
LICENSE = "Z"

SRC_URI = "\
        file://test.sh \
"

do_configure(){
  :
}

do_compile() {
  :
}


do_install() {
    install -d ${D}${sysconfdir}
    install -m 0770 ${WORKDIR}/test.sh ${D}${sysconfdir}/test.sh
}
-- 
_______________________________________________
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto

Reply via email to