mirror of
https://git.yoctoproject.org/poky
synced 2026-05-22 17:27:54 +02:00
1. Upgrade lsbinitscripts from 9.68 to 9.72 2. Rebase the following patch file. functions.patch (From OE-Core rev: be117d6ea79882d10cce4c061385832e26d23bff) Signed-off-by: Fan Xin <fan.xin@jp.fujitsu.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
34 lines
1.3 KiB
BlitzBasic
34 lines
1.3 KiB
BlitzBasic
SUMMARY = "SysV init scripts which are only used in an LSB image"
|
|
SECTION = "base"
|
|
LICENSE = "GPLv2"
|
|
DEPENDS = "popt glib-2.0"
|
|
|
|
RDEPENDS_${PN} += "util-linux"
|
|
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=ebf4e8b49780ab187d51bd26aaa022c6"
|
|
|
|
S="${WORKDIR}/initscripts-${PV}"
|
|
SRC_URI = "http://pkgs.fedoraproject.org/repo/pkgs/initscripts/initscripts-${PV}.tar.gz/sha512/b6ed38f9576e9227c2ecf047e2d60e1e872f40d51d13861b0c91dddb282f10f7e6b79706a4d1435d7a57a14a0b73a1b71541cfe44c00e8e03ef96b08de19ec32/initscripts-${PV}.tar.gz \
|
|
file://functions.patch;striplevel=2 \
|
|
file://0001-functions-avoid-exit-1-which-causes-init-scripts-to-.patch \
|
|
"
|
|
|
|
SRC_URI[md5sum] = "d6c798f40dceb117e12126d94cb25a9a"
|
|
SRC_URI[sha256sum] = "1793677bdd1f7ee4cb00878ce43346196374f848a4c8e4559e086040fc7487db"
|
|
|
|
inherit update-alternatives
|
|
|
|
ALTERNATIVE_PRIORITY = "100"
|
|
ALTERNATIVE_${PN} = "functions"
|
|
ALTERNATIVE_LINK_NAME[functions] = "${sysconfdir}/init.d/functions"
|
|
|
|
# Since we are only taking the patched version of functions, no need to
|
|
# configure or compile anything so do not execute these
|
|
do_configure[noexec] = "1"
|
|
do_compile[noexec] = "1"
|
|
|
|
do_install(){
|
|
install -d ${D}${sysconfdir}/init.d/
|
|
install -m 0644 ${S}/rc.d/init.d/functions ${D}${sysconfdir}/init.d/functions
|
|
}
|