mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-08-21 16:29:14 +02:00

Please see https://git.yoctoproject.org/poky/commit/?id=4dd321f8b83afecd962393101b2a6861275b5265 for what changes are needed, and sed commands that can be used to make them en masse. I've verified that bitbake -c patch world works with these, but did not run a world build; the majority of recipes shouldn't need further fixups, but if there are some that still fall out, they can be fixed in followups. Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
24 lines
617 B
BlitzBasic
24 lines
617 B
BlitzBasic
SUMMARY = "cui/gui tool for tuning of running processes"
|
|
HOMEPAGE = "https://rt.wiki.kernel.org/index.php/Tuna"
|
|
LICENSE = "GPL-2.0-only"
|
|
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/GPL-2.0-only;md5=801f80980d171dd6425610833a22dbe6"
|
|
|
|
SRC_URI = "git://git.kernel.org/pub/scm/utils/tuna/tuna.git;branch=main"
|
|
|
|
SRCREV = "b972b8ce386c29bcbcd45029a617db3db9e5b6ca"
|
|
|
|
|
|
RDEPENDS:${PN} += " \
|
|
python3-io \
|
|
python3-linux-procfs \
|
|
python3-logging \
|
|
python3-six \
|
|
"
|
|
|
|
inherit setuptools3
|
|
|
|
do_install:append() {
|
|
install -m 0755 -d ${D}${bindir}
|
|
install -m 0755 ${S}/tuna-cmd.py ${D}${bindir}/tuna
|
|
}
|