1 From 60d423945bd4f4c4b7bfc6f29da9231152d05690 Mon Sep 17 00:00:00 2001
2 From: Bruce Ashfield <bruce.ashfield@gmail.com>
3 Date: Sat, 15 May 2021 10:26:38 -0400
4 Subject: [PATCH] src/Kbuild: change missing CONFIG_TRACEPOINTS to warning
6 Taken from a previous patch to the main lttng-modules Makefile, by
9 The lttng-modules are being pulled by the tools-profile image feature,
10 however, not every kernel has the CONFIG_TRACEPOINTS feature enabled.
12 This change makes the build do not fail when CONFIG_TRACEPOINTS is not
13 available, allowing it to be kept being pulled by default.
15 Upstream-Status: Inappropriate [embedded specific]
17 Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
19 src/Kbuild | 7 ++++++-
20 1 file changed, 6 insertions(+), 1 deletion(-)
22 diff --git a/src/Kbuild b/src/Kbuild
23 index 7137874..04eb5c9 100644
28 ifdef CONFIG_LOCALVERSION # Check if dot-config is included.
29 ifeq ($(CONFIG_TRACEPOINTS),)
30 - $(error The option CONFIG_TRACEPOINTS needs to be enabled in your kernel configuration)
31 + $(warning The option CONFIG_TRACEPOINTS needs to be enabled in your kernel configuration)
33 endif # CONFIG_TRACEPOINTS
34 endif # ifdef CONFIG_LOCALVERSION
36 +ifneq ($(DISABLE_MODULE),y)
38 TOP_LTTNG_MODULES_DIR := $(shell dirname $(lastword $(MAKEFILE_LIST)))/..
40 lttng_check_linux_version = $(shell pwd)/include/linux/version.h
41 @@ -150,3 +153,5 @@ lttng-statedump-objs := lttng-statedump-impl.o
42 obj-$(CONFIG_LTTNG) += probes/
43 obj-$(CONFIG_LTTNG) += lib/
44 obj-$(CONFIG_LTTNG) += tests/
46 +endif # DISABLE_MODULE