From cd8fbc846d6cfa096dbab7c16d9b49bcca99ddc1 Mon Sep 17 00:00:00 2001 From: Akshit Gaur Date: Mon, 23 Mar 2026 20:46:14 +0530 Subject: [PATCH 1/2] Nice --- recipes/core/uutils/recipe.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/recipes/core/uutils/recipe.toml b/recipes/core/uutils/recipe.toml index fdfebf99e..929628813 100644 --- a/recipes/core/uutils/recipe.toml +++ b/recipes/core/uutils/recipe.toml @@ -13,7 +13,7 @@ template = "custom" script = """ DYNAMIC_INIT # TODO: upstream changes, consider using feat_require_unix_core if relibc is ready? -CARGO_PROFILE_RELEASE_LTO=thin cookbook_cargo --no-default-features --features feat_os_unix_redox,kill --bin coreutils +CARGO_PROFILE_RELEASE_LTO=thin cookbook_cargo --no-default-features --features feat_os_unix_redox,kill,nice --bin coreutils BINS=( '[' @@ -59,6 +59,7 @@ BINS=( more mv nl + nice nproc numfmt od From a589ea61cc6ef53c94cff44e79495b55643989fb Mon Sep 17 00:00:00 2001 From: Akshit Gaur Date: Mon, 23 Mar 2026 20:46:14 +0530 Subject: [PATCH 2/2] Renice --- recipes/wip/renice/recipe.toml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 recipes/wip/renice/recipe.toml diff --git a/recipes/wip/renice/recipe.toml b/recipes/wip/renice/recipe.toml new file mode 100644 index 000000000..af96c6be4 --- /dev/null +++ b/recipes/wip/renice/recipe.toml @@ -0,0 +1,5 @@ +[source] +git = "https://gitlab.redox-os.org/akshitgaur2005/renice" + +[build] +template = "cargo"