Add a customised shell script to be invked after board bootso #yocto
Raghu Icecraft Software Trainings
Hello,
I have written a shell script to change the password for my root user.
I want to execute this script file after board boots
So i created .bb file as follows:
SUMMARY = "Initscript for enabling root pwd"
LICENSE = "GPLv2" #LIC_FILES_CHKSUM = "file://${WORKDIR}/root_vpd; PR = "r0" SRC_URI = "file://root_vpd" S = "${WORKDIR}" do_install() { install -d ${D}${sysconfdir} install -d ${D}${sysconfdir}/init.d install -m 0755 root_vpd ${D}${sysconfdir}/init.d } inherit update-rc.d allarch INITSCRIPT_NAME = "root-vpd" INITSCRIPT_PARAMS = "start 99 5 2 . stop 20 0 1 6 ." BUt when i do bitbake of above recipew i get this error :
Parsing recipes: 100% |#############################
Parsing of 1992 .bb files complete (1982 cached, 10 parsed). 4688 targets, 384 skipped, 1 masked, 0 errors. ERROR: Nothing PROVIDES pwd.bb Thanks,
raghu
|
|