mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-17 12:41:58 +02:00
Now, cpulimit recipe is put under recipes-support. Binary will be
installed by the recipe under /usr/sbin
# cpulimit -h
Usage: cpulimit [OPTIONS...] TARGET
OPTIONS
-l, --limit=N percentage of cpu allowed from 0
to 100
(required)
-v, --verbose show control statistics
-z, --lazy exit if there is no target
process, or
if it dies
-i, --include-children limit also the children
processes
-h, --help display this help and exit
TARGET must be exactly one of these:
-p, --pid=N pid of the process (implies -z)
-e, --exe=FILE name of the executable program
file or
path name
COMMAND [ARGS] run this command and limit it
(implies
-z)
Report bugs to <marlon...@hotmail.com>.
Signed-off-by: Bassem Boubaker <bassem.boubaker@actia.fr>
[ Changes by Portia
- Fix build issue, deprecated and missing includes
- Add branch to git repo in SRC_URI
- Update LICENSE to GPL-2.0-or-later
]
Signed-off-by: Portia <stephensportia@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
23 lines
638 B
BlitzBasic
23 lines
638 B
BlitzBasic
SUMMARY = "cpulimit is a tool which limits the CPU usage of a process"
|
|
HOMEPAGE = "http://cpulimit.sourceforge.net"
|
|
LICENSE = "GPL-2.0-or-later"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=86c1c0d961a437e529db93aa3bb32dc4"
|
|
SRCREV ?= "f4d2682804931e7aea02a869137344bb5452a3cd"
|
|
|
|
SRC_URI = "git://g...@github.com/opsengine/cpulimit.git;protocol=https;branch=master \
|
|
file://0001-Remove-sys-sysctl.h-and-add-missing-libgen.h-include.patch \
|
|
"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
do_compile() {
|
|
oe_runmake all
|
|
}
|
|
do_install() {
|
|
install -d ${D}${sbindir}
|
|
install -m 0755 ${B}/src/${PN} ${D}${sbindir}/
|
|
}
|
|
|
|
CFLAGS += "${LDFLAGS}"
|
|
|