summaryrefslogtreecommitdiffstats
path: root/meta/recipes-kernel/perf/perf-features.inc
diff options
context:
space:
mode:
authorTudor Florea <tudor.florea@enea.com>2015-10-09 22:59:03 +0200
committerTudor Florea <tudor.florea@enea.com>2015-10-09 22:59:03 +0200
commit972dcfcdbfe75dcfeb777150c136576cf1a71e99 (patch)
tree97a61cd7e293d7ae9d56ef7ed0f81253365bb026 /meta/recipes-kernel/perf/perf-features.inc
downloadpoky-972dcfcdbfe75dcfeb777150c136576cf1a71e99.tar.gz
initial commit for Enea Linux 5.0 arm
Signed-off-by: Tudor Florea <tudor.florea@enea.com>
Diffstat (limited to 'meta/recipes-kernel/perf/perf-features.inc')
-rw-r--r--meta/recipes-kernel/perf/perf-features.inc22
1 files changed, 22 insertions, 0 deletions
diff --git a/meta/recipes-kernel/perf/perf-features.inc b/meta/recipes-kernel/perf/perf-features.inc
new file mode 100644
index 0000000000..b8859ab7d5
--- /dev/null
+++ b/meta/recipes-kernel/perf/perf-features.inc
@@ -0,0 +1,22 @@
1PERF_FEATURES_ENABLE ?= "perf-scripting perf-tui"
2
3def perf_feature_enabled(feature, trueval, falseval, d):
4 """
5 Check which perf features are enabled.
6
7 The PERF_FEATURES_ENABLE variable lists the perf features to
8 enable. Override it if you want something different from what's
9 listed above, which is the default. If empty, the build won't
10 enable any features (which may be exactly what you want, just a
11 barebones perf without any extra baggage, what you get if you
12 specify an empty feature list).
13
14 Available perf features:
15 perf-scripting: enable support for Perl and Python bindings
16 perf-tui: enable support for the perf TUI (via libnewt)
17
18 """
19 enabled_features = d.getVar("PERF_FEATURES_ENABLE", True) or ""
20 if feature in enabled_features:
21 return trueval
22 return falseval