From 3d0a31f7b49f684f21ddd0d01ad7e1b56bf355a5 Mon Sep 17 00:00:00 2001 From: Sam Leffler Date: Fri, 26 Aug 2022 11:16:28 -0700 Subject: [PATCH] MailboxDriver: fix debug build breakage Need to disable camkes support in kata-os-common to avoid dragging in refs to SELF_CNODE_* symbols. Change-Id: I58fc07e79a7cf438342433ef8a8f99a49561392b GitOrigin-RevId: 6bc8bdd0332197c5191617c7c67d4a425d4a9844 --- apps/system/components/MailboxDriver/mailbox-driver/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/system/components/MailboxDriver/mailbox-driver/Cargo.toml b/apps/system/components/MailboxDriver/mailbox-driver/Cargo.toml index 2ec7f69..a9f7141 100644 --- a/apps/system/components/MailboxDriver/mailbox-driver/Cargo.toml +++ b/apps/system/components/MailboxDriver/mailbox-driver/Cargo.toml @@ -21,7 +21,7 @@ edition = "2018" default = [] [dependencies] -kata-os-common = { path = "../../kata-os-common" } +kata-os-common = { path = "../../kata-os-common", default-features = false } log = { version = "0.4", features = ["release_max_level_info"] } cty = "0.2.1"