diff options
Diffstat (limited to 'meta/recipes-kernel/perf/perf-features.inc')
-rw-r--r-- | meta/recipes-kernel/perf/perf-features.inc | 22 |
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 @@ | |||
1 | PERF_FEATURES_ENABLE ?= "perf-scripting perf-tui" | ||
2 | |||
3 | def 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 | ||