summaryrefslogtreecommitdiffstats
path: root/rules/schedutils.in
diff options
context:
space:
mode:
authorJochen Frieling <j.frieling@pengutronix.de>2008-06-04 13:47:27 +0000
committerJochen Frieling <j.frieling@pengutronix.de>2008-06-04 13:47:27 +0000
commit757d298f67f737c93d1d0a56d465e3cba7f4e31f (patch)
treec8e487156c653b2d5005f66c781a3af15d0eaf1e /rules/schedutils.in
parentf66c6df03854d20ea74e342fac7f84f41b7713a2 (diff)
downloadptxdist-757d298f67f737c93d1d0a56d465e3cba7f4e31f.tar.gz
ptxdist-757d298f67f737c93d1d0a56d465e3cba7f4e31f.tar.xz
* r*..s*.in: turn bool into tristate for package selections
git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-trunk@8316 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/schedutils.in')
-rw-r--r--rules/schedutils.in9
1 files changed, 4 insertions, 5 deletions
diff --git a/rules/schedutils.in b/rules/schedutils.in
index bf725d9ae..3f38903c1 100644
--- a/rules/schedutils.in
+++ b/rules/schedutils.in
@@ -1,7 +1,7 @@
menuconfig SCHEDUTILS
- bool
- prompt "schedutils "
+ tristate
+ prompt "schedutils "
help
These are the Linux scheduler utilities - schedutils for short. These programs
take advantage of the scheduler family of syscalls that Linux implements across
@@ -9,25 +9,24 @@ menuconfig SCHEDUTILS
parameters such as CPU affinity and real-time attributes. The standard UNIX
utilities do not provide support for these interfaces -- thus this package.
+if SCHEDUTILS
config SCHEDUTILS_CHRT
bool
prompt "chrt"
- depends on SCHEDUTILS
help
chrt manipulates the real-time attributes of a process.
config SCHEDUTILS_IONICE
bool
prompt "ionice"
- depends on SCHEDUTILS
help
ionice gets/sets the program io scheduling class and priority.
config SCHEDUTILS_TASKSET
bool
prompt "taskset"
- depends on SCHEDUTILS
help
taskset retrieves or sets a process's CPU affinity.
+endif