| 123456789101112131415161718192021222324252627 |
- SUMMARY = "Different startup scripts"
- SECTION = "base"
- PR = "r0"
- LICENSE = "MIT"
- LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58"
- SRC_URI = "file://rcS.swupdate \
- "
- S = "${WORKDIR}"
- do_install () {
- install -d ${D}/${sysconfdir}
- install -d ${D}/${sysconfdir}/init.d
- rm -f ${D}${sysconfdir}/init.d/rcS
- install -m 755 ${S}/rcS.swupdate ${D}${sysconfdir}/init.d
- }
- PACKAGES = "${PN}"
- FILES_${PN} = "/"
- PACKAGE_ARCH = "${MACHINE_ARCH}"
- CONFFILES_${PN} = ""
- INITSCRIPT_NAME = "swupdate"
- INITSCRIPT_PARAMS = "defaults 70"
|