From 2d6de453c578f62de6190536730ecbd81c266c0f Mon Sep 17 00:00:00 2001 From: 4lDO2 <4lDO2@protonmail.com> Date: Sun, 12 Apr 2026 16:41:36 +0200 Subject: [PATCH] Add profiling-kernel recipe. --- recipes/core/profiling-kernel/recipe.toml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 recipes/core/profiling-kernel/recipe.toml diff --git a/recipes/core/profiling-kernel/recipe.toml b/recipes/core/profiling-kernel/recipe.toml new file mode 100644 index 000000000..77f200e20 --- /dev/null +++ b/recipes/core/profiling-kernel/recipe.toml @@ -0,0 +1,10 @@ +[source] +same_as = "../kernel" + +[build] +template = "custom" +script = """ +make -f ${COOKBOOK_SOURCE}/Makefile KERNEL_CARGO_FEATURES=profiling +mkdir -pv "${COOKBOOK_STAGE}/usr/lib/boot" +cp -v kernel "${COOKBOOK_STAGE}/usr/lib/boot" +"""