diff options
Diffstat (limited to 'meta/recipes-extended/lsb/lsbinitscripts_9.63.bb')
| -rw-r--r-- | meta/recipes-extended/lsb/lsbinitscripts_9.63.bb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/meta/recipes-extended/lsb/lsbinitscripts_9.63.bb b/meta/recipes-extended/lsb/lsbinitscripts_9.63.bb new file mode 100644 index 0000000000..b9554647e1 --- /dev/null +++ b/meta/recipes-extended/lsb/lsbinitscripts_9.63.bb | |||
| @@ -0,0 +1,31 @@ | |||
| 1 | SUMMARY = "SysV init scripts which are only used in an LSB image" | ||
| 2 | SECTION = "base" | ||
| 3 | LICENSE = "GPLv2" | ||
| 4 | DEPENDS = "popt glib-2.0" | ||
| 5 | |||
| 6 | LIC_FILES_CHKSUM = "file://COPYING;md5=ebf4e8b49780ab187d51bd26aaa022c6" | ||
| 7 | |||
| 8 | S="${WORKDIR}/initscripts-${PV}" | ||
| 9 | SRC_URI = "http://pkgs.fedoraproject.org/repo/pkgs/initscripts/initscripts-9.63.tar.bz2/1ae0f15e54a904ac30185548d43daa1c/initscripts-9.63.tar.bz2 \ | ||
| 10 | file://functions.patch \ | ||
| 11 | " | ||
| 12 | |||
| 13 | SRC_URI[md5sum] = "1ae0f15e54a904ac30185548d43daa1c" | ||
| 14 | SRC_URI[sha256sum] = "39474c3a83e2e03077e27bf9418a4296651c421cf0ba7672e67fe2e3567b36e1" | ||
| 15 | |||
| 16 | inherit update-alternatives | ||
| 17 | |||
| 18 | ALTERNATIVE_PRIORITY = "100" | ||
| 19 | ALTERNATIVE_${PN} = "functions" | ||
| 20 | ALTERNATIVE_LINK_NAME[functions] = "${sysconfdir}/init.d/functions" | ||
| 21 | |||
| 22 | # Since we are only taking the patched version of functions, no need to | ||
| 23 | # configure or compile anything so do not execute these | ||
| 24 | do_configure[noexec] = "1" | ||
| 25 | do_compile[noexec] = "1" | ||
| 26 | |||
| 27 | do_install(){ | ||
| 28 | install -d ${D}${sysconfdir}/init.d/ | ||
| 29 | install -m 0644 ${S}/rc.d/init.d/functions ${D}${sysconfdir}/init.d/functions | ||
| 30 | sed -i 's,${base_bindir}/mountpoint,${bindir}/mountpoint,g' ${D}${sysconfdir}/init.d/functions | ||
| 31 | } | ||
