Zolee K
2018-10-29 09:50:33 UTC
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
}
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
}