mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-02-16 02:50:49 +00:00
open-isns: add sysvinit support
It's not mandatory to depend on systemd for open-isns, the sysvinit script is also provided in open-isns source code, so add it to support sysvinit and remove the distro_features_check. Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
This commit is contained in:
committed by
Joe MacDonald
parent
a99be704e2
commit
aa4bed65e4
@@ -11,7 +11,7 @@ LICENSE = "GPLv2+ & LGPLv2+"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=321bf41f280cf805086dd5a720b37785"
|
||||
SECTION = "net"
|
||||
|
||||
DEPENDS = "openssl systemd"
|
||||
DEPENDS = "openssl"
|
||||
|
||||
SRC_URI = "git://github.com/open-iscsi/open-isns \
|
||||
file://0001-util.h-endian.h-is-available-on-musl-on-linux.patch \
|
||||
@@ -21,9 +21,7 @@ SRCREV ?= "09954404e948e41eb0fce8e28836018b4ce3d20d"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
inherit systemd autotools-brokensep distro_features_check
|
||||
# depends on systemd
|
||||
REQUIRED_DISTRO_FEATURES = "systemd"
|
||||
inherit systemd autotools-brokensep update-rc.d
|
||||
|
||||
EXTRA_OECONF = " --prefix=${prefix} --enable-shared"
|
||||
EXTRA_OEMAKE += "SYSTEMDDIR=${D}${systemd_unitdir}/system"
|
||||
@@ -31,6 +29,12 @@ EXTRA_OEMAKE += "SYSTEMDDIR=${D}${systemd_unitdir}/system"
|
||||
do_install_append () {
|
||||
oe_runmake INCDIR=${D}${includedir}/libisns/ install_hdrs
|
||||
oe_runmake LIBDIR=${D}${libdir} install_lib
|
||||
|
||||
install -D -m 755 ${S}/etc/openisns.init ${D}${sysconfdir}/init.d/openisns
|
||||
sed -i 's|daemon isnsd|start-stop-daemon --start --quiet --oknodo --exec ${sbindir}/isnsd --|' \
|
||||
${D}${sysconfdir}/init.d/openisns
|
||||
}
|
||||
|
||||
FILES_${PN} += "${libdir} ${systemd_unitdir}"
|
||||
|
||||
INITSCRIPT_NAME = "openisns"
|
||||
|
||||
Reference in New Issue
Block a user