From 2251f84c1b45f1589cc093da70932911514d92e5 Mon Sep 17 00:00:00 2001 From: Sam Leffler Date: Mon, 16 May 2022 09:03:50 -0700 Subject: [PATCH] TimerService: mark component as part of KataOS This fixes debug builds which otherwise have an undefined reference to SELF_CNODE. Change-Id: I55384cfff19b99cf49b147d396b274c74bdf5db5 GitOrigin-RevId: d055b070ee5a67f1648566d1c1c511446d02b3cc --- apps/system/components/TimerService/TimerService.camkes | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/system/components/TimerService/TimerService.camkes b/apps/system/components/TimerService/TimerService.camkes index 445793b..d768f2f 100644 --- a/apps/system/components/TimerService/TimerService.camkes +++ b/apps/system/components/TimerService/TimerService.camkes @@ -7,4 +7,7 @@ component TimerService { consumes Interrupt timer_interrupt; uses LoggerInterface logger; -} \ No newline at end of file + + // Enable KataOS CAmkES support. + attribute int kataos = true; +}