diff options
Diffstat (limited to 'meta/recipes-extended/lsb/lsbinitscripts_9.47.bb')
-rw-r--r-- | meta/recipes-extended/lsb/lsbinitscripts_9.47.bb | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/meta/recipes-extended/lsb/lsbinitscripts_9.47.bb b/meta/recipes-extended/lsb/lsbinitscripts_9.47.bb new file mode 100644 index 0000000000..9013a9ba57 --- /dev/null +++ b/meta/recipes-extended/lsb/lsbinitscripts_9.47.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.47.tar.bz2/93a50efd8d262f3bceb0d15c8b8b02ab/initscripts-9.47.tar.bz2 \ | ||
10 | file://functions.patch \ | ||
11 | " | ||
12 | |||
13 | SRC_URI[md5sum] = "93a50efd8d262f3bceb0d15c8b8b02ab" | ||
14 | SRC_URI[sha256sum] = "6380e00f677b55ee73eee8a21f68bf717ab614cef09cb4a379aca0d7c717f57e" | ||
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 0755 ${S}/rc.d/init.d/functions ${D}${sysconfdir}/init.d/functions | ||
30 | } | ||