diff options
author | Alexander Kanavin <alex@linutronix.de> | 2024-06-19 10:59:43 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-06-24 12:43:40 +0100 |
commit | d14304384ebaab9efcbfb5146381dbe4578db52c (patch) | |
tree | 4ceb6e0f9b853a25e5ed1b7bffc0ede10a8c83fb | |
parent | 757d04f8ec582f32de1f0ae61336ffa7ee2390d0 (diff) | |
download | poky-d14304384ebaab9efcbfb5146381dbe4578db52c.tar.gz |
perf: drop newt from tui build requirements
As the comment says this was used by very old kernels
(pre 3.10), and slang has been the only option for a
long time. Also, correct the option to disable slang TUI.
(From OE-Core rev: a36a84490b943e6f0638c0430ad1eac7740e9be3)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-kernel/perf/perf.bb | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/meta/recipes-kernel/perf/perf.bb b/meta/recipes-kernel/perf/perf.bb index 11fa917649..058f887b86 100644 --- a/meta/recipes-kernel/perf/perf.bb +++ b/meta/recipes-kernel/perf/perf.bb | |||
@@ -14,10 +14,7 @@ PACKAGECONFIG ??= "python tui libunwind libtraceevent" | |||
14 | PACKAGECONFIG[dwarf] = ",NO_DWARF=1" | 14 | PACKAGECONFIG[dwarf] = ",NO_DWARF=1" |
15 | PACKAGECONFIG[perl] = ",NO_LIBPERL=1,perl" | 15 | PACKAGECONFIG[perl] = ",NO_LIBPERL=1,perl" |
16 | PACKAGECONFIG[python] = ",NO_LIBPYTHON=1,python3 python3-setuptools-native" | 16 | PACKAGECONFIG[python] = ",NO_LIBPYTHON=1,python3 python3-setuptools-native" |
17 | # gui support was added with kernel 3.6.35 | 17 | PACKAGECONFIG[tui] = ",NO_SLANG=1,slang" |
18 | # since 3.10 libnewt was replaced by slang | ||
19 | # to cover a wide range of kernel we add both dependencies | ||
20 | PACKAGECONFIG[tui] = ",NO_NEWT=1,libnewt slang" | ||
21 | PACKAGECONFIG[libunwind] = ",NO_LIBUNWIND=1 NO_LIBDW_DWARF_UNWIND=1,libunwind" | 18 | PACKAGECONFIG[libunwind] = ",NO_LIBUNWIND=1 NO_LIBDW_DWARF_UNWIND=1,libunwind" |
22 | PACKAGECONFIG[libnuma] = ",NO_LIBNUMA=1" | 19 | PACKAGECONFIG[libnuma] = ",NO_LIBNUMA=1" |
23 | PACKAGECONFIG[bfd] = ",NO_LIBBFD=1" | 20 | PACKAGECONFIG[bfd] = ",NO_LIBBFD=1" |