[Edited Message Follows]

I am trying to copy a script to /etc/init.d/S90start_inv and create a soft link 
to it at /etc/rc5.d/S90start.  The aim is to start few services in the startup. 
 But I am facing the following error: *

Error:*
startup-1.0-r0 do_package_qa: QA Issue: /etc/init.d/S90start_inv contained in 
package startup requires /bin/bash, but no providers found in RDEPENDS:startup? 
[file-rdeps]

*startup.bb*
DESCRIPTON = "Startup scripts"
LICENSE = "MIT"

PR = "r0"

RDEPENDS_${PN} += "bash"
DEPENDS += " bash"

SRC_URI = "             \
file://S90start      \
"

do_install() {
install -d ${D}${sysconfdir}/init.d
install -m 0755 ${WORKDIR}/S90start  ${D}${sysconfdir}/init.d/S90start_inv
ln -sf ../init.d/S90start_inv     ${D}${sysconfdir}/rc5.d/S90Start
}

FILES_${PN} = "${sysconfdir}/init.d"
FILES_${PN} += " ${sysconfdir}/rc5.d"

*S90start:
* #!/bin/bash
*...
* #Few lines of shell code.

Can any one point out what am i missing?
*

*
-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#74): https://lists.yoctoproject.org/g/yocto-bsp/message/74
Mute This Topic: https://lists.yoctoproject.org/mt/98553246/21656
Mute #yocto:https://lists.yoctoproject.org/g/yocto-bsp/mutehashtag/yocto
Group Owner: [email protected]
Unsubscribe: https://lists.yoctoproject.org/g/yocto-bsp/unsub 
[[email protected]]
-=-=-=-=-=-=-=-=-=-=-=-

Reply via email to