diff options
Diffstat (limited to 'meta/recipes-devtools/run-postinsts/run-postinsts_1.0.bb')
| -rw-r--r-- | meta/recipes-devtools/run-postinsts/run-postinsts_1.0.bb | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/meta/recipes-devtools/run-postinsts/run-postinsts_1.0.bb b/meta/recipes-devtools/run-postinsts/run-postinsts_1.0.bb new file mode 100644 index 0000000000..5dd1709ff5 --- /dev/null +++ b/meta/recipes-devtools/run-postinsts/run-postinsts_1.0.bb | |||
| @@ -0,0 +1,28 @@ | |||
| 1 | DESCRIPTION = "Run postinstall scripts on device" | ||
| 2 | SECTION = "devel" | ||
| 3 | PR = "r9" | ||
| 4 | LICENSE = "MIT" | ||
| 5 | LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \ | ||
| 6 | file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" | ||
| 7 | |||
| 8 | SRC_URI = "file://run-postinsts" | ||
| 9 | |||
| 10 | INITSCRIPT_NAME = "run-postinsts" | ||
| 11 | INITSCRIPT_PARAMS = "start 98 S ." | ||
| 12 | |||
| 13 | inherit update-rc.d | ||
| 14 | |||
| 15 | do_configure() { | ||
| 16 | : | ||
| 17 | } | ||
| 18 | |||
| 19 | do_compile () { | ||
| 20 | : | ||
| 21 | } | ||
| 22 | |||
| 23 | do_install() { | ||
| 24 | install -d ${D}${sysconfdir}/init.d/ | ||
| 25 | install -m 0755 ${WORKDIR}/run-postinsts ${D}${sysconfdir}/init.d/ | ||
| 26 | |||
| 27 | sed -i -e 's:#SYSCONFDIR#:${sysconfdir}:g' ${D}${sysconfdir}/init.d/run-postinsts | ||
| 28 | } | ||
