summaryrefslogtreecommitdiffstats
path: root/meta/recipes-kernel/perf/perf-features.inc
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2017-01-16 13:11:10 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-01-19 22:47:21 +0000
commit73adcf1b668f990624411060da253d84f53eb1ee (patch)
tree3fe2100621620741e6eed341228f3b295e8acea2 /meta/recipes-kernel/perf/perf-features.inc
parent3b262f458c0324569bb0a130ef895e721757ff3e (diff)
downloadpoky-73adcf1b668f990624411060da253d84f53eb1ee.tar.gz
perf: use PACKAGECONFIG instead of hand-rolled logic
PERF_FEATURES_ENABLE and perf_feature_enabled() was basically a poor man's clone of PACKAGECONFIG, without the automatic handling of dependencies and configure options. As part of the port to PACKAGECONFIG the options have been changed to remove the perf- prefix, but are otherwise unchanged. Also remove BUILDPERF_libc_uclibc assignment as nothing in the metadata uses a BUILDPERF variable. (From OE-Core rev: 33d05772c30036e8d2bb2dc8928989bf98d388f1) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel/perf/perf-features.inc')
-rw-r--r--meta/recipes-kernel/perf/perf-features.inc22
1 files changed, 0 insertions, 22 deletions
diff --git a/meta/recipes-kernel/perf/perf-features.inc b/meta/recipes-kernel/perf/perf-features.inc
deleted file mode 100644
index a4402cc50b..0000000000
--- a/meta/recipes-kernel/perf/perf-features.inc
+++ /dev/null
@@ -1,22 +0,0 @@
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") or ""
20 if feature in enabled_features:
21 return trueval
22 return falseval