mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-15 16:07:26 +00:00
58a923c968
Cpuset is a Python application that forms a wrapper around the
standard Linux filesystem calls to make using the cpusets facilities
in the Linux kernel easier. This can be used on linux realtime or
standard linux
Example
cset shield --cpu 2-3
echo c > /proc/irq/287/smp_affinity
irq=`ps | grep -m 1 "irq/287" | awk '{ print $1 }'`
cset shield -s -p $irq --force
chrt -f -p 75 $irq
Signed-off-by: Michael Trimarchi <michael@amarulasolutions.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
14 lines
413 B
BlitzBasic
14 lines
413 B
BlitzBasic
SUMMARY = "Cpuset manipulation tool"
|
|
HOMEPAGE = "https://github.com/SUSE/cpuset"
|
|
LICENSE = "GPL-2.0-only"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
|
|
|
|
SRC_URI = "git://github.com/SUSE/cpuset.git;protocol=https;branch=master"
|
|
|
|
SRCREV = "4f80263208935f0df4f616cf9d8cb7285599a670"
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit setuptools3
|
|
|
|
RDEPENDS:${PN} += "python3-core python3-logging python3-pydoc"
|