mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-07-19 20:59:41 +02:00

Add irqbalanced.service file for systemd support. Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Jianchuan Wang <jianchuan.wang@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
48 lines
1.5 KiB
PHP
48 lines
1.5 KiB
PHP
#
|
|
# Copyright (C) 2013 Wind River Systems, Inc.
|
|
#
|
|
SUMMARY = "IRQ allocation daemon"
|
|
DESCRIPTION = "A daemon to balance interrupts across multiple CPUs, \
|
|
which can lead to better performance and IO balance on SMP systems."
|
|
|
|
HOMEPAGE = "http://code.google.com/p/irqbalance/"
|
|
BUGTRACKER = "http://code.google.com/p/irqbalance/issues/list"
|
|
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \
|
|
file://irqbalance.c;beginline=6;endline=8;md5=b94e153694672307b503b1bc87dc9e24 \
|
|
"
|
|
|
|
DEPENDS = "glib-2.0"
|
|
|
|
INITSCRIPT_NAME = "irqbalanced"
|
|
INITSCRIPT_PARAMS = "defaults"
|
|
|
|
inherit autotools update-rc.d pkgconfig systemd
|
|
|
|
SYSTEMD_PACKAGES = "irqbalance"
|
|
SYSTEMD_SERVICE_irqbalance = "irqbalanced.service"
|
|
|
|
EXTRA_OECONF = "--program-transform-name= \
|
|
"
|
|
|
|
# let the recipes or appends define options
|
|
#
|
|
PACKAGECONFIG ?= ""
|
|
|
|
# enable,disable,depends,rdepends
|
|
#
|
|
PACKAGECONFIG[numa] = "--enable-numa,--disable-numa,numactl,"
|
|
PACKAGECONFIG[libcap-ng] = "--with-libcap-ng,--without-libcap-ng,libcap-ng,"
|
|
|
|
do_install () {
|
|
oe_runmake 'DESTDIR=${D}' install
|
|
install -d ${D}${sysconfdir}/init.d
|
|
cat ${S}/irqbalance.init | sed -e's,/usr/sbin,${sbindir},g' > ${D}${sysconfdir}/init.d/irqbalanced
|
|
chmod 755 ${D}${sysconfdir}/init.d/irqbalanced
|
|
|
|
install -d ${D}${systemd_unitdir}/system
|
|
install -m 0644 ${WORKDIR}/irqbalanced.service ${D}${systemd_unitdir}/system
|
|
sed -i -e 's,@SBINDIR@,${sbindir},g' ${D}${systemd_unitdir}/system/irqbalanced.service
|
|
}
|