From 5283be2305b157b3fbc61b5f2cce0c65100c9b4a Mon Sep 17 00:00:00 2001 From: Kang Kai Date: Wed, 21 Nov 2012 17:38:43 +0800 Subject: [PATCH] chkconfig: add link files install_initd and remove_initd Add link files ${libdir}/lsb/{install,remove}_initd that they are required by LSB tests. They were created by package lsbsetup, but lsbsetup was dropped, so create them in chkconfig. (From OE-Core rev: 268ede582e7b68854965b29a57e865b5fc7deb04) Signed-off-by: Kang Kai Signed-off-by: Saul Wold Signed-off-by: Richard Purdie --- meta/recipes-extended/chkconfig/chkconfig_1.3.58.bb | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/meta/recipes-extended/chkconfig/chkconfig_1.3.58.bb b/meta/recipes-extended/chkconfig/chkconfig_1.3.58.bb index 0f6398f57e..fd7bd1a111 100644 --- a/meta/recipes-extended/chkconfig/chkconfig_1.3.58.bb +++ b/meta/recipes-extended/chkconfig/chkconfig_1.3.58.bb @@ -12,7 +12,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=5574c6965ae5f583e55880e397fbb018" DEPENDS = "libnewt popt" -PR = "r3" +PR = "r4" SRC_URI = "http://fedorahosted.org/releases/c/h/chkconfig/${BPN}-${PV}.tar.bz2" @@ -30,3 +30,11 @@ do_install_append() { mkdir -p ${D}${sysconfdir}/chkconfig.d rm -f ${D}${sbindir}/update-alternatives } + +do_install_append_linuxstdbase() { + install -d ${D}${libdir}/lsb/ + ln -sf ${base_sbindir}/chkconfig ${D}/${libdir}/lsb/install_initd + ln -sf ${base_sbindir}/chkconfig ${D}/${libdir}/lsb/remove_initd +} + +FILES_${PN}_append_linuxstdbase += "${libdir}/lsb"