diff options
Diffstat (limited to 'meta/recipes-extended/lsb/lsbinitscripts_9.50.bb')
-rw-r--r-- | meta/recipes-extended/lsb/lsbinitscripts_9.50.bb | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/meta/recipes-extended/lsb/lsbinitscripts_9.50.bb b/meta/recipes-extended/lsb/lsbinitscripts_9.50.bb new file mode 100644 index 0000000000..3071b6ae2b --- /dev/null +++ b/meta/recipes-extended/lsb/lsbinitscripts_9.50.bb | |||
@@ -0,0 +1,30 @@ | |||
1 | DESCRIPTION = "SysV init scripts which only is 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.50.tar.bz2/7252642952d33be10cc00beb862c7b7b/initscripts-9.50.tar.bz2 \ | ||
10 | file://functions.patch \ | ||
11 | " | ||
12 | |||
13 | SRC_URI[md5sum] = "7252642952d33be10cc00beb862c7b7b" | ||
14 | SRC_URI[sha256sum] = "1d8fb32b9a7de0c24437acdab27d71deb58c05314f81978ec2aea574fba862e0" | ||
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 | } | ||