1# Copyright (c) 2023 KNS Group LLC (YADRO) 2# 3# SPDX-License-Identifier: Apache-2.0 4 5config PROFILING_PERF 6 bool "Perf support" 7 depends on !SMP 8 depends on SHELL 9 depends on PROFILING_PERF_HAS_BACKEND 10 help 11 Enable perf shell command. 12 13if PROFILING_PERF 14 15config PROFILING_PERF_BUFFER_SIZE 16 int "Perf buffer size" 17 default 2048 18 help 19 Size of buffer used by perf to save stack trace samples. 20 21endif 22 23rsource "backends/Kconfig" 24