From f3558bbe8902ad369b37eea6ca9e5b592a02fee2 Mon Sep 17 00:00:00 2001 From: Simon Hausmann Date: Fri, 6 Oct 2023 11:42:48 +0200 Subject: [PATCH] Minor cleanup - Remove bbmask for meta-rust (maybe this belongs into another config file if needed, but I didn't need it when building with meta-rust or without) - Remove rust-layer dependency - it's optional, so don't require it --- conf/layer.conf | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/conf/layer.conf b/conf/layer.conf index 03c0d0d..64e7b5b 100644 --- a/conf/layer.conf +++ b/conf/layer.conf @@ -9,11 +9,7 @@ BBFILE_COLLECTIONS += "meta-slint" BBFILE_PATTERN_meta-slint = "^${LAYERDIR}/" BBFILE_PRIORITY_meta-slint = "6" -LAYERDEPENDS_meta-slint = "core rust-layer clang-layer" +LAYERDEPENDS_meta-slint = "core clang-layer" LAYERSERIES_COMPAT_meta-slint = "kirkstone langdale mickledore" RUST_PANIC_STRATEGY = "abort" - -# Don't use the poky provided one but meta-rust -BBMASK += "poky/meta/recipes-devtools/rust" -BBMASK += "poky/meta/recipes-devtools/cargo"