Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1 | # |
| 2 | # Whether the platform supports kernel tracing |
| 3 | # |
| 4 | LTTNGMODULES = "lttng-modules" |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 5 | LTTNGMODULES:arc = "" |
| 6 | LTTNGMODULES:riscv64 = "" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 7 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 8 | COMPATIBLE_HOST:riscv64:pn-lttng-modules = "null" |
| 9 | COMPATIBLE_HOST:arc:pn-lttng-modules = "null" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 10 | |
| 11 | # Whether the platform supports userspace tracing |
| 12 | # lttng-ust uses sched_getcpu() which is not there on for some platforms. |
| 13 | LTTNGUST = "lttng-ust" |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 14 | LTTNGUST:arc = "" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 15 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 16 | COMPATIBLE_HOST:arc:pn-lttng-ust = "null" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 17 | |
Andrew Geissler | 87f5cff | 2022-09-30 13:13:31 -0500 | [diff] [blame] | 18 | # Whether the platform supports lttng-tools |
| 19 | # lttng-tools requires SYS_ppoll and SYS_pselect6 which are not supported on riscv32. |
| 20 | # It's also turned off for riscv32 in meta-riscv. See https://github.com/riscv/meta-riscv/blob/master/conf/layer.conf |
| 21 | COMPATIBLE_HOST:riscv32:pn-lttng-tools = "null" |